Searched refs:ProcessingInstruction (Results 1 – 14 of 14) sorted by relevance
/third_party/python/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 2088 _set_factories(Comment, ProcessingInstruction)
|
/third_party/node/test/fixtures/wpt/interfaces/ |
D | dom.idl | 285 [NewObject] ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data); 438 interface ProcessingInstruction : CharacterData {
|
/third_party/python/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 | 663 .. function:: ProcessingInstruction(target, text=None) 1258 like the :func:`Comment` and :func:`ProcessingInstruction` functions to
|
/third_party/typescript/tests/baselines/reference/ |
D | globalThisBlockscopedProperties.types | 67 … | "Plugin" | "PluginArray" | "PointerEvent" | "PopStateEvent" | "ProcessingInstruction" | "Progre…
|
D | mappedTypeRecursiveInference.types | 100 …in: any; PluginArray: any; PointerEvent: any; PopStateEvent: any; ProcessingInstruction: any; Prog… 102 …in: any; PluginArray: any; PointerEvent: any; PopStateEvent: any; ProcessingInstruction: any; Prog… 108 …in: any; PluginArray: any; PointerEvent: any; PopStateEvent: any; ProcessingInstruction: any; Prog… 110 …in: any; PluginArray: any; PointerEvent: any; PopStateEvent: any; ProcessingInstruction: any; Prog…
|
/third_party/python/Modules/ |
D | pyexpat.c | 25 ProcessingInstruction, enumerator 472 VOID_HANDLER(ProcessingInstruction,
|
/third_party/python/Lib/xml/dom/ |
D | minidom.py | 990 class ProcessingInstruction(Childless, Node): class 1703 p = ProcessingInstruction(target, data)
|
/third_party/python/Lib/test/ |
D | test_xml_etree.py | 285 self.assertEqual(ET.PI, ET.ProcessingInstruction) 1328 self.assertEqual(ET.tostring(ET.ProcessingInstruction('test', 'instruction')),
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 6339 createProcessingInstruction(target: string, data: string): ProcessingInstruction; 12468 interface ProcessingInstruction extends CharacterData { interface 12472 declare var ProcessingInstruction: { variable 12473 prototype: ProcessingInstruction; 12474 new(): ProcessingInstruction;
|
/third_party/typescript/lib/ |
D | lib.dom.d.ts | 4809 createProcessingInstruction(target: string, data: string): ProcessingInstruction; 11888 interface ProcessingInstruction extends CharacterData, LinkStyle { interface 11893 declare var ProcessingInstruction: { variable 11894 prototype: ProcessingInstruction; 11895 new(): ProcessingInstruction; 15484 readonly ownerNode: Element | ProcessingInstruction | null;
|
/third_party/typescript/src/lib/ |
D | dom.generated.d.ts | 4789 createProcessingInstruction(target: string, data: string): ProcessingInstruction; 11868 interface ProcessingInstruction extends CharacterData, LinkStyle { interface 11873 declare var ProcessingInstruction: { variable 11874 prototype: ProcessingInstruction; 11875 new(): ProcessingInstruction; 15464 readonly ownerNode: Element | ProcessingInstruction | null;
|
/third_party/typescript_eslint/packages/scope-manager/src/lib/ |
D | dom.ts | 4424 ProcessingInstruction: {
|
/third_party/python/Doc/whatsnew/ |
D | 2.5.rst | 1842 elif elem.tag is ET.ProcessingInstruction:
|