Searched refs:ProcessingInstruction (Results 26 - 48 of 48) sorted by relevance

12

/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/stream/
H A DXMLEventFactory.java39 * @see javax.xml.stream.events.ProcessingInstruction
491 * @return a ProcessingInstruction event
493 public abstract ProcessingInstruction createProcessingInstruction(String target,
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSAX2DOM.java39 import org.w3c.dom.ProcessingInstruction;
255 ProcessingInstruction pi = _document.createProcessingInstruction(
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DDOMResultAugmentor.java54 import org.w3c.dom.ProcessingInstruction;
104 public void processingInstruction(ProcessingInstruction node)
H A DDOMResultBuilder.java63 import org.w3c.dom.ProcessingInstruction;
195 public void processingInstruction(ProcessingInstruction node)
197 /** Create new ProcessingInstruction node for the target. */
H A DDOMValidatorHelper.java59 import org.w3c.dom.ProcessingInstruction;
308 * Send the ProcessingInstruction node directly to the result builder.
311 fDOMValidatorHandler.processingInstruction((ProcessingInstruction) node);
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/xml/internal/stream/events/
H A DXMLEventFactoryImpl.java35 import javax.xml.stream.events.ProcessingInstruction;
166 public ProcessingInstruction createProcessingInstruction(String target, String data) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DStAXSchemaParser.java34 import javax.xml.stream.events.ProcessingInstruction;
155 ProcessingInstruction pi = (ProcessingInstruction)currentEvent;
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/staxex/util/
H A DDOMStreamReader.java33 import org.w3c.dom.ProcessingInstruction;
603 return ((ProcessingInstruction) _current).getData();
610 return ((ProcessingInstruction) _current).getTarget();
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/streaming/
H A DDOMStreamReader.java39 import org.w3c.dom.ProcessingInstruction;
611 return ((ProcessingInstruction) _current).getData();
618 return ((ProcessingInstruction) _current).getTarget();
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/stax/factory/
H A DStAXEventFactory.java330 * @return a ProcessingInstruction event
332 public ProcessingInstruction createProcessingInstruction(String target, String data) {
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizerBase.java53 import org.w3c.dom.ProcessingInstruction;
277 outputPItoWriter((ProcessingInstruction) currentNode, writer, documentLevel);
432 outputPItoWriter((ProcessingInstruction) currentNode, writer, documentLevel);
750 ProcessingInstruction currentPI, OutputStream writer, int position
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/dom3/
H A DDOM3TreeWalker.java49 import org.w3c.dom.ProcessingInstruction;
411 serializePI((ProcessingInstruction) node);
871 * Serializes an ProcessingInstruction Node.
873 * @param node The ProcessingInstruction Node to serialize
875 protected void serializePI(ProcessingInstruction node)
877 ProcessingInstruction pi = node;
1521 protected void isPIWellFormed(ProcessingInstruction node) {
1527 new Object[] { "ProcessingInstruction", node.getTarget()});
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/
H A DUnImplNode.java43 import org.w3c.dom.ProcessingInstruction;
899 public ProcessingInstruction createProcessingInstruction(
1799 * or a a <code>ProcessingInstruction</code>, this attribute represents
1805 * only be on Document, Element, ProcessingInstruction, Entity, and
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPDocumentImpl.java57 import org.w3c.dom.ProcessingInstruction;
177 public ProcessingInstruction createProcessingInstruction(
H A DSOAPPartImpl.java54 import org.w3c.dom.ProcessingInstruction;
485 public ProcessingInstruction createProcessingInstruction(
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java57 import org.w3c.dom.ProcessingInstruction;
993 ProcessingInstruction pinode = (ProcessingInstruction) node;
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMNodeProxy.java47 import org.w3c.dom.ProcessingInstruction;
69 ProcessingInstruction, Comment, DocumentFragment
739 public final ProcessingInstruction createProcessingInstruction(
2145 * or a a <code>ProcessingInstruction</code>, this attribute represents
2151 * only be on Document, Element, ProcessingInstruction, Entity, and
/openjdk9/jaxp/test/javax/xml/jaxp/unittest/dom/
H A DDOMConfigurationTest.java51 import org.w3c.dom.ProcessingInstruction;
196 ProcessingInstruction pi1 = doc.createProcessingInstruction("target1", "data1");
197 ProcessingInstruction pi2 = doc.createProcessingInstruction("target2", "data2");
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DLiteralElement.java471 || child instanceof ProcessingInstruction)
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXMLUtils.java44 import org.w3c.dom.ProcessingInstruction;
864 return ((ProcessingInstruction) xpathnode).getNodeValue();
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java74 import org.w3c.dom.ProcessingInstruction;
651 ProcessingInstruction pinode = (ProcessingInstruction)node ;
H A DCoreDocumentImpl.java53 import org.w3c.dom.ProcessingInstruction;
654 * Factory method; creates a ProcessingInstruction having this Document
666 public ProcessingInstruction createProcessingInstruction(String target,
676 } // createProcessingInstruction(String,String):ProcessingInstruction
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/parsers/
H A DAbstractDOMParser.java72 import org.w3c.dom.ProcessingInstruction;
699 ProcessingInstruction pi =
1685 * or for the ProcessingInstruction (by setting a baseURI field)
1735 * or for the ProcessingInstruction (by setting a baseURI field)

Completed in 274 milliseconds

12