Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuRandomOrderExecutor.cpp46 m_nodeStack.push_back(NodeStackEntry(&root)); in RandomOrderExecutor()
47 root.getChildren(m_nodeStack[0].children); in RandomOrderExecutor()
63 DE_ASSERT(de::inRange(newStackSize, size_t(1), m_nodeStack.size())); in pruneStack()
65 while (m_nodeStack.size() > newStackSize) in pruneStack()
67 NodeStackEntry &curEntry = m_nodeStack.back(); in pruneStack()
70 DE_ASSERT((m_nodeStack.size() == 2) == isPkg); in pruneStack()
90 m_nodeStack.pop_back(); in pruneStack()
110 DE_ASSERT(!m_nodeStack.empty() && m_nodeStack.front().node->getNodeType() == NODETYPE_ROOT); in seekToCase()
116 if (stackPos >= m_nodeStack.size()) in seekToCase()
118 else if (components[compNdx] != m_nodeStack[stackPos].node->getName()) in seekToCase()
[all …]
DtcuRandomOrderExecutor.h61 std::vector<NodeStackEntry> m_nodeStack; variable
/third_party/flutter/skia/third_party/externals/angle2/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
/third_party/vk-gl-cts/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