Searched refs:newChild (Results 1 - 5 of 5) sorted by relevance
/third_party/python/Lib/xml/dom/ |
H A D | minidom.py | 82 def insertBefore(self, newChild, refChild): 83 if newChild.nodeType == self.DOCUMENT_FRAGMENT_NODE: 84 for c in tuple(newChild.childNodes): 87 return newChild 88 if newChild.nodeType not in self._child_node_types: 90 "%s cannot be child of %s" % (repr(newChild), repr(self))) 91 if newChild.parentNode is not None: 92 newChild.parentNode.removeChild(newChild) 94 self.appendChild(newChild) [all...] |
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuCommandLine.cpp | 528 CaseTreeNode* const newChild = new CaseTreeNode(hash); in parseCaseTrie() local 532 nodeStack.back()->addChild(newChild); in parseCaseTrie() 536 delete newChild; in parseCaseTrie() 541 nodeStack.push_back(newChild); in parseCaseTrie() 591 CaseTreeNode* const newChild = new CaseTreeNode(hash); in parseSimpleCaseList() local 595 nodeStack[stackPos]->addChild(newChild); in parseSimpleCaseList() 599 delete newChild; in parseSimpleCaseList()
|
/third_party/node/deps/npm/node_modules/path-scurry/dist/cjs/ |
H A D | index.js | 425 const pchild = this.newChild(pathPart, UNKNOWN, { 842 const child = this.newChild(e.name, type, { parent: this }); 1202 newChild(name, type = UNKNOWN, opts = {}) { 1281 newChild(name, type = UNKNOWN, opts = {}) {
|
/third_party/node/deps/npm/node_modules/path-scurry/dist/mjs/ |
H A D | index.js | 397 const pchild = this.newChild(pathPart, UNKNOWN, { 814 const child = this.newChild(e.name, type, { parent: this }); 1173 newChild(name, type = UNKNOWN, opts = {}) { 1251 newChild(name, type = UNKNOWN, opts = {}) {
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | Intermediate.cpp | 518 TIntermTyped* newChild = childTempConstant->fold(op, 0, infoSink); in addUnaryMath() local 520 if (newChild) in addUnaryMath() 521 return newChild; in addUnaryMath()
|
Completed in 15 milliseconds