Home
last modified time | relevance | path

Searched refs:m_nodeStack (Results 1 – 7 of 7) sorted by relevance

/external/angle/src/tests/deqp_support/
DtcuRandomOrderExecutor.cpp44 m_nodeStack.push_back(NodeStackEntry(&root)); in RandomOrderExecutor()
45 root.getChildren(m_nodeStack[0].children); in RandomOrderExecutor()
56 DE_ASSERT(de::inRange(newStackSize, size_t(1), m_nodeStack.size())); in pruneStack()
58 while (m_nodeStack.size() > newStackSize) in pruneStack()
60 NodeStackEntry &curEntry = m_nodeStack.back(); in pruneStack()
63 DE_ASSERT((m_nodeStack.size() == 2) == isPkg); in pruneStack()
83 m_nodeStack.pop_back(); in pruneStack()
103 DE_ASSERT(!m_nodeStack.empty() && m_nodeStack.front().node->getNodeType() == NODETYPE_ROOT); in seekToCase()
109 if (stackPos >= m_nodeStack.size()) in seekToCase()
111 else if (components[compNdx] != m_nodeStack[stackPos].node->getName()) in seekToCase()
[all …]
DtcuRandomOrderExecutor.h59 std::vector<NodeStackEntry> m_nodeStack; variable
/external/deqp/executor/
DxeTestCaseListParser.cpp69 m_nodeStack.clear(); in clear()
101 XE_CHECK_MSG(!m_nodeStack.empty(), "<TestCase> outside of <TestCaseList>"); in parse()
103 TestNode* parent = m_nodeStack.back(); in parse()
115 m_nodeStack.push_back(node); in parse()
119 XE_CHECK_MSG(m_nodeStack.size() >= 2, "Unexpected </TestCase>"); in parse()
120 m_nodeStack.pop_back(); in parse()
127 XE_CHECK_MSG(m_nodeStack.empty(), "Unexpected <TestCaseList>"); in parse()
128 m_nodeStack.push_back(m_root); in parse()
132 XE_CHECK_MSG(m_nodeStack.size() == 1, "Unexpected </TestCaseList>"); in parse()
133 m_nodeStack.pop_back(); in parse()
DxeTestCaseListParser.hpp53 std::vector<TestNode*> m_nodeStack; member in xe::TestCaseListParser
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DNamespaceMappings.java95 private Stack m_nodeStack = new Stack(); field in NamespaceMappings
253 m_nodeStack.push(map); in pushNamespace()
269 if (m_nodeStack.isEmpty()) in popNamespaces()
271 MappingRecord map = (MappingRecord) (m_nodeStack.peek()); in popNamespaces()
279 MappingRecord nm1 = (MappingRecord) m_nodeStack.pop(); in popNamespaces()
333 clone.m_nodeStack = (NamespaceMappings.Stack) m_nodeStack.clone(); in clone()
346 this.m_nodeStack.clear(); in reset()
/external/antlr/runtime/Cpp/include/
Dantlr3commontreenodestream.inl55 m_nodeStack = ctn.m_nodeStack;
92 m_nodeStack.clear();
331 m_nodeStack.push(m_p); // Save current index
340 retVal = m_nodeStack.top();
341 m_nodeStack.pop();
361 m_nodeStack.clear();
Dantlr3commontreenodestream.hpp115 NodeStackType m_nodeStack; member in CommonTreeNodeStream