Searched defs:source (Results 251 - 275 of 587) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DTeeInputStream.java40 protected InputStream source; field in class:TeeInputStream
43 public TeeInputStream(InputStream source, OutputStream sink) { argument
46 this.source = source;
50 int result = source.read();
56 return source.available();
60 source.close();
64 source.mark(readlimit);
68 return source.markSupported();
72 int result = source
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DMemberSubmissionEndpointReference.java75 * @param source A source object containing valid XmlInfoset
78 * if the source does not contain a valid W3C WS-Addressing
80 * @throws WebServiceException if the <code>null</code> <code>source</code> value is given
82 public MemberSubmissionEndpointReference(@NotNull Source source) { argument
84 if (source == null)
89 MemberSubmissionEndpointReference epr = unmarshaller.unmarshal(source,MemberSubmissionEndpointReference.class).getValue();
118 * @return Source A source object containing the wsdl in the MemeberSubmissionEndpointReference, if present.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DSourceUtils.java26 package com.sun.xml.internal.ws.message.source;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DSOAPProviderArgumentBuilder.java84 protected Message getResponseMessage(Source source) { argument
85 return Messages.createUsingPayload(source, soapVersion);
103 protected Message getResponseMessage(Source source) { argument
104 return Messages.create(source, soapVersion);
H A DXMLProviderArgumentBuilder.java77 public Message getResponseMessage(Source source) { argument
78 return Messages.createUsingPayload(source, SOAPVersion.SOAP_11);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPPart.java246 * @param source the <code>javax.xml.transform.Source</code> object with the
249 * @exception SOAPException if there is a problem in setting the source
252 public abstract void setContent(Source source) throws SOAPException; argument
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSolarisEventPort.c60 (JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress, jint events)
63 if (port_associate((int)port, (int)source, object, (int)events, NULL) == 0) {
74 (JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress)
78 if (port_dissociate((int)port, (int)source, object) == 0) {
59 Java_sun_nio_ch_SolarisEventPort_port_1associate(JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress, jint events) argument
73 Java_sun_nio_ch_SolarisEventPort_port_1dissociate(JNIEnv* env, jclass clazz, jint port, jint source, jlong objectAddress) argument
/openjdk7/jdk/test/java/beans/PropertyChangeSupport/
H A DTestMethods.java49 Object source = new Object();
50 new TestMethods(source).firePropertyChange(new PropertyChangeEvent(source, NAME, null, null));
51 new TestMethods(source).firePropertyChange(NAME, null, null);
52 new TestMethods(source).firePropertyChange(NAME, 0, 1);
53 new TestMethods(source).firePropertyChange(NAME, true, false);
54 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, null, null);
55 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, 0, 1);
56 new TestMethods(source).fireIndexedPropertyChange(NAME, 0, true, false);
61 public TestMethods(Object source) { argument
[all...]
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java56 for (Source source : sources) {
57 if (source != null) {
58 list.add(source);
87 public Output getJavaFileForOutput(Location location, String name, Kind kind, FileObject source) { argument
/openjdk7/jdk/test/java/io/File/
H A DSymLinks.java99 * Creates a sym link source->target
101 static void mklink(File source, File target) throws IOException { argument
102 Files.createSymbolicLink(source.toPath(), target.toPath());
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTaskEvent.java26 package com.sun.source.util;
28 import com.sun.source.tree.CompilationUnitTree;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DParserFactory.java59 final Source source; field in class:ParserFactory
71 this.source = Source.instance(context);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractLog.java53 /** Re-assign source, returning previous setting.
56 JavaFileObject prev = (source == null ? null : source.getFile());
57 source = getSource(file);
72 /** Return the underlying diagnostic source
75 return source;
79 * source position.
84 report(diags.error(source, null, key, args));
88 * source position.
89 * @param pos The source positio
257 protected DiagnosticSource source; field in class:AbstractLog
[all...]
/openjdk7/langtools/test/tools/javac/6863465/
H A DTestCircularClassfile.java41 import com.sun.source.util.JavacTask;
63 String source; field in class:TestCircularClassfile.JavaSource
67 source = sourceStub.replace("#C", clazz.name).replace("#S", sup.name);
72 return source;
108 throw new AssertionError(newSource.source);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUCharacterIterator.java30 * The original version of this source code and documentation is copyrighted *
77 * source string.
78 * @param source a string
83 public static final UCharacterIterator getInstance(String source){ argument
84 return new ReplaceableUCharacterIterator(source);
90 * source StringBuffer.
91 * @param source an string buffer of UTF-16 code units
96 public static final UCharacterIterator getInstance(StringBuffer source){ argument
97 return new ReplaceableUCharacterIterator(source);
103 * @param source
108 getInstance(CharacterIterator source) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXOperations.java214 String type, Object source, Object handback) {
215 Notification n = new Notification(type, source, 0);
213 fireChangedNotification( String type, Object source, Object handback) argument
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DWritingInterruptionTest.java164 public void imageStarted(ImageWriter source, argument
167 public void imageProgress(ImageWriter source, argument
176 public void imageComplete(ImageWriter source) {}; argument
178 public void thumbnailStarted(ImageWriter source, argument
182 public void thumbnailProgress(ImageWriter source, argument
185 public void thumbnailComplete(ImageWriter source) {}; argument
187 public void writeAborted(ImageWriter source) {}; argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DExtensionInfo.java222 * @param source version to compare to
224 * @return < 0 if source < version
225 * > 0 if source > version
226 * = 0 if source = version
228 private int compareExtensionVersion(String source, String target) argument
231 source = source.toLowerCase();
234 return strictCompareExtensionVersion(source, target);
243 * @param source version to compare to
245 * @return < 0 if source < versio
249 strictCompareExtensionVersion(String source, String target) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DMembershipKeyImpl.java44 private final InetAddress source; field in class:MembershipKeyImpl
52 // set of source addresses that are blocked
58 InetAddress source)
63 this.source = source;
77 InetAddress source,
82 super(ch, group, interf, source);
96 int source() { method in class:MembershipKeyImpl.Type4
112 InetAddress source,
117 super(ch, group, interf, source);
55 MembershipKeyImpl(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source) argument
74 Type4(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source, int groupAddress, int interfAddress, int sourceAddress) argument
109 Type6(MulticastChannel ch, InetAddress group, NetworkInterface interf, InetAddress source, byte[] groupAddress, int index, byte[] sourceAddress) argument
131 byte[] source() { method in class:MembershipKeyImpl.Type6
[all...]
/openjdk7/langtools/test/tools/javac/generics/
H A DOverrideBridge.java44 import com.sun.source.util.JavacTask;
76 String source; field in class:OverrideBridge.JavaSource
80 source = sourceStub.replace("#B", implB.impl).replace("#C", implC.impl).replace("#D", implD.impl);
85 return source;
108 JavaSource source = new JavaSource(implB, implC, implD);
110 Arrays.asList("-d", destPath), null, Arrays.asList(source));
/openjdk7/langtools/test/tools/javac/generics/diamond/6996914/
H A DT6996914a.java31 import com.sun.source.util.JavacTask;
77 String source; field in class:T6996914a.FooClass
82 source = sourceStub.replace("#P", pk.pkgDecl).replace("#M", ck.mod);
87 return source;
99 String source; field in class:T6996914a.ClientClass
103 source = sourceStub.replace("#I", pk.importDecl);
108 return source;
132 throw new AssertionError(msg + ": \n" + foo.source + "\n" + client.source);
/openjdk7/langtools/test/tools/javac/tree/
H A DT6993305.java34 import com.sun.source.tree.CompilationUnitTree;
35 import com.sun.source.tree.MethodTree;
36 import com.sun.source.util.JavacTask;
37 import com.sun.source.util.SourcePositions;
38 import com.sun.source.util.TreeScanner;
39 import com.sun.source.util.Trees;
86 String source; field in class:T6993305.TestScanner
90 source.substring(pos, Math.min(source.length(), pos + 10)));
98 source
[all...]
H A DTreePosRoundsTest.java40 import com.sun.source.tree.*;
41 import com.sun.source.util.*;
45 // processing, and on each round, it checks that source positions are
94 // Scan trees for elements, verifying source tree positions
101 "Cannot get source: " + ex, e);
137 source = sf.getCharContent(true).toString();
173 String found = source.substring(start, end);
202 String source; field in class:TreePosRoundsTest.TestTreeScanner
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCachedNodeListIterator.java47 public CachedNodeListIterator(DTMAxisIterator source) { argument
48 _source = source;
H A DCurrentNodeListIterator.java34 * nodes from a source iterator. For each node from the source, the boolean
37 * All nodes from the source are read into an array upon calling setStartNode()
53 * The source for this iterator.
63 * An integer array to store nodes from source iterator.
82 public CurrentNodeListIterator(DTMAxisIterator source, argument
87 this(source, !source.isReverse(), filter, currentNode, translet);
90 public CurrentNodeListIterator(DTMAxisIterator source, boolean docOrder, argument
95 _source = source;
[all...]

Completed in 100 milliseconds

<<11121314151617181920>>