Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/UI/Common/
DEnumDirItems.cpp311 const NWildcard::CCensorNode &curNode,
318 const NWildcard::CCensorNode &curNode, in EnumerateDirItems_Spec() argument
329 curNode, parent, parent, phyPrefix + name2, in EnumerateDirItems_Spec()
342 const NWildcard::CCensorNode &curNode, in EnumerateAltStreams() argument
363 if (curNode.CheckPathToRoot(false, addArchivePrefixNew, true)) in EnumerateAltStreams()
398 const NWildcard::CCensorNode &curNode, in EnumerateForItem() argument
410 if (curNode.CheckPathToRoot(false, addArchivePrefixNewTemp, !fi.IsDir())) in EnumerateForItem()
415 if (curNode.CheckPathToRoot(true, addArchivePrefixNew, !fi.IsDir())) in EnumerateForItem()
434 RINOK(EnumerateAltStreams(fi, curNode, phyParent, logParent, in EnumerateForItem()
454 int index = curNode.FindSubNode(name); in EnumerateForItem()
[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/python/cpython2/Lib/xml/dom/
Dexpatbuilder.py170 self.curNode = self.document
270 _append_child(self.curNode, node)
272 self.curNode.removeChild(node)
275 childNodes = self.curNode.childNodes
294 _append_child(self.curNode, node)
297 childNodes = self.curNode.childNodes
307 _append_child(self.curNode, node)
335 _append_child(self.curNode, node)
337 self.curNode.removeChild(node)
358 _append_child(self.curNode, node)
[all …]
Dpulldom.py299 curNode = self.elementStack[-1]
301 parentNode.appendChild(curNode)
305 curNode = self.elementStack[-1]
307 parentNode.appendChild(curNode)
/external/pdfium/xfa/fxfa/parser/
Dcxfa_resolveprocessor.cpp158 CXFA_Node* curNode = ToNode(rnd.m_CurNode); in ResolveNumberSign() local
159 if (ResolveForAttributeRs(curNode, rnd, wsName.AsStringC())) { in ResolveNumberSign()
172 rndFind.m_CurNode = curNode; in ResolveNumberSign()
175 if (wsCondition.GetLength() == 0 && rndFind.m_Nodes.Find(curNode) >= 0) { in ResolveNumberSign()
176 rnd.m_Nodes.Add(curNode); in ResolveNumberSign()
185 CXFA_Object* curNode, in ResolveForAttributeRs() argument
189 XFA_GetScriptAttributeByName(curNode->GetElementType(), strAttr); in ResolveForAttributeRs()
192 rnd.m_Nodes.Add(curNode); in ResolveForAttributeRs()
205 CXFA_Node* curNode = ToNode(rnd.m_CurNode); in ResolveNormal() local
222 CXFA_Node* pChild = curNode->GetNodeItem(XFA_NODEITEM_FirstChild); in ResolveNormal()
[all …]
Dcxfa_resolveprocessor.h54 int32_t ResolveForAttributeRs(CXFA_Object* curNode,
/external/deqp/scripts/
Dmustpass.py235 curNode = root
239 nextNode = findChild(curNode, component)
242 curNode.children.append(nextNode)
243 curNode = nextNode
245 if not findChild(curNode, components[-1]):
246 curNode.children.append(TestCase(components[-1]))
257 def recursiveBuild (curNode, prefix): argument
258 curPath = prefix + curNode.name
259 if isinstance(curNode, TestCase):
260 caseMap[curPath] = curNode
[all …]
/external/icu/icu4c/source/tools/ctestfw/
Dctest.c225 TestNode *nextNode, *curNode; in addTestNode() local
232 curNode = root; in addTestNode()
237 nextNode = curNode->child; in addTestNode()
254 curNode->child = createTestNode(name, nameLen); in addTestNode()
256 curNode = curNode->child; in addTestNode()
261 return curNode; in addTestNode()
267 curNode = nextNode; in addTestNode()
274 curNode->sibling = nextNode; in addTestNode()
288 curNode = nextNode; in addTestNode()
580 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.cpp317 const CaseTreeNode* curNode = root; in findNode() local
323 curNode = curNode->getChild(std::string(curPath, curPath+curLen)); in findNode()
325 if (!curNode) in findNode()
340 return curNode; in findNode()
/external/deqp/external/vulkancts/framework/vulkan/
DvkBinaryRegistry.cpp188 const BinaryIndexNode& curNode = (*index)[nodeNdx]; in findBinaryIndex() local
190 if (curNode.word == words[wordNdx]) in findBinaryIndex()
194 TCU_CHECK_INTERNAL((size_t)curNode.index < index->size()); in findBinaryIndex()
196 nodeNdx = curNode.index; in findBinaryIndex()
200 return &curNode.index; in findBinaryIndex()
204 else if (curNode.word != 0) in findBinaryIndex()