/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ext/ |
D | TestDOM.java | 61 ProcessingInstruction pi = (ProcessingInstruction) nodes.item(1); in testDeserializeNonNS()
|
/external/markdown/markdown/ |
D | html4.py | 45 ProcessingInstruction = markdown.etree.ProcessingInstruction variable 133 elif tag is ProcessingInstruction:
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | XMPMetaParser.java | 27 import org.w3c.dom.ProcessingInstruction; 331 ((ProcessingInstruction) root).getTarget() == XMPConst.XMP_PI) in findRootNode() 336 result[2] = ((ProcessingInstruction) root).getData(); in findRootNode()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | TreeWalker.java | 32 import org.w3c.dom.ProcessingInstruction; 366 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | TreeWalker.java | 30 import org.w3c.dom.ProcessingInstruction; 371 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
|
D | UnImplNode.java | 39 import org.w3c.dom.ProcessingInstruction; 895 public ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
|
/external/oss-fuzz/projects/xerces-c/ |
D | xmlProtoConverter.h | 38 void visit(ProcessingInstruction const&);
|
D | xml.proto | 22 ProcessingInstruction inst = 2; 238 message ProcessingInstruction { message
|
D | xmlProtoConverter.cpp | 103 void ProtoConverter::visit(ProcessingInstruction const& _x) in visit()
|
/external/python/cpython3/Lib/xml/etree/ |
D | ElementTree.py | 458 def ProcessingInstruction(target, text=None): function 468 element = Element(ProcessingInstruction) 474 PI = ProcessingInstruction 877 elif tag is ProcessingInstruction: 934 elif tag is ProcessingInstruction: 1426 pi_factory = ProcessingInstruction 2090 _set_factories(Comment, ProcessingInstruction)
|
/external/python/cpython2/Lib/xml/etree/ |
D | ElementTree.py | 561 def ProcessingInstruction(target, text=None): function 562 element = Element(ProcessingInstruction) 568 PI = ProcessingInstruction 904 elif tag is ProcessingInstruction: 959 elif tag is ProcessingInstruction:
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
D | DOM3TreeWalker.java | 51 import org.w3c.dom.ProcessingInstruction; 423 serializePI((ProcessingInstruction) node); in startNode() 887 protected void serializePI(ProcessingInstruction node) 889 ProcessingInstruction pi = node; 1530 protected void isPIWellFormed(ProcessingInstruction node) { in isPIWellFormed()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNodeProxy.java | 42 import org.w3c.dom.ProcessingInstruction; 65 ProcessingInstruction, Comment, DocumentFragment 701 public final ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
|
/external/fonttools/Lib/fontTools/misc/ |
D | etree.py | 381 elif tag is ProcessingInstruction:
|
/external/python/cpython3/Doc/library/ |
D | xml.dom.rst | 192 | :class:`ProcessingInstruction` | :ref:`dom-pi-objects` | Processing instruction … 787 ProcessingInstruction Objects 794 .. attribute:: ProcessingInstruction.target 800 .. attribute:: ProcessingInstruction.data
|
D | xml.etree.elementtree.rst | 645 .. function:: ProcessingInstruction(target, text=None) 1240 like the :func:`Comment` and :func:`ProcessingInstruction` functions to
|
/external/python/cpython2/Doc/library/ |
D | xml.dom.rst | 205 | :class:`ProcessingInstruction` | :ref:`dom-pi-objects` | Processing instruction … 802 ProcessingInstruction Objects 809 .. attribute:: ProcessingInstruction.target 815 .. attribute:: ProcessingInstruction.data
|
D | xml.etree.elementtree.rst | 510 .. function:: ProcessingInstruction(target, text=None)
|
/external/python/cpython3/Modules/ |
D | pyexpat.c | 25 ProcessingInstruction, enumerator 463 VOID_HANDLER(ProcessingInstruction,
|
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 491 class ProcessingInstruction(NavigableString): class 1389 self._toStringSubclass(text, ProcessingInstruction)
|
/external/python/cpython2/Modules/ |
D | pyexpat.c | 35 ProcessingInstruction, enumerator 620 VOID_HANDLER(ProcessingInstruction,
|
/external/python/cpython2/Lib/xml/dom/ |
D | minidom.py | 907 class ProcessingInstruction(Childless, Node): class 1631 p = ProcessingInstruction(target, data)
|
/external/python/cpython3/Lib/xml/dom/ |
D | minidom.py | 990 class ProcessingInstruction(Childless, Node): class 1703 p = ProcessingInstruction(target, data)
|
/external/python/cpython2/Lib/test/ |
D | test_xml_etree.py | 240 self.assertEqual(ET.PI, ET.ProcessingInstruction) 979 self.assertEqual(ET.tostring(ET.ProcessingInstruction('test', 'instruction')),
|
/external/python/cpython3/Lib/test/ |
D | test_xml_etree.py | 270 self.assertEqual(ET.PI, ET.ProcessingInstruction) 1310 self.assertEqual(ET.tostring(ET.ProcessingInstruction('test', 'instruction')),
|