Lines Matching refs:Node
34 std::unique_ptr<xml::Node> root;
35 std::stack<xml::Node*> nodeStack;
57 static void addToStack(Stack* stack, XML_Parser parser, std::unique_ptr<Node> node) { in addToStack()
61 Node* thisNode = node.get(); in addToStack()
143 Node* currentParent = stack->nodeStack.top(); in characterDataHandler()
145 Node* lastChild = currentParent->children.back().get(); in characterDataHandler()
235 std::unique_ptr<Node> root; in inflate()
236 std::stack<Node*> nodeStack; in inflate()
246 std::unique_ptr<Node> newNode; in inflate()
308 Node* thisNode = newNode.get(); in inflate()
329 Element* findRootElement(Node* node) { in findRootElement()
345 void Node::addChild(std::unique_ptr<Node> child) { in addChild()
367 Node* child = childNode.get(); in findChildWithAttribute()
394 Node* child = childNode.get(); in getChildElements()