Home
last modified time | relevance | path

Searched refs:getNodeType (Results 1 - 25 of 29) sorted by relevance

12

/third_party/vk-gl-cts/framework/common/
H A DtcuTestHierarchyUtil.cpp65 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in writeXmlCaselist()
81 while (iter.getNode()->getNodeType() != NODETYPE_PACKAGE) in writeXmlCaselist()
84 const TestNodeType nodeType = node->getNodeType(); in writeXmlCaselist()
137 node->getNodeType() == NODETYPE_PACKAGE); in writeXmlCaselistsToFiles()
172 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in writeXmlCaselistsToFiles()
195 node->getNodeType() == NODETYPE_PACKAGE); in writeTxtCaselistsToFiles()
212 while (iter.getNode()->getNodeType() != NODETYPE_PACKAGE) in writeTxtCaselistsToFiles()
215 out << (isTestNodeTypeExecutable(iter.getNode()->getNodeType()) ? "TEST" : "GROUP") << ": " << iter.getNodePath() << "\n"; in writeTxtCaselistsToFiles()
220 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in writeTxtCaselistsToFiles()
H A DtcuTestHierarchyIterator.cpp111 const TestNodeType nodeType = node->getNodeType(); in ~TestHierarchyIterator()
170 const bool isLeaf = isTestNodeTypeExecutable(node->getNodeType()); in next()
203 switch (node->getNodeType()) in next()
226 if ( isTestNodeTypeExecutable(childNode->getNodeType()) ) in next()
237 if (node->getNodeType() != NODETYPE_ROOT) in next()
249 switch (node->getNodeType()) in next()
H A DtcuApp.cpp60 while (iter.getNode()->getNodeType() != NODETYPE_PACKAGE) in writeCaselistsToStdout()
63 std::cout << (isTestNodeTypeExecutable(iter.getNode()->getNodeType()) ? "TEST" : "GROUP") << ": " << iter.getNodePath() << "\n"; in writeCaselistsToStdout()
68 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in writeCaselistsToStdout()
92 while (iter.getNode()->getNodeType() != NODETYPE_PACKAGE) in verifyAmberCapabilityCoherency()
95 isTestNodeTypeExecutable(iter.getNode()->getNodeType())) in verifyAmberCapabilityCoherency()
110 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in verifyAmberCapabilityCoherency()
H A DtcuTestSessionExecutor.cpp80 const TestNodeType nodeType = curNode->getNodeType(); in iterate()
136 isTestNodeTypeExecutable(m_iterator.getNode()->getNodeType())); in iterate()
207 const qpTestCaseType caseType = nodeTypeToTestCaseType(testCase->getNodeType()); in enterTestCase()
H A DtcuTestCase.cpp103 DE_ASSERT(getTestNodeTypeClass(m_children.front()->getNodeType()) == getTestNodeTypeClass(node->getNodeType())); in addChild()
H A DtcuTestCase.hpp121 TestNodeType getNodeType (void) const { return m_nodeType; } in getNodeType() function in tcu::TestNode
/third_party/vk-gl-cts/executor/
H A DxeTestCase.cpp115 if (curNode->m_parent->getNodeType() != TESTNODETYPE_ROOT) in getFullPath()
135 if (curNode->m_parent->getNodeType() != TESTNODETYPE_ROOT) in getFullPath()
162 else if (getNodeType() == TESTNODETYPE_GROUP) in find()
222 else if (matchingNode->getNodeType() == TESTNODETYPE_GROUP) in findChildNode()
262 if (node->getNodeType() == TESTNODETYPE_GROUP) in addChildGroupsToMap()
334 if (child->getNodeType() == TESTNODETYPE_GROUP) in addChildren()
346 if (child->getNodeType() == TESTNODETYPE_GROUP) in removeChildren()
375 if (node->getNodeType() == TESTNODETYPE_TEST_CASE) in add()
379 XE_CHECK(node->getNodeType() == TESTNODETYPE_GROUP || in add()
380 node->getNodeType() in add()
[all...]
H A DxeBatchExecutor.cpp69 if (node->getNodeType() == TESTNODETYPE_TEST_CASE && testSet.hasNode(node)) in computeExecuteSet()
89 if (node->getNodeType() == TESTNODETYPE_TEST_CASE && executeSet.hasNode(node)) in computeBatchRequest()
109 if (node->getNodeType() == TESTNODETYPE_TEST_CASE && oldSet.hasNode(node)) in removeExecuted()
310 TestNodeType nodeType = node->getNodeType(); in writeCaseListNode()
344 XE_CHECK(m_root->getNodeType() == TESTNODETYPE_ROOT); in launchTestSet()
H A DxeTestCase.hpp65 TestNodeType getNodeType (void) const { return m_nodeType; } in getNodeType() function in xe::TestNode
H A DxeTestCaseListParser.cpp109 XE_CHECK_MSG(parent->getNodeType() == TESTNODETYPE_GROUP, "Only TestGroups are allowed to have child nodes"); in parse()
/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/
H A DtcuRandomOrderExecutor.cpp68 const bool isPkg = curEntry.node->getNodeType() == NODETYPE_PACKAGE; in pruneStack()
76 if (curEntry.node->getNodeType() == NODETYPE_GROUP) in pruneStack()
78 else if (curEntry.node->getNodeType() == NODETYPE_PACKAGE) in pruneStack()
110 DE_ASSERT(!m_nodeStack.empty() && m_nodeStack.front().node->getNodeType() == NODETYPE_ROOT); in seekToCase()
139 if (curNode->getNodeType() == NODETYPE_PACKAGE) in seekToCase()
147 else if (curNode->getNodeType() == NODETYPE_GROUP) in seekToCase()
156 if (isTestNodeTypeExecutable(m_nodeStack.back().node->getNodeType())) in seekToCase()
184 const qpTestCaseType caseType = nodeTypeToTestCaseType(testCase->getNodeType()); in execute()
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/
H A DJacocoReportCheck.java156 if (node.getNodeType() != Node.ELEMENT_NODE) { in parseReport()
163 if (pkgNode.getNodeType() != Node.ELEMENT_NODE) { in parseReport()
175 if (clsNode.getNodeType() != Node.ELEMENT_NODE || !"class".equals(clsNode.getNodeName())) { in parseReport()
189 if (mtdNode.getNodeType() != Node.ELEMENT_NODE || !"method".equals(mtdNode.getNodeName())) { in parseReport()
222 if (cntNode.getNodeType() != Node.ELEMENT_NODE) { in parseReport()
/third_party/vk-gl-cts/executor/tools/
H A DxeCommandLineExecutor.cpp310 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; in addMatchingCases()
322 DE_ASSERT(child->getNodeType() == xe::TESTNODETYPE_TEST_CASE); in addMatchingCases()
334 const bool isGroup = child->getNodeType() == xe::TESTNODETYPE_GROUP; in removeMatchingCases()
346 DE_ASSERT(child->getNodeType() == xe::TESTNODETYPE_TEST_CASE); in removeMatchingCases()
417 if (node->getNodeType() == xe::TESTNODETYPE_TEST_CASE && testSet.hasNode(node)) in printBatchResultSummary()
H A DxeBatchResultToXml.cpp287 bool isGroup = testNode->getNodeType() == xe::TESTNODETYPE_GROUP; in writeTestCaseListNode()
305 DE_ASSERT(testNode->getNodeType() == xe::TESTNODETYPE_TEST_CASE); in writeTestCaseListNode()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/
H A DXLIFF2ICUConverter.java830 short type = transUnit.getNodeType(); in parseResourceString()
864 short type = transUnit.getNodeType(); in parseResourceInt()
898 short type = transUnit.getNodeType(); in parseResourceAlias()
930 short type = transUnit.getNodeType(); in parseResourceBinary()
1012 short type = child.getNodeType(); in parseBinUnit()
1045 short type = child.getNodeType(); in parseArray()
1102 short type = child.getNodeType(); in parseIntVector()
1148 short type = child.getNodeType(); in parseTable()
/third_party/icu/tools/unicodetools/com/ibm/rbm/
H A DRBTMXImporter.java80 while (node != null && (node.getNodeType() != Node.ELEMENT_NODE || !(node.getNodeName().equalsIgnoreCase("header")))) { in importDoc()
85 while (node != null && (node.getNodeType() != Node.ELEMENT_NODE || !(node.getNodeName().equalsIgnoreCase("body")))) { in importDoc()
H A DRBxliffImporter.java97 && !(header.getNodeType() == Node.ELEMENT_NODE in importDoc()
174 if (body_elem.getNodeType() == Node.ELEMENT_NODE) { in importDoc()
/third_party/vk-gl-cts/framework/platform/ohos/
H A Dtestmain.cpp113 switch (node->getNodeType()) in GetCasePath()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DIntermRebuild.h318 GetNodeType getNodeType; member in sh::TIntermRebuild
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
H A DIntermRebuild.h318 GetNodeType getNodeType; member in sh::TIntermRebuild
H A DIntermRebuild.cpp324 const NodeType currNodeType = getNodeType(*currNode); in traverseAny()
345 const NodeType originalNodeType = getNodeType(originalNode); in traversePre()
/third_party/icu/tools/release/java/src/main/java/com/ibm/icu/dev/tools/docs/
H A DStableAPI.java454 if (node.getAttributes() == null && node.getNodeType() == 3) { in getAttr()
467 + node.getNodeType() + ":" + node.getNodeValue() + "@" + node.getTextContent()); in getAttr()
996 if (n.getNodeType() == Node.TEXT_NODE) in dumpNode()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/charsetdet/
H A DTestCharsetDetector.java377 if (node.getNodeType() == Node.TEXT_NODE) { in TestDetection()
379 } else if (node.getNodeType() == Node.ELEMENT_NODE && in TestDetection()
383 if (valueNode.getNodeType() != Node.TEXT_NODE) { in TestDetection()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
H A DTestCharsetDetector.java374 if (node.getNodeType() == Node.TEXT_NODE) { in TestDetection()
376 } else if (node.getNodeType() == Node.ELEMENT_NODE && in TestDetection()
380 if (valueNode.getNodeType() != Node.TEXT_NODE) { in TestDetection()
/third_party/vk-gl-cts/modules/gles2/accuracy/
H A Des2aTextureFilteringTests.cpp304 DE_ASSERT(getNodeType() == tcu::NODETYPE_ACCURACY); in iterate()
616 DE_ASSERT(getNodeType() == tcu::NODETYPE_ACCURACY); in iterate()

Completed in 25 milliseconds

12