Lines Matching defs:stack
275 * @return true if the stack is empty.
279 std::vector<BejStackProperty>* stack =
281 return stack->empty();
288 * @return a const reference to the stack top.
292 std::vector<BejStackProperty>* stack =
294 if (stack->empty())
298 return &(stack->back());
302 * @brief Callback for stackPop. Remove the top element from the stack.
308 std::vector<BejStackProperty>* stack =
310 if (stack->empty())
314 stack->pop_back();
318 * @brief Callback for stackPush. Push a new element to the top of the stack.
327 std::vector<BejStackProperty>* stack =
329 stack->push_back(*property);
340 // using a stack to implement it non-recursively. Going into a set or an
343 // dictionary offset start once all the children are processed. This stack
345 stack.clear();
379 (void*)(&stack));