Searched defs:processingInstruction (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/LayoutTests/fast/dom/Node/script-tests/
H A Dinitial-values.js182 var processingInstruction = xmlDoc.createProcessingInstruction('xml-stylesheet', 'type="text/xsl" href="missing.xsl"'); variable
183 shouldBe("processingInstruction.nodeName", "'xml-stylesheet'");
184 shouldBe("processingInstruction.localName", "null");
185 shouldBe("processingInstruction.namespaceURI", "null");
186 shouldBe("processingInstruction.prefix", "null");
191 shouldBe("processingInstruction.nodeValue", "'type=\"text/xsl\" href=\"missing.xsl\"'");
192 shouldBe("processingInstruction.attributes", "null");
193 shouldBe("processingInstruction.target", "'xml-stylesheet'");
194 shouldBe("processingInstruction.data", "'type=\"text/xsl\" href=\"missing.xsl\"'");
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java232 public void processingInstruction( method in class:XSLTElementProcessor
H A DStylesheetHandler.java749 * @see org.xml.sax.ContentHandler#processingInstruction
754 public void processingInstruction(String target, String data) method in class:StylesheetHandler
812 getCurrentProcessor().processingInstruction(this, target, data);
824 * @see org.xml.sax.ContentHandler#processingInstruction
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToXMLStream.java251 public void processingInstruction(String target, String data) method in class:ToXMLStream
H A DToSAXHandler.java160 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
162 public void processingInstruction(String target, String data) method in class:ToSAXHandler
H A DToTextStream.java451 public void processingInstruction(String target, String data) method in class:ToTextStream
H A DToTextSAXHandler.java248 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
250 public void processingInstruction(String arg0, String arg1) method in class:ToTextSAXHandler
H A DToXMLSAXHandler.java108 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) method in class:ToXMLSAXHandler
583 m_saxHandler.processingInstruction(target, data);
H A DToHTMLStream.java1644 public void processingInstruction(String target, String data) method in class:ToHTMLStream
H A DToUnknownStream.java851 * @see org.xml.sax.ContentHandler#processingInstruction(String, String)
853 public void processingInstruction(String target, String data) method in class:ToUnknownStream
861 m_handler.processingInstruction(target, data);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStylesheetPIHandler.java137 * @see org.xml.sax.ContentHandler#processingInstruction
140 public void processingInstruction(String target, String data) method in class:StylesheetPIHandler
H A DDOMBuilder.java614 public void processingInstruction(String target, String data) method in class:DOMBuilder
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DPYXWriter.java163 public void processingInstruction(String target, String data) throws SAXException { method in class:PYXWriter
H A DXMLWriter.java705 * @see org.xml.sax.ContentHandler#processingInstruction
707 public void processingInstruction (String target, String data)
718 super.processingInstruction(target, data);
704 public void processingInstruction (String target, String data) method in class:XMLWriter
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
H A DSAX1ParserAdapter.java146 public void processingInstruction(String target, String data) method in class:SAX1ParserAdapter.DocHandlerWrapper
149 docHandler.processingInstruction(target, data);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java582 * @see org.xml.sax.ContentHandler#processingInstruction
584 public void processingInstruction(String target, String data) method in class:TransformerHandlerImpl
589 System.out.println("TransformerHandlerImpl#processingInstruction: "
594 m_contentHandler.processingInstruction(target, data);
H A DTransformerIdentityImpl.java1166 * @see org.xml.sax.ContentHandler#processingInstruction
1170 public void processingInstruction(String target, String data) method in class:TransformerIdentityImpl
1174 m_resultContentHandler.processingInstruction(target, data);
1188 * @see org.xml.sax.ContentHandler#processingInstruction
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource_Filter.java276 public void processingInstruction(java.lang.String target, java.lang.String data) method in class:IncrementalSAXSource_Filter
285 clientContentHandler.processingInstruction(target,data);
H A DDTMDocumentImpl.java453 public void processingInstruction(java.lang.String target, java.lang.String data) method in class:DTMDocumentImpl
/external/expat/xmlwf/
H A Dxmlwf.c235 processingInstruction(void *userData, const XML_Char *target, function
840 XML_SetProcessingInstructionHandler(parser, processingInstruction);
/external/libxml2/
H A Dlegacy.c123 "SAX function processingInstruction",
246 } else if (!strcmp(name, "SAX function processingInstruction")) {
248 ctxt->sax->processingInstruction;
364 } else if (!strcmp(name, "SAX function processingInstruction")) {
365 ctxt->sax->processingInstruction =
1207 * processingInstruction:
1216 processingInstruction(void *ctx, const xmlChar * target, function
1219 DEPRECATED("processingInstruction")
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A DSAX2DTM.java2125 * @see org.xml.sax.ContentHandler#processingInstruction
2127 public void processingInstruction(String target, String data) method in class:SAX2DTM
2131 System.out.println("processingInstruction: target: " + target +", data: "+data);
2155 * @see org.xml.sax.ContentHandler#processingInstruction
H A DSAX2DTM2.java2440 * Override the processingInstruction() interface in SAX2DTM2.
2442 * %OPT% This one is different from SAX2DTM.processingInstruction()
2453 * @see org.xml.sax.ContentHandler#processingInstruction
2455 public void processingInstruction(String target, String data) method in class:SAX2DTM2
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserLibxml2.cpp265 parser->processingInstruction(target, data);
960 void XMLDocumentParser::processingInstruction(const xmlChar* target, const xmlChar* data) function in class:WebCore::XMLDocumentParser
1144 getParser(closure)->processingInstruction(target, data);
1299 sax.processingInstruction = processingInstructionHandler;
H A Dxml_expat_tokenizer.cpp205 tokenizer->processingInstruction(target, data);
576 void XMLTokenizer::processingInstruction(const XML_Char *target, const XML_Char *data) function in class:WebCore::XMLTokenizer
681 tokenizer->processingInstruction(target, data);

Completed in 1883 milliseconds

12