/aosp_15_r20/external/antlr/tool/src/test/java/org/antlr/test/ |
H A D | TestTrees.java | 244 CommonTree newChild = new CommonTree(new CommonToken(5)); in testReplaceWithNoChildren() local 254 CommonTree newChild = new CommonTree(new CommonToken(99, "c")); in testReplaceWithOneChildren() local 267 CommonTree newChild = new CommonTree(new CommonToken(99,"x")); in testReplaceInMiddle() local 280 CommonTree newChild = new CommonTree(new CommonToken(99,"x")); in testReplaceAtLeft() local 293 CommonTree newChild = new CommonTree(new CommonToken(99,"x")); in testReplaceAtRight() local 354 CommonTree newChild = new CommonTree(new CommonToken(99,"x")); in testReplaceTwoWithOneAtLeft() local 368 CommonTree newChild = new CommonTree(new CommonToken(99,"x")); in testReplaceTwoWithOneAtRight() local 382 CommonTree newChild = new CommonTree(new CommonToken(99,"x")); in testReplaceAllWithOne() local
|
/aosp_15_r20/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
H A D | InnerNodeImpl.java | 51 public Node appendChild(Node newChild) throws DOMException { in appendChild() 85 public Node insertBefore(Node newChild, Node refChild) throws DOMException { in insertBefore() 107 Node insertChildAt(Node newChild, int index) throws DOMException { in insertChildAt() 196 public Node replaceChild(Node newChild, Node oldChild) throws DOMException { in replaceChild()
|
H A D | NodeImpl.java | 74 public Node appendChild(Node newChild) throws DOMException { in appendChild() 144 public Node insertBefore(Node newChild, Node refChild) throws DOMException { in insertBefore() 159 public Node replaceChild(Node newChild, Node oldChild) throws DOMException { in replaceChild()
|
/aosp_15_r20/libcore/luni/src/main/java/org/w3c/dom/ |
H A D | Node.java | 309 public Node insertBefore(Node newChild, in insertBefore() 346 public Node replaceChild(Node newChild, in replaceChild() 393 public Node appendChild(Node newChild) in appendChild()
|
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
D | msxml.h | 406 #define IXMLDOMNode_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->insertBefore(T… argument 407 #define IXMLDOMNode_replaceChild(This,newChild,oldChild,outOldChild) (This)->lpVtbl->replaceChild(T… argument 409 #define IXMLDOMNode_appendChild(This,newChild,outNewChild) (This)->lpVtbl->appendChild(This,newChil… argument 583 #define IXMLDOMDocumentFragment_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->in… argument 584 #define IXMLDOMDocumentFragment_replaceChild(This,newChild,oldChild,outOldChild) (This)->lpVtbl->re… argument 586 #define IXMLDOMDocumentFragment_appendChild(This,newChild,outNewChild) (This)->lpVtbl->appendChild(… argument 755 #define IXMLDOMDocument_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->insertBefo… argument 756 #define IXMLDOMDocument_replaceChild(This,newChild,oldChild,outOldChild) (This)->lpVtbl->replaceChi… argument 758 #define IXMLDOMDocument_appendChild(This,newChild,outNewChild) (This)->lpVtbl->appendChild(This,new… argument 1119 #define IXMLDOMCharacterData_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->inser… argument [all …]
|
D | msxml2.h | 1066 #define IXMLDOMNode_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->insertBefore(T… argument 1067 #define IXMLDOMNode_replaceChild(This,newChild,oldChild,outOldChild) (This)->lpVtbl->replaceChild(T… argument 1069 #define IXMLDOMNode_appendChild(This,newChild,outNewChild) (This)->lpVtbl->appendChild(This,newChil… argument 1243 #define IXMLDOMDocumentFragment_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->in… argument 1244 #define IXMLDOMDocumentFragment_replaceChild(This,newChild,oldChild,outOldChild) (This)->lpVtbl->re… argument 1246 #define IXMLDOMDocumentFragment_appendChild(This,newChild,outNewChild) (This)->lpVtbl->appendChild(… argument 1415 #define IXMLDOMDocument_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->insertBefo… argument 1416 #define IXMLDOMDocument_replaceChild(This,newChild,oldChild,outOldChild) (This)->lpVtbl->replaceChi… argument 1418 #define IXMLDOMDocument_appendChild(This,newChild,outNewChild) (This)->lpVtbl->appendChild(This,new… argument 1665 #define IXMLDOMDocument2_insertBefore(This,newChild,refChild,outNewChild) (This)->lpVtbl->insertBef… argument [all …]
|
/aosp_15_r20/libcore/luni/src/test/java/libcore/javax/xml/transform/dom/ |
H A D | DOMResultTest.java | 161 public Node insertBefore(Node newChild, Node refChild) throws DOMException { return null; } in insertBefore() 164 public Node replaceChild(Node newChild, Node oldChild) throws DOMException { return null; } in replaceChild() 170 public Node appendChild(Node newChild) throws DOMException { return null; } in appendChild()
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
H A D | ElemLiteralResult.java | 753 public Node appendChild(Node newChild) throws DOMException in appendChild() 960 public Node insertBefore(Node newChild, Node refChild) in insertBefore() 1008 public Node replaceChild(Node newChild, Node oldChild) throws DOMException in replaceChild()
|
H A D | ElemTemplateElement.java | 254 public Node appendChild(Node newChild) throws DOMException in appendChild() 394 public Node replaceChild(Node newChild, Node oldChild) throws DOMException in replaceChild() 434 public Node insertBefore(Node newChild, Node refChild) throws DOMException in insertBefore()
|
H A D | ElemApplyImport.java | 102 public ElemTemplateElement appendChild(ElemTemplateElement newChild) in appendChild()
|
H A D | ElemComment.java | 103 public ElemTemplateElement appendChild(ElemTemplateElement newChild) in appendChild()
|
H A D | ElemText.java | 129 public ElemTemplateElement appendChild(ElemTemplateElement newChild) in appendChild()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/xml/dom/ |
D | minidom.py | 82 def insertBefore(self, newChild, refChild): argument 131 def replaceChild(self, newChild, oldChild): argument 975 def insertBefore(self, newChild, refChild): argument 987 def replaceChild(self, newChild, oldChild): argument 1392 def appendChild(self, newChild): argument 1396 def insertBefore(self, newChild, refChild): argument 1404 def replaceChild(self, newChild, oldChild): argument
|
/aosp_15_r20/external/python/cpython3/Lib/xml/dom/ |
D | minidom.py | 82 def insertBefore(self, newChild, refChild): argument 131 def replaceChild(self, newChild, oldChild): argument 975 def insertBefore(self, newChild, refChild): argument 987 def replaceChild(self, newChild, oldChild): argument 1392 def appendChild(self, newChild): argument 1396 def insertBefore(self, newChild, refChild): argument 1404 def replaceChild(self, newChild, oldChild): argument
|
/aosp_15_r20/external/python/cpython2/Lib/xml/dom/ |
D | minidom.py | 80 def insertBefore(self, newChild, refChild): argument 129 def replaceChild(self, newChild, oldChild): argument 890 def insertBefore(self, newChild, refChild): argument 902 def replaceChild(self, newChild, oldChild): argument 1320 def appendChild(self, newChild): argument 1324 def insertBefore(self, newChild, refChild): argument 1332 def replaceChild(self, newChild, oldChild): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/xml/dom/ |
D | minidom.py | 82 def insertBefore(self, newChild, refChild): argument 131 def replaceChild(self, newChild, oldChild): argument 975 def insertBefore(self, newChild, refChild): argument 987 def replaceChild(self, newChild, oldChild): argument 1392 def appendChild(self, newChild): argument 1396 def insertBefore(self, newChild, refChild): argument 1404 def replaceChild(self, newChild, oldChild): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/xml/dom/ |
D | minidom.py | 82 def insertBefore(self, newChild, refChild): argument 131 def replaceChild(self, newChild, oldChild): argument 975 def insertBefore(self, newChild, refChild): argument 987 def replaceChild(self, newChild, oldChild): argument 1392 def appendChild(self, newChild): argument 1396 def insertBefore(self, newChild, refChild): argument 1404 def replaceChild(self, newChild, oldChild): argument
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/xml/dom/ |
H A D | minidom.py | 82 def insertBefore(self, newChild, refChild): argument 131 def replaceChild(self, newChild, oldChild): argument 975 def insertBefore(self, newChild, refChild): argument 987 def replaceChild(self, newChild, oldChild): argument 1392 def appendChild(self, newChild): argument 1396 def insertBefore(self, newChild, refChild): argument 1404 def replaceChild(self, newChild, oldChild): argument
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/xml/dom/ |
D | minidom.py | 82 def insertBefore(self, newChild, refChild): argument 131 def replaceChild(self, newChild, oldChild): argument 975 def insertBefore(self, newChild, refChild): argument 987 def replaceChild(self, newChild, oldChild): argument 1392 def appendChild(self, newChild): argument 1396 def insertBefore(self, newChild, refChild): argument 1404 def replaceChild(self, newChild, oldChild): argument
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/utils/ |
H A D | UnImplNode.java | 94 public Node appendChild(Node newChild) throws DOMException in appendChild() 656 public Node insertBefore(Node newChild, Node refChild) throws DOMException in insertBefore() 674 public Node replaceChild(Node newChild, Node oldChild) throws DOMException in replaceChild()
|
/aosp_15_r20/external/kotlinx.serialization/formats/json/jsMain/src/kotlinx/serialization/json/internal/ |
H A D | DynamicEncoders.kt | 220 private fun newChild(writeMode: WriteMode) = when (writeMode) { in newChild() method
|
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
H A D | DTMNodeProxy.java | 491 public final Node insertBefore(Node newChild, Node refChild) in insertBefore() 507 public final Node replaceChild(Node newChild, Node oldChild) in replaceChild() 536 public final Node appendChild(Node newChild) throws DOMException in appendChild()
|
/aosp_15_r20/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
H A D | ParseRDF.java | 620 XMPNode newChild = addChildNode (xmp, xmpParent, xmlNode, null, isTopLevel); in rdf_LiteralPropertyElement() local 1044 XMPNode newChild = new XMPNode( in addChildNode() local
|
/aosp_15_r20/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
H A D | ANoopCommand.java | 41 … replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) in replaceChild()
|
H A D | ANoopExpression.java | 41 … replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) in replaceChild()
|