Lines Matching refs:curNode
109 const TestNode* curNode = this; in getFullPath() local
113 nameLen += (int)curNode->m_name.length(); in getFullPath()
115 DE_ASSERT(curNode->m_parent); in getFullPath()
116 if (curNode->m_parent->getNodeType() != TESTNODETYPE_ROOT) in getFullPath()
119 curNode = curNode->m_parent; in getFullPath()
127 curNode = this; in getFullPath()
132 …std::copy(curNode->m_name.begin(), curNode->m_name.end(), dst.begin()+(pos-curNode->m_name.length(… in getFullPath()
133 pos -= (int)curNode->m_name.length(); in getFullPath()
135 DE_ASSERT(curNode->m_parent); in getFullPath()
136 if (curNode->m_parent->getNodeType() != TESTNODETYPE_ROOT) in getFullPath()
139 curNode = curNode->m_parent; in getFullPath()
453 const TestNode* curNode = **this; in operator ++() local
454 TestNodeType curNodeType = curNode->getNodeType(); in operator ++()
457 static_cast<const TestGroup*>(curNode)->getNumChildren() > 0) in operator ++()
459 m_iterStack.push_back(GroupState(static_cast<const TestGroup*>(curNode))); in operator ++()