Home
last modified time | relevance | path

Searched refs:ProcessingInstruction (Results 1 – 23 of 23) sorted by relevance

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPMetaParser.java27 import org.w3c.dom.ProcessingInstruction;
331 ((ProcessingInstruction) root).getTarget() == XMPConst.XMP_PI) in findRootNode()
336 result[2] = ((ProcessingInstruction) root).getData(); in findRootNode()
/external/markdown/markdown/
Dhtml4.py45 ProcessingInstruction = markdown.etree.ProcessingInstruction variable
133 elif tag is ProcessingInstruction:
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DTreeWalker.java32 import org.w3c.dom.ProcessingInstruction;
366 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DTreeWalker.java30 import org.w3c.dom.ProcessingInstruction;
371 ProcessingInstruction pi = (ProcessingInstruction) node; in startNode()
DUnImplNode.java39 import org.w3c.dom.ProcessingInstruction;
895 public ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
/external/python/cpython3/Lib/xml/etree/
DElementTree.py476 def ProcessingInstruction(target, text=None): function
486 element = Element(ProcessingInstruction)
492 PI = ProcessingInstruction
905 elif tag is ProcessingInstruction:
962 elif tag is ProcessingInstruction:
/external/python/cpython2/Lib/xml/etree/
DElementTree.py561 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/
DDOM3TreeWalker.java51 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/
DDTMNodeProxy.java42 import org.w3c.dom.ProcessingInstruction;
65 ProcessingInstruction, Comment, DocumentFragment
701 public final ProcessingInstruction createProcessingInstruction( in createProcessingInstruction()
/external/fonttools/Lib/fontTools/misc/
Detree.py382 elif tag is ProcessingInstruction:
/external/python/cpython2/Doc/library/
Dxml.dom.rst205 | :class:`ProcessingInstruction` | :ref:`dom-pi-objects` | Processing instruction …
802 ProcessingInstruction Objects
809 .. attribute:: ProcessingInstruction.target
815 .. attribute:: ProcessingInstruction.data
Dxml.etree.elementtree.rst510 .. function:: ProcessingInstruction(target, text=None)
/external/python/cpython3/Doc/library/
Dxml.dom.rst192 | :class:`ProcessingInstruction` | :ref:`dom-pi-objects` | Processing instruction …
787 ProcessingInstruction Objects
794 .. attribute:: ProcessingInstruction.target
800 .. attribute:: ProcessingInstruction.data
Dxml.etree.elementtree.rst556 .. function:: ProcessingInstruction(target, text=None)
/external/python/cpython3/Modules/
Dpyexpat.c24 ProcessingInstruction, enumerator
473 VOID_HANDLER(ProcessingInstruction,
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py491 class ProcessingInstruction(NavigableString): class
1389 self._toStringSubclass(text, ProcessingInstruction)
/external/python/cpython2/Modules/
Dpyexpat.c35 ProcessingInstruction, enumerator
620 VOID_HANDLER(ProcessingInstruction,
/external/python/cpython3/Lib/xml/dom/
Dminidom.py965 class ProcessingInstruction(Childless, Node): class
1678 p = ProcessingInstruction(target, data)
/external/python/cpython2/Lib/xml/dom/
Dminidom.py907 class ProcessingInstruction(Childless, Node): class
1631 p = ProcessingInstruction(target, data)
/external/python/cpython2/Lib/test/
Dtest_xml_etree.py240 self.assertEqual(ET.PI, ET.ProcessingInstruction)
979 self.assertEqual(ET.tostring(ET.ProcessingInstruction('test', 'instruction')),
/external/python/cpython3/Lib/test/
Dtest_xml_etree.py267 self.assertEqual(ET.PI, ET.ProcessingInstruction)
1021 self.assertEqual(ET.tostring(ET.ProcessingInstruction('test', 'instruction')),
/external/python/cpython2/Doc/whatsnew/
D2.5.rst1841 elif elem.tag is ET.ProcessingInstruction:
/external/python/cpython3/Doc/whatsnew/
D2.5.rst1842 elif elem.tag is ET.ProcessingInstruction: