Searched defs:in (Results 76 - 100 of 640) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DMLetObjectInputStream.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 public MLetObjectInputStream(InputStream in, MLet loader) argument
51 super(in);
H A DMLetParser.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 skipSpace(Reader in) throws IOException { argument
90 c = in.read();
97 public String scanIdentifier(Reader in) throws IOException { argument
104 c = in.read();
114 public Map<String,String> scanTag(Reader in) throws IOException { argument
116 skipSpace(in);
119 throw new IOException("Missing '>' in ta
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCodingMethod.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
38 public void readArrayFrom(InputStream in, int[] a, int start, int end) throws IOException; argument
41 // how to express me in a band header?
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftCubicResampler.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
38 public void interpolate(float[] in, float[] in_offset, float in_end, argument
50 float y0 = in[iix - 1];
51 float y1 = in[iix];
52 float y2 = in[iix + 1];
53 float y3 = in[iix + 2];
67 float y0 = in[iix - 1];
68 float y1 = in[ii
[all...]
H A DSoftLinearResampler.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
38 public void interpolate(float[] in, float[] in_offset, float in_end, argument
51 float i = in[iix];
52 out[ox++] = i + (in[iix + 1] - i) * fix;
59 float i = in[iix];
60 out[ox++] = i + (in[iix + 1] - i) * fix;
H A DSoftLinearResampler2.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
40 public void interpolate(float[] in, float[] in_offset, float in_end, argument
55 // it resulted in no drift between p_ix and ix.
81 float i = in[iix];
82 out[ox++] = i + (in[iix + 1] - i) * fix;
95 float i = in[iix];
96 out[ox++] = i + (in[iix + 1] - i) * fix;
H A DSoftPointResampler.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
38 public void interpolate(float[] in, float[] in_offset, float in_end, argument
48 out[ox++] = in[(int) ix];
53 out[ox++] = in[(int) ix];
/openjdk7/jdk/src/share/classes/com/sun/tools/example/trace/
H A DStreamRedirectThread.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 * input validation and proper error handling, might not be present in
47 private final Reader in; field in class:StreamRedirectThread
55 * @param in Stream to copy from
58 StreamRedirectThread(String name, InputStream in, OutputStream out) { argument
60 this.in = new InputStreamReader(in);
73 while ((count = in
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DPositionDataInputStream.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
40 * (in effect 'position' in stream) so far.
44 public PositionDataInputStream(InputStream in) { argument
45 super(in instanceof PositionInputStream?
46 in : new PositionInputStream(in));
62 return ((PositionInputStream)in)
[all...]
H A DReader.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
47 protected PositionDataInputStream in; field in class:Reader
49 protected Reader(PositionDataInputStream in) { argument
50 this.in = in;
84 PositionDataInputStream in = new PositionDataInputStream(
87 int i = in.readInt();
90 = new HprofReader(heapFile, in, dumpNumbe
[all...]
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DPublicMapping.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 void load(InputStream in) throws IOException { argument
63 InputStreamReader reader = new InputStreamReader(in);
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DCopiedFile.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
41 final InputStream in = new FileInputStream(sourceFile);
43 copy(in, out);
48 private static void copy(final InputStream in, final PrintStream out) throws IOException { argument
50 while (-1 != (bit = in.read())) {
/openjdk7/jdk/src/share/back/
H A DClassLoaderReferenceImpl.c9 * 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
32 visibleClasses(PacketInputStream *in, PacketOutputStream *out) argument
37 loader = inStream_readClassLoaderRef(env, in);
38 if (inStream_error(in)) {
H A DThreadGroupReferenceImpl.c9 * 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
32 name(PacketInputStream *in, PacketOutputStream *out) argument
39 group = inStream_readThreadGroupRef(env, in);
40 if (inStream_error(in)) {
60 parent(PacketInputStream *in, PacketOutputStream *out) argument
67 group = inStream_readThreadGroupRef(env, in);
68 if (inStream_error(in)) {
88 children(PacketInputStream *in, PacketOutputStrea argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DISO10126Padding.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
31 * This class implements padding as specified in the W3 XML ENC standard.
52 * @param in the input buffer with the data to pad
53 * @param off the offset in <code>in</code> where the padding bytes
57 * @exception ShortBufferException if <code>in</code> is too small to hold
60 public void padWithLen(byte[] in, int off, int len) argument
63 if (in
91 unpad(byte[] in, int off, int len) argument
[all...]
H A DPKCS5Padding.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
31 * This class implements padding as specified in the PKCS#5 standard.
52 * @param in the input buffer with the data to pad
53 * @param off the offset in <code>in</code> where the padding bytes
57 * @exception ShortBufferException if <code>in</code> is too small to hold
60 public void padWithLen(byte[] in, int off, int len) argument
63 if (in
90 unpad(byte[] in, int off, int len) argument
[all...]
H A DPadding.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
34 * the one described in PKCS#5.
51 * @param in the input buffer with the data to pad
52 * @param the offset in <code>in</code> where the padding bytes
56 * @exception ShortBufferException if <code>in</code> is too small to hold
59 void padWithLen(byte[] in, int off, int len) throws ShortBufferException; argument
67 * @param in th
74 unpad(byte[] in, int off, int len) argument
[all...]
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6357214.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 public String getString(String in) { argument
40 if (in.equals("id"))
42 if (in.equals("contentKey"))
47 public int getInt(String in) { argument
48 if (in.equals("processingComplete"))
53 public byte[] getBytes(String in) { argument
55 if (in.equals("content")) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DStAXExConnector.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
45 private final XMLStreamReaderEx in; field in class:StAXExConnector
47 public StAXExConnector(XMLStreamReaderEx in, XmlVisitor visitor) { argument
48 super(in,visitor);
49 this.in = in;
55 CharSequence pcdata = in.getPCDATA();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DExternalEntity.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
40 public ExternalEntity(InputEntity in) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DLineInputStream.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
53 public LineInputStream(InputStream in) { argument
54 super(in);
69 InputStream in = this.in;
79 while ((c1 = in.read()) != -1) {
84 int c2 = in.read();
86 c2 = in
[all...]
H A DQDecoderStream.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
38 * This class implements a Q Decoder as defined in RFC 2047
48 * @param in the input stream
50 public QDecoderStream(InputStream in) { argument
51 super(in);
56 * is returned as an <code>int</code> in the range <code>0</code>
67 int c = in.read();
73 ba[0] = (byte)in
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/
H A DSOAPMessageFactory1_1Impl.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
53 public SOAPMessage createMessage(MimeHeaders headers, InputStream in) argument
59 MessageImpl msg = new Message1_1Impl(headers, in);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DSOAPMessageFactory1_2Impl.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
53 public SOAPMessage createMessage(MimeHeaders headers, InputStream in) argument
59 MessageImpl msg = new Message1_2Impl(headers, in);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DJAXMStreamSource.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
38 InputStream in; field in class:JAXMStreamSource
46 in = is;
48 this.in = (ByteInputStream) is;
52 this.in = bout.newInputStream();
73 return in;
81 if (in != null)
82 in
[all...]

Completed in 78 milliseconds

1234567891011>>