Home
last modified time | relevance | path

Searched refs:getNodeType (Results 1 – 25 of 35) sorted by relevance

12

/third_party/vk-gl-cts/framework/common/
DtcuTestHierarchyUtil.cpp65 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in writeXmlCaselist()
82 while (iter.getNode()->getNodeType() != NODETYPE_PACKAGE) in writeXmlCaselist()
85 const TestNodeType nodeType = node->getNodeType(); in writeXmlCaselist()
140 node->getNodeType() == NODETYPE_PACKAGE); in writeXmlCaselistsToFiles()
175 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in writeXmlCaselistsToFiles()
198 node->getNodeType() == NODETYPE_PACKAGE); in writeTxtCaselistsToFiles()
215 while (iter.getNode()->getNodeType() != NODETYPE_PACKAGE) in writeTxtCaselistsToFiles()
218 …out << (isTestNodeTypeExecutable(iter.getNode()->getNodeType()) ? "TEST" : "GROUP") << ": " << ite… in writeTxtCaselistsToFiles()
223 iter.getNode()->getNodeType() == NODETYPE_PACKAGE); in writeTxtCaselistsToFiles()
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()
DtcuApp.cpp60 while (iter.getNode()->getNodeType() != NODETYPE_PACKAGE) in writeCaselistsToStdout()
63 …std::cout << (isTestNodeTypeExecutable(iter.getNode()->getNodeType()) ? "TEST" : "GROUP") << ": " … 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()
DtcuTestCase.cpp95 …ASSERT(getTestNodeTypeClass(m_children.front()->getNodeType()) == getTestNodeTypeClass(node->getNo… in addChild()
DtcuTestSessionExecutor.cpp80 const TestNodeType nodeType = curNode->getNodeType(); in iterate()
136 isTestNodeTypeExecutable(m_iterator.getNode()->getNodeType())); in iterate()
195 const qpTestCaseType caseType = nodeTypeToTestCaseType(testCase->getNodeType()); in enterTestCase()
DtcuTestCase.hpp118 TestNodeType getNodeType (void) const { return m_nodeType; } in getNodeType() function in tcu::TestNode
/third_party/vk-gl-cts/executor/
DxeTestCase.cpp116 if (curNode->m_parent->getNodeType() != TESTNODETYPE_ROOT) in getFullPath()
136 if (curNode->m_parent->getNodeType() != TESTNODETYPE_ROOT) in getFullPath()
163 else if (getNodeType() == TESTNODETYPE_GROUP) in find()
223 else if (matchingNode->getNodeType() == TESTNODETYPE_GROUP) in findChildNode()
263 if (node->getNodeType() == TESTNODETYPE_GROUP) in addChildGroupsToMap()
335 if (child->getNodeType() == TESTNODETYPE_GROUP) in addChildren()
347 if (child->getNodeType() == TESTNODETYPE_GROUP) in removeChildren()
376 if (node->getNodeType() == TESTNODETYPE_TEST_CASE) in add()
380 XE_CHECK(node->getNodeType() == TESTNODETYPE_GROUP || in add()
381 node->getNodeType() == TESTNODETYPE_ROOT); in add()
[all …]
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()
DxeTestCaseListParser.cpp109 …XE_CHECK_MSG(parent->getNodeType() == TESTNODETYPE_GROUP, "Only TestGroups are allowed to have chi… in parse()
DxeTestCase.hpp65 TestNodeType getNodeType (void) const { return m_nodeType; } in getNodeType() function in xe::TestNode
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dno-unnecessary-condition.ts170 function getNodeType(node: TSESTree.Expression): ts.Type { function
176 const nodeType = getNodeType(node);
180 const nodeType = getNodeType(node);
234 const type = getNodeType(node);
270 const type = getNodeType(node);
316 const leftType = getNodeType(node.left);
317 const rightType = getNodeType(node.right);
392 isBooleanLiteralType(getNodeType(node.test), true)
447 getNodeType(callback),
532 const prevType = getNodeType(node.object);
[all …]
Drestrict-plus-operands.ts94 function getNodeType(node: TSESTree.Expression): BaseLiteral { function
104 const leftType = getNodeType(node.left);
105 const rightType = getNodeType(node.right);
Dswitch-exhaustiveness-check.ts55 function getNodeType(node: TSESTree.Node): ts.Type { function
133 const discriminantType = getNodeType(node.discriminant);
145 caseTypes.add(getNodeType(switchCase.test));
Dmember-ordering.ts172 function getNodeType(node: Member): string | null { function
260 const type = getNodeType(node);
/third_party/flutter/skia/third_party/externals/angle2/src/tests/deqp_support/
DtcuRandomOrderExecutor.cpp61 const bool isPkg = curEntry.node->getNodeType() == NODETYPE_PACKAGE; in pruneStack()
69 if (curEntry.node->getNodeType() == NODETYPE_GROUP) in pruneStack()
71 else if (curEntry.node->getNodeType() == NODETYPE_PACKAGE) in pruneStack()
103 DE_ASSERT(!m_nodeStack.empty() && m_nodeStack.front().node->getNodeType() == NODETYPE_ROOT); in seekToCase()
132 if (curNode->getNodeType() == NODETYPE_PACKAGE) in seekToCase()
140 else if (curNode->getNodeType() == NODETYPE_GROUP) in seekToCase()
149 if (isTestNodeTypeExecutable(m_nodeStack.back().node->getNodeType())) in seekToCase()
177 const qpTestCaseType caseType = nodeTypeToTestCaseType(testCase->getNodeType()); in execute()
/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/
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/
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/
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()
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/
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/
DRBTMXImporter.java80 …while (node != null && (node.getNodeType() != Node.ELEMENT_NODE || !(node.getNodeName().equalsIgno… in importDoc()
85 …while (node != null && (node.getNodeType() != Node.ELEMENT_NODE || !(node.getNodeName().equalsIgno… in importDoc()
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/
Dtestmain.cpp107 switch (node->getNodeType()) in GetCasePath()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
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/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/charsetdet/
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()

12