HomeSort by relevance Sort by last modified time
    Searched refs:ProcessingInstruction (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /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 {
Document.java 120 * Creates a <code>ProcessingInstruction</code> node given the specified
130 * @return The new <code>ProcessingInstruction</code> object.
137 public ProcessingInstruction createProcessingInstruction(String target,
    [all...]
  /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.idl 23 interface [CustomMarkFunction] ProcessingInstruction : Node {
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);
  /external/webkit/Source/WebCore/bindings/js/
JSProcessingInstructionCustom.cpp 29 #include "ProcessingInstruction.h"
39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet())
  /external/webkit/Source/WebCore/xml/
XMLTreeViewer.h 40 class ProcessingInstruction;
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)
  /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);
processinginstructionsetdatanomodificationallowederr.java 78 ProcessingInstruction piNode;
84 piNode = (ProcessingInstruction) entRef.getLastChild();
processinginstructionsetdatanomodificationallowederrEE.java 73 ProcessingInstruction piNode;
82 piNode = (ProcessingInstruction) entRef.getLastChild();
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();
documentinvalidcharacterexceptioncreatepi.java 67 ProcessingInstruction badPI;
documentinvalidcharacterexceptioncreatepi1.java 64 ProcessingInstruction badPI;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ProcessingInstructionImpl.java 21 import org.w3c.dom.ProcessingInstruction;
34 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);
nodeissupported05.java 79 ProcessingInstruction pi;
documentimportnode20.java 89 ProcessingInstruction pi;
108 pi = (ProcessingInstruction) childList.item(1);
  /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/org/w3c/dom/
NodeIsSupported.java 33 import org.w3c.dom.ProcessingInstruction;
173 ProcessingInstruction pi;
  /packages/apps/Mms/src/com/android/mms/dom/
DocumentImpl.java 33 import org.w3c.dom.ProcessingInstruction;
88 public ProcessingInstruction createProcessingInstruction(String target, String data)
  /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.

Completed in 443 milliseconds

1 2 3 4