/libcore/luni/src/test/java/libcore/xml/ |
SaxTest.java | 260 @Override public void processingInstruction(String target, String data) {
|
NormalizeTest.java | 31 import org.w3c.dom.ProcessingInstruction; 533 ProcessingInstruction pi = document.createProcessingInstruction("foo", "");
|
/external/webkit/Source/WebCore/dom/ |
XMLDocumentParserQt.cpp | 44 #include "ProcessingInstruction.h" 441 case QXmlStreamReader::ProcessingInstruction: { 632 RefPtr<ProcessingInstruction> pi = document()->createProcessingInstruction(
|
XMLDocumentParser.cpp | 43 #include "ProcessingInstruction.h"
|
Document.h | 105 class ProcessingInstruction; 322 PassRefPtr<ProcessingInstruction> createProcessingInstruction(const String& target, const String& data, ExceptionCode&); [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
ParserAdapter.java | 682 * @see org.xml.sax.DocumentHandler#processingInstruction 684 public void processingInstruction (String target, String data) 688 contentHandler.processingInstruction(target, data);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToUnknownStream.java | 851 * @see org.xml.sax.ContentHandler#processingInstruction(String, String) 853 public void processingInstruction(String target, String data) 861 m_handler.processingInstruction(target, data); [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
StylesheetHandler.java | 749 * @see org.xml.sax.ContentHandler#processingInstruction 754 public void processingInstruction(String target, String data) 812 getCurrentProcessor().processingInstruction(this, target, data); 824 * @see org.xml.sax.ContentHandler#processingInstruction [all...] |
XSLTElementProcessor.java | 232 public void processingInstruction(
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerIdentityImpl.java | [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
UnImplNode.java | 39 import org.w3c.dom.ProcessingInstruction; 895 public ProcessingInstruction createProcessingInstruction( [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSDOMBinding.cpp | 51 #include "ProcessingInstruction.h"
|
/libcore/luni/src/main/java/org/w3c/dom/ |
Node.java | 118 * <td valign='top' rowspan='1' colspan='1'><code>ProcessingInstruction</code></td> 120 * as <code>ProcessingInstruction.target</code></td> 122 * <code>ProcessingInstruction.data</code></td> 163 * The node is a <code>ProcessingInstruction</code>. [all...] |
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...] |
/libcore/luni/src/main/java/org/xml/sax/ |
DocumentHandler.java | 228 public abstract void processingInstruction (String target, String data)
|
/libcore/xml/src/main/java/org/kxml2/kdom/ |
Node.java | 354 writer.processingInstruction((String) child);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
IncrementalSAXSource_Filter.java | 276 public void processingInstruction(java.lang.String target, java.lang.String data) 285 clientContentHandler.processingInstruction(target,data);
|
DTMNodeProxy.java | 42 import org.w3c.dom.ProcessingInstruction; 65 ProcessingInstruction, Comment, DocumentFragment 701 public final ProcessingInstruction createProcessingInstruction( [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
DOM2DTMdefaultNamespaceDeclarationNode.java | 659 * or a a <code>ProcessingInstruction</code>, this attribute represents 665 * only be on Document, Element, ProcessingInstruction, Entity, and
|
/external/expat/xmlwf/ |
xmlwf.c | 235 processingInstruction(void *userData, const XML_Char *target, 840 XML_SetProcessingInstructionHandler(parser, processingInstruction);
|
/external/webkit/Source/WebCore/xml/ |
XPathFunctions.cpp | 36 #include "ProcessingInstruction.h" 371 return static_cast<ProcessingInstruction*>(node)->target();
|
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatParser.java | 218 /*package*/ void processingInstruction(String target, String data) 222 contentHandler.processingInstruction(target, data);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
NodeImpl.java | 32 import org.w3c.dom.ProcessingInstruction; 172 ((ProcessingInstruction) this).setData(nodeValue);
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
XMLWriter.java | 705 * @see org.xml.sax.ContentHandler#processingInstruction 707 public void processingInstruction (String target, String data) 718 super.processingInstruction(target, data); [all...] |
/libcore/luni/src/main/native/ |
org_apache_harmony_xml_ExpatParser.cpp | 811 static void processingInstruction(void* data, const char* target, const char* instructionData) { 987 XML_SetProcessingInstructionHandler(parser, processingInstruction); [all...] |