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

1 2 3 4

  /libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java 228 public abstract void processingInstruction (String target, String data)
ContentHandler.java 386 public void processingInstruction (String target, String data)
HandlerBase.java 291 * @see org.xml.sax.DocumentHandler#processingInstruction
293 public void processingInstruction (String target, String 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, "");
ElemValueOf.java 228 rth.processingInstruction(
240 rth.processingInstruction(
ElemPI.java 167 transformer.getResultTreeHandler().processingInstruction(piName, data);
  /external/libxml2/
SAX.c 70 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
118 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
165 hdlr->processingInstruction = NULL;
  /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/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/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 402 * @see org.xml.sax.ContentHandler#processingInstruction
404 public void processingInstruction (String target, String data)
408 documentHandler.processingInstruction(target, data);
DefaultHandler.java 367 * @see org.xml.sax.ContentHandler#processingInstruction
369 public void processingInstruction (String target, String data)
387 * @see org.xml.sax.ContentHandler#processingInstruction
XMLFilterImpl.java 600 public void processingInstruction (String target, String data)
604 contentHandler.processingInstruction(target, data);
  /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),
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
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);
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, "");
ToSAXHandler.java 160 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
162 public void processingInstruction(String target, String data)
  /libcore/luni/src/test/java/tests/api/org/xml/sax/
HandlerBaseTest.java 108 h.processingInstruction("target", "data");
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 303 void processingInstruction (String text)
  /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/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, "");
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
DefaultHandlerTest.java 136 h.processingInstruction("target", "data");
  /external/webkit/Source/WebCore/dom/
XMLDocumentParser.h 72 void processingInstruction(const XML_Char *target, const XML_Char *data);
267 void processingInstruction(const xmlChar* target, const xmlChar* data);
  /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);
  /external/libxml2/include/libxml/
SAX.h 126 processingInstruction (void *ctx,

Completed in 274 milliseconds

1 2 3 4