Searched refs:Source (Results 51 - 75 of 326) sorted by relevance

1234567891011>>

/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/options/
H A DSourceLocation.java37 import com.sun.tools.sjavac.Source;
78 Map<String, Source> foundFiles,
85 Source.scanRoot(path.toFile(),
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DBug4892774.java30 import javax.xml.transform.Source;
55 * @summary Test identity transformer with all possible types of Source and Result combinations for doucment version and encoding information.
112 Source input = domUtil.prepareSource(this.getClass().getResourceAsStream(XML_FILE));
130 Source input = domUtil.prepareSource(this.getClass().getResourceAsStream(XML_FILE));
144 Source input = domUtil.prepareSource(this.getClass().getResourceAsStream(XML_FILE));
158 Source input = domUtil.prepareSource(this.getClass().getResourceAsStream(XML_FILE));
172 Source input = domUtil.prepareSource(this.getClass().getResourceAsStream(XML_FILE));
186 Source input = saxUtil.prepareSource(this.getClass().getResourceAsStream(XML_FILE));
200 Source input = saxUtil.prepareSource(this.getClass().getResourceAsStream(XML_FILE));
214 Source inpu
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DSource.java61 * Source objects track the origin of JavaScript entities.
64 public final class Source implements Loggable { class in inherits:Loggable
85 /** Source content */
98 private Source(final String name, final String base, final Data data) { method in class:Source
104 private static synchronized Source sourceFor(final String name, final String base, final URLData data) throws IOException {
106 final Source newSource = new Source(name, base, data);
107 final Source existingSource = CACHE.get(newSource);
128 private static class Cache extends WeakHashMap<Source, WeakReference<Source>> {
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DXSLTCSource.java25 import javax.xml.transform.Source;
41 public final class XSLTCSource implements Source {
44 private Source _source = null;
56 * Create a new XSLTC-specific source from a JAXP Source
58 public XSLTCSource(Source source)
64 * Implements javax.xml.transform.Source.setSystemId()
65 * Set the system identifier for this Source.
66 * This Source can get its input either directly from a file (in this case
69 * @param systemId The system Id for this Source
79 * Implements javax.xml.transform.Source
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/functional/javax/xml/validation/ptests/
H A DSchemaFactoryTest.java48 import javax.xml.transform.Source;
200 public void testNewSchemaWithValidSource(Source schema) throws SAXException, IOException {
212 public void testNewSchemaWithInvalidSource(Source schema) throws SAXException {
218 sf.newSchema((Source)null);
231 public void testNewSchemaWithValidSourceArray(Source schema1, Source schema2) throws SAXException, IOException {
232 validate(sf.newSchema(new Source[] { schema1, schema2 }));
245 public void testNewSchemaWithInvalidSourceArray(Source schema1, Source schema2) throws SAXException {
246 sf.newSchema(new Source[] { schema
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/validation/
H A DJaxpIssue49.java29 import javax.xml.transform.Source;
64 Source[] sources = new Source[] { new StreamSource(new FileInputStream(file), file) };
79 Source source = new StreamSource(getClass().getResourceAsStream("JaxpIssue49.xml"));
85 DOMSource toDOMSource(Source source) throws Exception {
H A DBug4997818.java28 import javax.xml.transform.Source;
76 schemaFactory.newSchema(new Source[] { source });
/openjdk10/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java44 compile(new Source(name, content));
53 public void compile(Source... sources) {
54 List<Source> list = new ArrayList<Source>();
56 for (Source source : sources) {
130 public static final class Source extends MemoryFileObject { class in class:MemoryClassLoader
133 Source(String name, String content) { method in class:MemoryClassLoader.Source
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/util/
H A DFastInfosetReflection.java29 import javax.xml.transform.Source;
177 public static boolean isFastInfosetSource(Source source) {
189 public static Source FastInfosetSource_new(InputStream is)
195 return (Source) fiFastInfosetSource_new.newInstance(new Object[] { is });
198 public static InputStream FastInfosetSource_getInputStream(Source source)
207 public static void FastInfosetSource_setInputStream(Source source,
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/parser/
H A DMexEntityResolver.java36 import javax.xml.transform.Source;
53 public MexEntityResolver(List<? extends Source> wsdls) throws IOException {
55 for (Source source : wsdls) {
64 //TODO: can we do anything if the given mex Source has no systemId?
/openjdk10/jdk/test/javax/xml/jaxp/transform/8062923/
H A DXslSubstringTest.java35 import javax.xml.transform.Source;
87 Source src = new StreamSource(new StringReader(xml));
88 Source xslsrc = new StreamSource(new StringReader(xslPre + xsl + xslPost));
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/parser/
H A DParserFactory.java30 import com.sun.tools.javac.code.Source;
63 final Source source;
77 this.source = Source.instance(context);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DToken.java30 import jdk.nashorn.internal.runtime.Source;
142 public static String toString(final Source source, final long token, final boolean verbose) {
169 public static String toString(final Source source, final long token) {
/openjdk10/jaxws/src/java.xml.bind/share/classes/javax/xml/bind/annotation/
H A DXmlMimeType.java35 import javax.xml.transform.Source;
42 * {@link java.awt.Image} or {@link Source} that are bound to base64-encoded binary in XML.
H A DXmlInlineBinaryData.java35 import javax.xml.transform.Source;
45 * this annotation disables datatypes such as {@link java.awt.Image} or {@link Source}
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/
H A DLazyEnvelopeSource.java39 public interface LazyEnvelopeSource extends javax.xml.transform.Source {
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/validation/
H A DSchemaFactory.java31 import javax.xml.transform.Source;
443 * {@link #newSchema(Source)} or {@link #newSchema(File)}
444 * or {@link #newSchema(URL)} or {@link #newSchema(Source[])} method.
450 * {@link javax.xml.validation.Validator#validate(Source)} or
451 * {@link javax.xml.validation.Validator#validate(Source, Result)} method.
458 * {@link javax.xml.validation.Validator#validate(Source)} or
459 * {@link javax.xml.validation.Validator#validate(Source, Result)} method.
466 * {@link #newSchema(Source)} or {@link #newSchema(File)}
467 * or {@link #newSchema(URL)} or {@link #newSchema(Source[])} method.
660 * <p>This is a convenience method for {@link #newSchema(Source[] schema
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/
H A DSourceTreeManager.java26 import javax.xml.transform.Source;
114 * @return a Source that can be used to process the resource.
119 public Source resolveURI(
124 Source source = null;
168 * @param source The Source object to cache.
170 public void putDocumentInCache(int n, Source source)
191 * Given a Source object, find the node associated with it.
193 * @param source The Source object to act as the key.
195 * @return The node that is associated with the Source, or null if not found.
197 public int getNode(Source sourc
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/client/dispatch/
H A DRESTSourceDispatch.java42 import javax.xml.transform.Source;
49 * {@link Dispatch} implementation for {@link Source} and XML/HTTP binding.
55 final class RESTSourceDispatch extends DispatchImpl<Source> {
68 Source toReturnValue(Packet response) {
78 Packet createPacket(Source msg) {
H A DSOAPSourceDispatch.java40 import javax.xml.transform.Source;
56 final class SOAPSourceDispatch extends DispatchImpl<Source> {
69 Source toReturnValue(Packet response) {
83 Packet createPacket(Source msg) {
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/databinding/
H A DDatabindingConfig.java34 import javax.xml.transform.Source;
63 protected Source wsdlSource;
131 public Source getWsdlSource() {
134 public void setWsdlSource(Source wsdlSource) {
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Data/test/unit/src/com/sun/hotspot/igv/data/
H A DSourceTest.java58 * Test of getSourceNodes method, of class Source.
62 final Source s = new Source();
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/oracle/webservices/internal/api/databinding/
H A DDatabinding.java32 import javax.xml.transform.Source;
182 * Sets the WSDL Source where the WSDL can be read from
188 Builder wsdlSource(Source wsdlSource);
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/transform/stax/
H A DStAXSource.java33 import javax.xml.transform.Source;
36 * <p>Acts as a holder for an XML {@link Source} in the
40 * a <code>Source</code>, e.g. {@link javax.xml.transform.Transformer},
42 * <code>Source</code> as input.
57 public class StAXSource implements Source {
61 * the Transformer supports Source input of this type.
/openjdk10/jaxp/test/javax/xml/jaxp/libs/test/astro/
H A DDOMFilterFactoryImpl.java34 import javax.xml.transform.Source;
49 protected Source getSource(String xslFileName) throws SAXException, ParserConfigurationException, IOException {

Completed in 216 milliseconds

1234567891011>>