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

1 2 3 4 5 6 7 8 910

  /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/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, "");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
handler.py 182 def processingInstruction(self, target, data):
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
handler.py 182 def processingInstruction(self, target, data):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 182 def processingInstruction(self, target, data):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 182 def processingInstruction(self, 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/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/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
DefaultHandlerTest.java 136 h.processingInstruction("target", "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);

Completed in 432 milliseconds

1 2 3 4 5 6 7 8 910