Searched defs:in (Results 251 - 275 of 640) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/xml/
H A DSAXParseable.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
30 * in the Software without restriction, including without limitation the rights
35 * The above copyright notice and this permission notice shall be included in
66 * RELAX NG schema in the XML syntax.
70 private final InputSource in; field in class:SAXParseable
75 public SAXParseable(InputSource in, ErrorHandler eh, XMLReaderCreator xrc) { argument
78 this.in = in;
81 SAXParseable(InputSource in, ErrorHandler eh) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DMimeCodec.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
176 public void decode(InputStream in, String contentType, Packet packet) throws IOException { argument
177 MimeMultipartParser parser = new MimeMultipartParser(in, contentType, binding.getFeature(StreamingAttachmentFeature.class));
181 public void decode(ReadableByteChannel in, String contentType, Packet packet) { argument
H A DStreamSOAP12Codec.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
80 public void decode(InputStream in, String contentType, Packet packet, AttachmentSet att ) throws IOException { argument
83 super.decode(in,contentType,packet,att);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLCodec.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
88 public void decode(InputStream in, String contentType, Packet packet) throws IOException { argument
89 Message message = XMLMessage.create(contentType, in, binding);
93 public void decode(ReadableByteChannel in, String contentType, Packet packet) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DMarshallerBridge.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
102 public Object unmarshal(Unmarshaller u, XMLStreamReader in) { argument
106 public Object unmarshal(Unmarshaller u, Source in) { argument
110 public Object unmarshal(Unmarshaller u, InputStream in) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/exception/
H A DJAXWSExceptionBase.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
86 * @serialData Default fields, followed by information in Localizable which comprises of.
115 private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { argument
117 in.defaultReadObject();
119 String resourceBundleName = (String) in.readObject();
120 String key = (String) in.readObject();
121 int len = in.readInt();
127 args[i] = in
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamReaderToXMLStreamWriter.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
48 protected XMLStreamReader in; field in class:XMLStreamReaderToXMLStreamWriter
60 public void bridge(XMLStreamReader in, XMLStreamWriter out) throws XMLStreamException { argument
61 assert in!=null && out!=null;
62 this.in = in;
71 int event = in.getEventType();
74 while( !in
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestShortBuffer.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
54 private byte[] in = null; field in class:TestShortBuffer
63 private void init(byte[] in, byte[] expected) { argument
64 this.in = (byte[]) in.clone();
119 stored = ci.update(in, 0, in.length, SHORTBUFFER);
124 stored = ci.update(in, 0, in
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DFinalLocalsTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
59 System.out.print("in FinalLocalsTarg:");
85 * and return those values in a TreeSet.
87 private TreeSet buildSet(String in) { argument
89 StringTokenizer tt = new StringTokenizer(in, ",");
93 failure ("Duplicate entry \"" + ss + "\" in string: " +
94 in + " is not allowed");
187 * give results listed in different order. That's OK.
/openjdk7/jdk/test/java/io/Serializable/InvalidClassException/noargctor/
H A DDefaultPackage.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
89 public void readExternal(ObjectInput in) argument
100 public void readExternal(ObjectInput in) argument
111 public void readExternal(ObjectInput in) argument
124 public void readExternal(ObjectInput in) argument
143 ObjectInputStream in = new ObjectInputStream(is);
144 /* (DefaultPublicSerializable) */ in.readObject();
145 /* (DefaultProtectedSerializable) */ in.readObject();
146 /* (DefaultAcccessSerializable) */ in
[all...]
/openjdk7/jdk/test/java/io/Serializable/InvalidClassException/noargctor/Serialize/
H A DSubclassAcrossPackage.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
105 public void readExternal(ObjectInput in) argument
116 public void readExternal(ObjectInput in) argument
127 public void readExternal(ObjectInput in) argument
140 public void readExternal(ObjectInput in) argument
160 ObjectInputStream in = new ObjectInputStream(is);
161 /* (PublicSerializable)*/ in.readObject();
162 /* (ProtectedSerializable) */ in.readObject();
163 /* (SamePackageSerializable) */ in
[all...]
/openjdk7/jdk/test/java/io/Serializable/classDescHooks/
H A DExternLoopback.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
54 LoopbackInputStream(InputStream in, LinkedList descs) throws IOException { argument
55 super(in);
86 public void readExternal(ObjectInput in) argument
89 in.readBoolean();
90 a = (String) in.readObject();
91 b = (String) in.readObject();
92 c = (String) in.readObject();
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DStreamsSurviveDestroy.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
39 InputStream in; field in class:StreamsSurviveDestroy.Copier
46 Copier(String name, InputStream in, OutputStream out, argument
50 this.in = in;
68 int n = in.read(buf);
/openjdk7/jdk/test/java/net/Authenticator/
H A DBasicTest4.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
60 static boolean checkFor (InputStream in, char[] seq) throws IOException { argument
65 int c = in.read();
/openjdk7/jdk/test/java/net/Socket/
H A DDeadlockTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
70 ObjectInputStream in; field in class:ServerThread
119 in = new ObjectInputStream(sock.getInputStream());
123 Message msg = (Message) in.readObject();
142 ObjectInputStream in; field in class:ClientThread
167 in = new ObjectInputStream(sock.getInputStream());
173 Message msg = (Message) in.readObject();
/openjdk7/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
138 public void readExternal(ObjectInput in) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DTraffic.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
29 private InputStream in; field in class:Traffic
34 // in is compared with what it's expected to be.
42 Traffic (InputStream in, OutputStream out) argument
44 this.in = in;
106 // coming along. (Big blocks in hardware can be fast!!)
138 in.read (buf);
270 value = in
[all...]
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/ProtocolVersion/
H A DHttpsProtocols.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
45 * Should we run the client or server in a separate thread?
102 BufferedReader in =
107 readRequest(in);
125 private static void readRequest(BufferedReader in) argument
129 line = in.readLine();
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/NewImpl/
H A DComHTTPSConnection.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
26 // system properties in samevm/agentvm mode.
57 * Should we run the client or server in a separate thread?
94 private static String getPath(DataInputStream in) argument
97 String line = in.readLine();
110 line = in.readLine();
162 DataInputStream in =
164 String path = getPath(in);
167 // send bytecodes in respons
[all...]
H A DJavaxHTTPSConnection.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
26 // system properties in samevm/agentvm mode.
55 * Should we run the client or server in a separate thread?
92 private static String getPath(DataInputStream in) argument
95 String line = in.readLine();
108 line = in.readLine();
160 DataInputStream in =
162 String path = getPath(in);
165 // send bytecodes in respons
[all...]
/openjdk7/jdk/test/sun/text/resources/
H A DLocaleDataTest.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
62 * appears in all copies. Please refer to the file "copyright.html"
76 * data to check. That file is in .properties file format: a series of key/value
78 * by = signs. The keys are similar in syntax to a Unix pathname, with keys at
79 * successive levels of containment in the resource-data hierarchy separated by
80 * slashes. The file is in ISO 8859-1 encoding, with control characters and
95 * You can use language tag with '-' in locale field like this:<pre>
112 * neither, the program reads its input from a file called LocaleData in the same
113 * directory the program itself resides in
200 doTest(BufferedReader in, PrintWriter out, boolean writeNewFile) argument
358 EscapeReader(Reader in) argument
[all...]
/openjdk7/jdk/test/sun/tools/jhat/
H A DHatRun.java9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
42 private BufferedInputStream in; field in class:MyInputStream
46 MyInputStream(String name, InputStream in) { argument
48 this.in = new BufferedInputStream(in);
69 /* Runs as a separate thread capturing all output in a StringBuffer */
74 int n = in.read(b);
135 /* Save process output in StringBuffers */
179 /* Array of strings to be passed in fo
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/
H A DServer.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
48 private final BufferedReader in; field in class:Server
75 // cache jar files in the standard file manager. Use
80 private Server(BufferedReader in, OutputStream out, boolean isSocket) { argument
81 this.in = in;
85 private Server(BufferedReader in, OutputStream out) { argument
86 this(in, ou
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTool.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
62 public int run(InputStream in, OutputStream out, OutputStream err, String... arguments) { argument
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.c8 * by Oracle in the LICENSE file that accompanied this code.
10 * This code is distributed in the hope that it will be useful, but WITHOUT
13 * version 2 for more details (a copy is included in the LICENSE file that
27 * For conditions of distribution and use, see copyright notice in zlib.h
62 inflate execution time is spent in this routine.
76 BAD -- error in block data
96 unsigned char FAR *in; /* local strm->next_in */ local
97 unsigned char FAR *last; /* while in < last, enough input available */
105 unsigned whave; /* valid bytes in the window */
123 in
[all...]

Completed in 84 milliseconds

<<11121314151617181920>>