Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/UI/Common/
DEnumDirItems.cpp144 static HRESULT EnumerateDirItems(const NWildcard::CCensorNode &curNode,
153 static HRESULT EnumerateDirItems_Spec(const NWildcard::CCensorNode &curNode, in EnumerateDirItems_Spec() argument
167 HRESULT res = EnumerateDirItems(curNode, parent, parent, phyPrefix + name2, in EnumerateDirItems_Spec()
175 static HRESULT EnumerateDirItems(const NWildcard::CCensorNode &curNode, in EnumerateDirItems() argument
185 if (curNode.NeedCheckSubDirs()) in EnumerateDirItems()
195 for (i = 0; i < curNode.IncludeItems.Size(); i++) in EnumerateDirItems()
197 const NWildcard::CItem &item = curNode.IncludeItems[i]; in EnumerateDirItems()
204 if (i == curNode.IncludeItems.Size()) in EnumerateDirItems()
209 for (i = 0; i < curNode.IncludeItems.Size(); i++) in EnumerateDirItems()
211 const NWildcard::CItem &item = curNode.IncludeItems[i]; in EnumerateDirItems()
[all …]
/external/deqp/executor/
DxeTestCase.cpp109 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()
[all …]
/external/deqp/scripts/
Dbuild_android_mustpass.py213 curNode = root
217 nextNode = findChild(curNode, component)
220 curNode.children.append(nextNode)
221 curNode = nextNode
223 if not findChild(curNode, components[-1]):
224 curNode.children.append(TestCase(components[-1]))
235 def recursiveBuild (curNode, prefix): argument
236 curPath = prefix + curNode.name
237 if isinstance(curNode, TestCase):
238 caseMap[curPath] = curNode
[all …]
/external/icu/icu4c/source/tools/ctestfw/
Dctest.c223 TestNode *nextNode, *curNode; in addTestNode() local
230 curNode = root; in addTestNode()
235 nextNode = curNode->child; in addTestNode()
252 curNode->child = createTestNode(name, nameLen); in addTestNode()
254 curNode = curNode->child; in addTestNode()
259 return curNode; in addTestNode()
265 curNode = nextNode; in addTestNode()
272 curNode->sibling = nextNode; in addTestNode()
286 curNode = nextNode; in addTestNode()
578 const TestNode* curNode; in getTest() local
[all …]
/external/deqp/framework/common/
DtcuTestSessionExecutor.cpp76 TestNode* const curNode = m_iterator.getNode(); in iterate() local
77 const TestNodeType nodeType = curNode->getNodeType(); in iterate()
84 TestPackage* const testPackage = static_cast<TestPackage*>(curNode); in iterate()
97 TestCase* const testCase = static_cast<TestCase*>(curNode); in iterate()
DtcuCommandLine.cpp306 const CaseTreeNode* curNode = root; in findNode() local
312 curNode = curNode->getChild(std::string(curPath, curPath+curLen)); in findNode()
314 if (!curNode) in findNode()
329 return curNode; in findNode()