/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
D | linux_hrtimer.c | 68 struct hrtimer_list_node *curNode = NULL; in HrtimerNodeAdd() local 78 curNode = g_hrtimerList; in HrtimerNodeAdd() 79 while (curNode != NULL) { in HrtimerNodeAdd() 80 if (curNode->set_time_reload > htrimer->set_time_reload) { in HrtimerNodeAdd() 83 if (curNode->set_time_reload == htrimer->set_time_reload) { in HrtimerNodeAdd() 84 HandlerNodeAdd(curNode, handlerNode); in HrtimerNodeAdd() 88 htrimer->set_time_reload -= curNode->set_time_reload; in HrtimerNodeAdd() 89 prevNode = curNode; in HrtimerNodeAdd() 90 curNode = curNode->pstNext; in HrtimerNodeAdd() 92 if (curNode == g_hrtimerList) { in HrtimerNodeAdd() [all …]
|
/third_party/python/Lib/xml/dom/ |
D | expatbuilder.py | 170 self.curNode = self.document 270 _append_child(self.curNode, node) 272 self.curNode.removeChild(node) 275 childNodes = self.curNode.childNodes 292 _append_child(self.curNode, node) 295 childNodes = self.curNode.childNodes 303 _append_child(self.curNode, node) 331 _append_child(self.curNode, node) 333 self.curNode.removeChild(node) 354 _append_child(self.curNode, node) [all …]
|
D | pulldom.py | 300 curNode = self.elementStack[-1] 302 parentNode.appendChild(curNode) 306 curNode = self.elementStack[-1] 308 parentNode.appendChild(curNode)
|
/third_party/vk-gl-cts/executor/ |
D | xeTestCase.cpp | 109 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 …]
|
/third_party/skia/third_party/externals/angle2/src/tests/deqp_support/ |
D | tcuRandomOrderExecutor.cpp | 131 TestNode *const curNode = in seekToCase() local 134 if (!curNode) in seekToCase() 137 m_nodeStack.push_back(NodeStackEntry(curNode)); in seekToCase() 139 if (curNode->getNodeType() == NODETYPE_PACKAGE) in seekToCase() 141 TestPackage *const testPackage = static_cast<TestPackage *>(curNode); in seekToCase() 147 else if (curNode->getNodeType() == NODETYPE_GROUP) in seekToCase() 148 m_inflater.enterGroupNode(static_cast<TestCaseGroup *>(curNode), in seekToCase()
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/deqp_support/ |
D | tcuRandomOrderExecutor.cpp | 124 TestNode *const curNode = in seekToCase() local 127 if (!curNode) in seekToCase() 130 m_nodeStack.push_back(NodeStackEntry(curNode)); in seekToCase() 132 if (curNode->getNodeType() == NODETYPE_PACKAGE) in seekToCase() 134 TestPackage *const testPackage = static_cast<TestPackage *>(curNode); in seekToCase() 140 else if (curNode->getNodeType() == NODETYPE_GROUP) in seekToCase() 141 m_inflater.enterGroupNode(static_cast<TestCaseGroup *>(curNode), in seekToCase()
|
/third_party/vk-gl-cts/scripts/ |
D | mustpass.py | 266 curNode = root 270 nextNode = findChild(curNode, component) 273 curNode.children.append(nextNode) 274 curNode = nextNode 276 if not findChild(curNode, components[-1]): 277 curNode.children.append(TestCase(components[-1])) 288 def recursiveBuild (curNode, prefix): argument 289 curPath = prefix + curNode.name 290 if isinstance(curNode, TestCase): 291 caseMap[curPath] = curNode [all …]
|
/third_party/icu/icu4c/source/tools/ctestfw/ |
D | ctest.c | 225 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 …]
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/ctestfw/ |
D | ctest.c | 225 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 …]
|
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/ |
D | ctest.c | 225 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 …]
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTestSessionExecutor.cpp | 79 TestNode* const curNode = m_iterator.getNode(); in iterate() local 80 const TestNodeType nodeType = curNode->getNodeType(); in iterate() 87 TestPackage* const testPackage = static_cast<TestPackage*>(curNode); in iterate() 103 TestCase* const testCase = static_cast<TestCase*>(curNode); in iterate()
|
D | tcuCommandLine.cpp | 360 const CaseTreeNode* curNode = root; in findNode() local 366 curNode = curNode->getChild(std::string(curPath, curPath+curLen)); in findNode() 368 if (!curNode) in findNode() 383 return curNode; in findNode()
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
D | vkBinaryRegistry.cpp | 188 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()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/opt/ |
D | pass.cc | 110 auto curNode = bfsQueue.front(); in BFSNodeVisit() local 114 RETURN_IF_NOT_OK(curNode->Accept(this, &m)); in BFSNodeVisit() 118 for (const auto &c : curNode->Children()) { in BFSNodeVisit()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | OutputGLSLBase.cpp | 852 TIntermNode *curNode = *iter; in visitBlock() local 853 ASSERT(curNode != nullptr); in visitBlock() 855 out << getIndentPrefix(curNode->getAsCaseNode() ? -1 : 0); in visitBlock() 857 curNode->traverse(this); in visitBlock() 859 if (isSingleStatement(curNode)) in visitBlock()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | OutputGLSLBase.cpp | 900 TIntermNode *curNode = *iter; in visitBlock() local 901 ASSERT(curNode != nullptr); in visitBlock() 902 curNode->traverse(this); in visitBlock() 904 if (isSingleStatement(curNode)) in visitBlock()
|
/third_party/gstreamer/gstplugins_good/gst/goom/ |
D | goomsl_yacc.y | 1014 static NodeType *gsl_append(NodeType *curNode) { in gsl_append() argument 1015 if (curNode == 0) return 0; /* {{{ */ in gsl_append() 1017 lastNode->unode.opr.next = curNode; in gsl_append() 1018 lastNode = curNode; in gsl_append() 1021 rootNode = curNode; in gsl_append() 1022 return curNode; in gsl_append()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | MemorySSA.cpp | 703 T &operator*() const { return curNode(); } in operator *() 706 N = curNode().Previous; in operator ++() 717 T &curNode() const { return W->Paths[*N]; } in curNode() function
|