/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPMetaParser.java | 27 import org.w3c.dom.ProcessingInstruction; 331 ((ProcessingInstruction) root).getTarget() == XMPConst.XMP_PI) 336 result[2] = ((ProcessingInstruction) root).getData();
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
TreeWalker.java | 32 import org.w3c.dom.ProcessingInstruction; 366 ProcessingInstruction pi = (ProcessingInstruction) node; 376 this.m_contentHandler.processingInstruction(pi.getNodeName(), 410 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, ""); 412 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 30 import org.w3c.dom.ProcessingInstruction; 371 ProcessingInstruction pi = (ProcessingInstruction) node; 381 this.m_contentHandler.processingInstruction(pi.getNodeName(), 415 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, ""); 417 m_contentHandler.processingInstruction(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
|
UnImplNode.java | 39 import org.w3c.dom.ProcessingInstruction; 895 public ProcessingInstruction createProcessingInstruction( [all...] |
/external/markdown/markdown/ |
html4.py | 45 ProcessingInstruction = markdown.etree.ProcessingInstruction 133 elif tag is ProcessingInstruction:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/etree/ |
ElementTree.py | 65 "PI", "ProcessingInstruction",
169 # @see ProcessingInstruction
561 def ProcessingInstruction(target, text=None):
562 element = Element(ProcessingInstruction)
568 PI = ProcessingInstruction
904 elif tag is ProcessingInstruction:
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/etree/ |
ElementTree.py | 65 "PI", "ProcessingInstruction",
169 # @see ProcessingInstruction
561 def ProcessingInstruction(target, text=None):
562 element = Element(ProcessingInstruction)
568 PI = ProcessingInstruction
899 elif tag is ProcessingInstruction:
[all...] |
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/ |
DOM3TreeWalker.java | 51 import org.w3c.dom.ProcessingInstruction;
423 serializePI((ProcessingInstruction) node);
883 * Serializes an ProcessingInstruction Node.
885 * @param node The ProcessingInstruction Node to serialize
887 protected void serializePI(ProcessingInstruction node)
889 ProcessingInstruction pi = node;
[all...] |
/external/python/cpython2/Lib/xml/etree/ |
ElementTree.py | 65 "PI", "ProcessingInstruction", 169 # @see ProcessingInstruction 561 def ProcessingInstruction(target, text=None): 562 element = Element(ProcessingInstruction) 568 PI = ProcessingInstruction 904 elif tag is ProcessingInstruction: [all...] |
/external/python/cpython3/Lib/xml/etree/ |
ElementTree.py | 81 "PI", "ProcessingInstruction", 476 def ProcessingInstruction(target, text=None): 486 element = Element(ProcessingInstruction) 492 PI = ProcessingInstruction 905 elif tag is ProcessingInstruction: [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMNodeProxy.java | 42 import org.w3c.dom.ProcessingInstruction; 65 ProcessingInstruction, Comment, DocumentFragment 701 public final ProcessingInstruction createProcessingInstruction( [all...] |
/external/fonttools/Lib/fontTools/misc/ |
etree.py | 33 "ProcessingInstruction", 382 elif tag is ProcessingInstruction:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
pyexpat.c | 35 ProcessingInstruction,
620 VOID_HANDLER(ProcessingInstruction,
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_xml_etree.py | 185 >>> assert ET.PI == ET.ProcessingInstruction
1227 def processinginstruction(): function [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
pyexpat.c | 35 ProcessingInstruction,
620 VOID_HANDLER(ProcessingInstruction,
[all...] |
/external/autotest/site_utils/rpm_control_system/ |
BeautifulSoup.py | 491 class ProcessingInstruction(NavigableString): [all...] |
/external/python/cpython2/Modules/ |
pyexpat.c | 35 ProcessingInstruction, 620 VOID_HANDLER(ProcessingInstruction, [all...] |
/external/python/cpython3/Modules/ |
pyexpat.c | 24 ProcessingInstruction, 473 VOID_HANDLER(ProcessingInstruction, [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/ |
minidom.py | 907 class ProcessingInstruction(Childless, Node):
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/ |
minidom.py | 903 class ProcessingInstruction(Childless, Node):
[all...] |
/external/python/cpython2/Lib/xml/dom/ |
minidom.py | 907 class ProcessingInstruction(Childless, Node): [all...] |
/external/python/cpython3/Lib/xml/dom/ |
minidom.py | 965 class ProcessingInstruction(Childless, Node): [all...] |
/external/guice/extensions/persist/lib/ |
dom4j-1.6.1.jar | |
/external/owasp/sanitizer/tools/findbugs/lib/ |
dom4j-1.6.1.jar | |
/external/python/cpython2/Lib/test/ |
test_xml_etree.py | 240 self.assertEqual(ET.PI, ET.ProcessingInstruction) [all...] |