Lines Matching refs:Node
105 Node::~Node() in ~Node()
115 for(Node* pNode = m_Children.PopFront(); in ~Node()
123 Node* Node::CreateChildNode(const char* name) in CreateChildNode()
125 Node* pChild = new Node(); in CreateChildNode()
136 void Node::SetAttribute(const char* name, const char* value) in SetAttribute()
146 void Node::PrintIndent(int depth) in PrintIndent()
155 void Node::PrintBeginTag() in PrintBeginTag()
174 void Node::PrintEndTag() in PrintEndTag()
179 void Node::Print(int depth) in Print()
205 for(Node* pNode = m_Children.GetFront(); in Print()
223 int Node::GetSpecificChildrenNum(const char* name) in GetSpecificChildrenNum()
228 for(Node* pNode = m_Children.GetFront(); in GetSpecificChildrenNum()
252 for(Node* pNode = m_Results.PopFront(); in ~XmlOutput()
276 for(Node* pResult = m_Results.GetFront(); in OnFinished()
297 m_pCurrentSuiteResult = new Node("testsuite"); in OnSuiteStart()
354 Node* pErrorNode = m_pCurrentCaseResult->CreateChildNode("error"); in OnAssert()