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

1 2 3 4

  /dalvik/libcore/xml/src/main/java/org/xml/sax/
DocumentHandler.java 227 public abstract void processingInstruction (String target, String data)
ContentHandler.java 386 public void processingInstruction (String target, String data)
HandlerBase.java 290 * @see org.xml.sax.DocumentHandler#processingInstruction
292 public void processingInstruction (String target, String data)
  /dalvik/libcore/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;
  /dalvik/libcore/xml/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 404 * @see org.xml.sax.ContentHandler#processingInstruction
406 public void processingInstruction (String target, String data)
410 documentHandler.processingInstruction(target, data);
DefaultHandler.java 368 * @see org.xml.sax.ContentHandler#processingInstruction
370 public void processingInstruction (String target, String data)
388 * @see org.xml.sax.ContentHandler#processingInstruction
XMLFilterImpl.java 603 public void processingInstruction (String target, String data)
607 contentHandler.processingInstruction(target, data);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAX1ParserAdapter.java 146 public void processingInstruction(String target, String data)
149 docHandler.processingInstruction(target, data);
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 104 // m_rth.processingInstruction(dtm.getNodeNameX(node),
197 rth.processingInstruction(dtm.getNodeNameX(node),
  /dalvik/libcore/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)
  /dalvik/libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 303 void processingInstruction (String text)
  /dalvik/libcore/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, "");
  /dalvik/libcore/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, "");
  /dalvik/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/webkit/WebCore/dom/
XMLTokenizer.h 72 void processingInstruction(const XML_Char *target, const XML_Char *data);
243 void processingInstruction(const xmlChar* target, const xmlChar* data);
  /dalvik/libcore/xml/src/test/java/org/apache/harmony/xml/
XsltXPathConformanceTestSuite.java 32 import org.w3c.dom.ProcessingInstruction;
510 ProcessingInstruction processingInstruction = (ProcessingInstruction) node;
511 String data = processingInstruction.getData();
512 String target = processingInstruction.getTarget();
513 serializer.processingInstruction(target + " " + data);
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/
HandlerBaseTest.java 163 method = "processingInstruction",
168 h.processingInstruction("target", "data");
  /dalvik/libcore/xml/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);
  /external/libxml2/include/libxml/
SAX.h 126 processingInstruction (void *ctx,

Completed in 865 milliseconds

1 2 3 4