OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:processinginstruction
(Results
26 - 50
of
177
) sorted by null
1
2
3
4
5
6
7
8
/external/libxml2/
SAX.c
70
hdlr->
processingInstruction
= xmlSAX2ProcessingInstruction;
118
hdlr->
processingInstruction
= xmlSAX2ProcessingInstruction;
165
hdlr->
processingInstruction
= NULL;
/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, "");
ToXMLSAXHandler.java
108
processingInstruction
(Result.PI_ENABLE_OUTPUT_ESCAPING, "");
110
processingInstruction
(Result.PI_DISABLE_OUTPUT_ESCAPING, "");
574
* @see org.xml.sax.ContentHandler#
processingInstruction
(String, String)
577
public void
processingInstruction
(String target, String data)
583
m_saxHandler.
processingInstruction
(target, data);
/libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentImportNode.java
12
import org.w3c.dom.
ProcessingInstruction
;
391
ProcessingInstruction
piImport;
392
ProcessingInstruction
piToImport;
398
piImport = (
ProcessingInstruction
) doc.importNode(piToImport, false);
470
//
ProcessingInstruction
pi;
490
// pi = (
ProcessingInstruction
) childList.item(1);
NodeIsSupported.java
33
import org.w3c.dom.
ProcessingInstruction
;
173
ProcessingInstruction
pi;
NodeNormalize.java
33
import org.w3c.dom.
ProcessingInstruction
;
102
ProcessingInstruction
pi;
/external/webkit/LayoutTests/dom/xhtml/level3/core/
noderemovechild14.js
78
Using removeChild on a new EntityReference node attempt to remove its last
ProcessingInstruction
noderemovechild26.js
78
Using removeChild on an Entity node attempt to remove a
ProcessingInstruction
child
nodereplacechild17.js
82
a
ProcessingInstruction
and vice versa verify the data of the replaced nodes.
nodegetfeature08.js
79
Check implementation of Node.getFeature on
ProcessingInstruction
.
/external/webkit/Source/WebCore/bindings/objc/
DOMObject.mm
38
#import "
ProcessingInstruction
.h"
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodeissupported05.java
79
ProcessingInstruction
pi;
documentimportnode20.java
89
ProcessingInstruction
pi;
108
pi = (
ProcessingInstruction
) childList.item(1);
/libcore/luni/src/test/java/tests/api/org/xml/sax/
HandlerBaseTest.java
108
h.
processingInstruction
("target", "data");
/external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java
210
rth.
processingInstruction
(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, "");
217
rth.
processingInstruction
(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java
104
// m_rth.
processingInstruction
(dtm.getNodeNameX(node),
197
rth.
processingInstruction
(dtm.getNodeNameX(node),
/libcore/dom/src/test/java/org/w3c/domts/
XercesHTML2DocumentBuilderFactory.java
162
public void
processingInstruction
(String target, String data) throws
164
htmlBuilder.
processingInstruction
(target, data);
XercesHTMLDocumentBuilderFactory.java
162
public void
processingInstruction
(String target, String data) throws
164
htmlBuilder.
processingInstruction
(target, data);
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
processinginstructionsetdatanomodificationallowederr.java
78
ProcessingInstruction
piNode;
84
piNode = (
ProcessingInstruction
) entRef.getLastChild();
processinginstructionsetdatanomodificationallowederrEE.java
73
ProcessingInstruction
piNode;
82
piNode = (
ProcessingInstruction
) entRef.getLastChild();
/libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java
58
import org.w3c.dom.
ProcessingInstruction
;
508
ProcessingInstruction
processingInstruction
= (
ProcessingInstruction
) node;
509
String data =
processingInstruction
.getData();
510
String target =
processingInstruction
.getTarget();
511
serializer.
processingInstruction
(target + " " + data);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java
295
this.m_contentHandler.
processingInstruction
(name,
327
m_contentHandler.
processingInstruction
(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, "");
329
m_contentHandler.
processingInstruction
(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
/external/markdown/markdown/
html4.py
45
ProcessingInstruction
= markdown.etree.
ProcessingInstruction
133
elif tag is
ProcessingInstruction
:
/external/webkit/Source/WebCore/bindings/js/
JSNodeCustom.cpp
64
#include "
ProcessingInstruction
.h"
140
if (StyleSheet* sheet = static_cast<
ProcessingInstruction
*>(node)->sheet()) {
278
wrapper = CREATE_DOM_NODE_WRAPPER(exec, globalObject,
ProcessingInstruction
, node);
/external/libxml2/include/libxml/
SAX.h
126
processingInstruction
(void *ctx,
Completed in 490 milliseconds
1
2
3
4
5
6
7
8