Home
last modified time | relevance | path

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

/third_party/python/Lib/xml/etree/
DElementTree.py458 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/
Ddom.idl285 [NewObject] ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
438 interface ProcessingInstruction : CharacterData {
/third_party/python/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.rst663 .. function:: ProcessingInstruction(target, text=None)
1258 like the :func:`Comment` and :func:`ProcessingInstruction` functions to
/third_party/typescript/tests/baselines/reference/
DglobalThisBlockscopedProperties.types67 … | "Plugin" | "PluginArray" | "PointerEvent" | "PopStateEvent" | "ProcessingInstruction" | "Progre…
DmappedTypeRecursiveInference.types100 …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/
Dpyexpat.c25 ProcessingInstruction, enumerator
472 VOID_HANDLER(ProcessingInstruction,
/third_party/python/Lib/xml/dom/
Dminidom.py990 class ProcessingInstruction(Childless, Node): class
1703 p = ProcessingInstruction(target, data)
/third_party/python/Lib/test/
Dtest_xml_etree.py285 self.assertEqual(ET.PI, ET.ProcessingInstruction)
1328 self.assertEqual(ET.tostring(ET.ProcessingInstruction('test', 'instruction')),
/third_party/typescript/tests/lib/
Dlib.d.ts6339 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/
Dlib.dom.d.ts4809 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/
Ddom.generated.d.ts4789 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/
Ddom.ts4424 ProcessingInstruction: {
/third_party/python/Doc/whatsnew/
D2.5.rst1842 elif elem.tag is ET.ProcessingInstruction: