HomeSort by relevance Sort by last modified time
    Searched full:processinginstruction (Results 1 - 25 of 177) sorted by null

1 2 3 4 5 6 7 8

  /external/webkit/Source/WebCore/dom/
ProcessingInstruction.cpp 22 #include "ProcessingInstruction.h"
38 inline ProcessingInstruction::ProcessingInstruction(Document* document, const String& target, const String& data)
53 PassRefPtr<ProcessingInstruction> ProcessingInstruction::create(Document* document, const String& target, const String& data)
55 return adoptRef(new ProcessingInstruction(document, target, data));
58 ProcessingInstruction::~ProcessingInstruction()
67 void ProcessingInstruction::setData(const String& data, ExceptionCode&)
75 String ProcessingInstruction::nodeName() cons
    [all...]
ProcessingInstruction.h 34 class ProcessingInstruction : public ContainerNode, private CachedResourceClient {
36 static PassRefPtr<ProcessingInstruction> create(Document*, const String& target, const String& data);
37 virtual ~ProcessingInstruction();
57 ProcessingInstruction(Document*, const String& target, const String& data);
ProcessingInstruction.idl 23 interface [CustomMarkFunction] ProcessingInstruction : Node {
  /external/webkit/Source/WebCore/bindings/js/
JSProcessingInstructionCustom.cpp 29 #include "ProcessingInstruction.h"
39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet())
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
processinginstructiongetdata.java 36 * Retrieve the ProcessingInstruction node located
40 * return the content of the ProcessingInstruction.
69 ProcessingInstruction piNode;
73 piNode = (ProcessingInstruction) childNodes.item(0);
processinginstructiongettarget.java 35 * Retrieve the ProcessingInstruction node located
39 * return the target of the ProcessingInstruction.
68 ProcessingInstruction piNode;
72 piNode = (ProcessingInstruction) childNodes.item(0);
documentcreateprocessinginstruction.java 32 * creates a new ProcessingInstruction node with the
71 ProcessingInstruction newPINode;
nodeprocessinginstructionsetnodevalue.java 32 * nodeValue and ProcessingInstruction.getData.
71 piValue = ((ProcessingInstruction) /*Node */piNode).getData();
  /external/webkit/LayoutTests/fast/dom/Node/script-tests/
initial-values.js 182 var processingInstruction = xmlDoc.createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="missing.xsl"');
183 shouldBe("processingInstruction.nodeName", "'xml-stylesheet'");
184 shouldBe("processingInstruction.localName", "null");
185 shouldBe("processingInstruction.namespaceURI", "null");
186 shouldBe("processingInstruction.prefix", "null");
187 // DOM Core Level 2 and DOM Core Level 3 disagree on ProcessingInstruction.nodeValue
189 // L3: same as ProcessingInstruction.data
191 shouldBe("processingInstruction.nodeValue", "'type=\"text/xsl\" href=\"missing.xsl\"'");
192 shouldBe("processingInstruction.attributes", "null");
193 shouldBe("processingInstruction.target", "'xml-stylesheet'")
    [all...]
  /external/webkit/LayoutTests/fast/dom/Node/
initial-values-expected.txt 133 PASS processingInstruction.nodeName is 'xml-stylesheet'
134 PASS processingInstruction.localName is null
135 PASS processingInstruction.namespaceURI is null
136 PASS processingInstruction.prefix is null
137 PASS processingInstruction.nodeValue is 'type="text/xsl" href="missing.xsl"'
138 PASS processingInstruction.attributes is null
139 PASS processingInstruction.target is 'xml-stylesheet'
140 PASS processingInstruction.data is 'type="text/xsl" href="missing.xsl"'
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ProcessingInstructionImpl.java 21 import org.w3c.dom.ProcessingInstruction;
34 ProcessingInstruction {
  /external/webkit/Source/WebCore/xml/
XSLStyleSheet.h 28 #include "ProcessingInstruction.h"
50 static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL)
54 static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& finalURL)
XMLTreeViewer.h 40 class ProcessingInstruction;
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode18.java 78 ProcessingInstruction piImport;
79 ProcessingInstruction piToImport;
85 piImport = (ProcessingInstruction) doc.importNode(piToImport, false);
importNode14.java 71 ProcessingInstruction pi;
72 ProcessingInstruction aNode;
83 aNode = (ProcessingInstruction) doc.importNode(pi, false);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodecomparedocumentposition12.js 78 Using compareDocumentPosition to check if a new ProcessingInstruction node is contained and follows the
79 Document node, and that the Document node contains and precedes the ProcessingInstruction node.
nodecomparedocumentposition17.js 78 Using compareDocumentPosition check if the document position of the first ProcessingInstruction node compared to
79 this second newly apended ProcessingInstruction node is PRECEDING, and FOLLOWING vice versa.
nodeisequalnode32.js 80 Using isEqualNode check if 2 new ProcessingInstruction nodes having the same data are equal and two others
103 pi3 = doc.createProcessingInstruction("Target1","#ProcessingInstruction");
noderemovechild09.js 81 Using removeChild on this Document node attempt to remove a new ProcessingInstruction node and
82 verify the target of the removed ProcessingInstruction node.
  /libcore/luni/src/main/java/org/w3c/dom/
ProcessingInstruction.java 16 * The <code>ProcessingInstruction</code> interface represents a "processing
27 public interface ProcessingInstruction extends Node {
  /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, "");
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 146 public void processingInstruction(String target, String data)
149 docHandler.processingInstruction(target, data);
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 27 import org.w3c.dom.ProcessingInstruction;
99 if (node instanceof ProcessingInstruction) {
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockHandler.java 81 public void processingInstruction(String target, String data) throws SAXException {
82 logger.add("processingInstruction", target, data);
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 33 import org.w3c.dom.ProcessingInstruction;
88 public ProcessingInstruction createProcessingInstruction(String target, String data)

Completed in 703 milliseconds

1 2 3 4 5 6 7 8