Searched refs:node_stack (Results 1 – 4 of 4) sorted by relevance
46 std::stack<xmlNodePtr> node_stack; in DepthFirstSearch() local47 node_stack.push(parent); in DepthFirstSearch()48 while (!node_stack.empty()) { in DepthFirstSearch()49 const xmlNodePtr current_node = node_stack.top(); in DepthFirstSearch()50 node_stack.pop(); in DepthFirstSearch()66 node_stack.push(stack_to_reverse.top()); in DepthFirstSearch()
52 node_stack = [parsed_manifest]59 node_stack.insert(0, {})78 node_stack = node_stack[:indent_depth + 1]79 node = node_stack[-1]91 node_stack += [node[manifest_key][-1]]
272 node_stack = list(node)274 node_stack = [node]281 while node_stack and other_stack:282 assert len(node_stack) == len(other_stack)283 n = node_stack.pop()310 node_stack.extend(n_child)314 node_stack.append(n_child)
855 node_stack = self._debug_dump.node_traceback(node_name)857 node_stack):