Searched defs:read (Results 76 - 100 of 539) sorted by relevance

1234567891011>>

/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dzipfileset.py62 def read(self, filename): member in class:ZipFileSet
64 return self._zip_file.read(filename)
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
H A DCAVLCReader.java21 package com.googlecode.mp4parser.h264.read;
106 public byte[] read(int payloadSize) throws IOException { method in class:CAVLCReader
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DScannerParseLargeFileBenchmarkTest.java58 public int read(char[] buf, int offset, int length) { method in class:ScannerParseLargeFileBenchmarkTest.MyReader
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_StringReader.java48 * longer read from it. Only the first invocation of this method has any
112 * @return the character read or -1 if end of reader.
118 public int read() throws IOException { method in class:Support_StringReader
133 * <code>buf</code>. Returns the number of characters actually read or -1
137 * character array to store the read characters
139 * offset in buf to store the read characters
141 * maximum number of characters to read
142 * @return the number of characters read or -1 if end of reader.
148 public int read(char buf[], int offset, int count) throws IOException { method in class:Support_StringReader
160 int read
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DLoggingSessionInputBuffer.java40 * Logs all data read to the wire LOG.
71 public int read(byte[] b, int off, int len) throws IOException { method in class:LoggingSessionInputBuffer
72 int l = this.in.read(b, off, len);
79 public int read() throws IOException { method in class:LoggingSessionInputBuffer
80 int l = this.in.read();
87 public int read(byte[] b) throws IOException { method in class:LoggingSessionInputBuffer
88 int l = this.in.read(b);
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthInputStream.java42 * gets called. Instead, it will read until the "end" of its chunking on
44 * requests, while not requiring the client to remember to read the entire
75 * The maximum number of bytes that can be read from the stream. Subsequent
76 * read operations will return -1.
95 * @param contentLength The maximum number of bytes that can be read from
96 * the stream. Subsequent read operations will return -1.
121 while (read(buffer) >= 0) {
125 // to read after closed!
136 * @see java.io.InputStream#read()
138 public int read() throw method in class:ContentLengthInputStream
162 public int read (byte[] b, int off, int len) throws java.io.IOException { method in class:ContentLengthInputStream
187 public int read(byte[] b) throws IOException { method in class:ContentLengthInputStream
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DIndefiniteLengthInputStream.java22 _b1 = in.read();
23 _b2 = in.read();
51 public int read(byte[] b, int off, int len) method in class:IndefiniteLengthInputStream
57 return super.read(b, off, len);
65 int numRead = _in.read(b, off + 2, len - 2);
76 _b1 = _in.read();
77 _b2 = _in.read();
88 public int read() method in class:IndefiniteLengthInputStream
96 int b = _in.read();
/external/emma/core/java12/com/vladium/util/
H A DByteArrayIStream.java45 public final int read () method in class:ByteArrayIStream
53 public final int read (final byte [] buf, final int offset, int length) method in class:ByteArrayIStream
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DStreamGobbler.java20 * read() operations are faster).
26 * If you do not call the StreamGobbler's <code>read()</code> method often enough
51 int avail = is.read(buff);
130 public int read() throws IOException method in class:StreamGobbler
181 public int read(byte[] b) throws IOException method in class:StreamGobbler
183 return read(b, 0, b.length);
201 public int read(byte[] b, int off, int len) throws IOException method in class:StreamGobbler
/external/guava/guava/src/com/google/common/io/
H A DCountingInputStream.java26 * An {@link InputStream} that counts the number of bytes read.
38 * Wraps another input stream, counting the number of bytes read.
46 /** Returns the number of bytes read. */
51 @Override public int read() throws IOException { method in class:CountingInputStream
52 int result = in.read();
59 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:CountingInputStream
60 int result = in.read(b, off, len);
H A DLimitInputStream.java27 * An InputStream that limits the number of bytes which can be read.
39 * Wraps another input stream, limiting the number of bytes which can be read.
42 * @param limit the maximum number of bytes to be read
61 @Override public int read() throws IOException { method in class:LimitInputStream
66 int result = in.read();
73 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:LimitInputStream
79 int result = in.read(b, off, len);
H A DMultiInputStream.java78 @Override public int read() throws IOException { method in class:MultiInputStream
82 int result = in.read();
85 return read();
90 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:MultiInputStream
94 int result = in.read(b, off, len);
97 return read(b, off, len);
110 if (read() == -1) {
H A DMultiReader.java51 @Override public int read(char cbuf[], int off, int len) throws IOException { method in class:MultiReader
55 int result = current.read(cbuf, off, len);
58 return read(cbuf, off, len);
/external/guava/guava-tests/test/com/google/common/io/
H A DCountingInputStreamTest.java38 assertEquals(0, counter.read());
43 assertEquals(10, counter.read(new byte[10]));
48 assertEquals(3, counter.read(new byte[10], 1, 3));
64 assertEquals(-1, counter.read());
69 assertEquals(20, counter.read(new byte[30]));
71 assertEquals(-1, counter.read(new byte[30]));
77 assertEquals(10, counter.read(new byte[10]));
80 counter.read();
110 public int read() throws IOException { method in class:CountingInputStreamTest.UnmarkableInputStream
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCapsuleCollisionShape.java98 public void read(JmeImporter im) throws IOException { method in class:CapsuleCollisionShape
99 super.read(im);
H A DSimplexCollisionShape.java62 public void read(JmeImporter im) throws IOException { method in class:SimplexCollisionShape
63 super.read(im);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DPose.java119 public void read(JmeImporter i) throws IOException { method in class:Pose
/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
H A DEmptyParticleInfluencer.java22 public void read(JmeImporter im) throws IOException { method in class:EmptyParticleInfluencer
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterMeshVertexShape.java149 public void read(JmeImporter im) throws IOException { method in class:EmitterMeshVertexShape
H A DEmitterPointShape.java93 public void read(JmeImporter im) throws IOException { method in class:EmitterPointShape
H A DEmitterSphereShape.java112 public void read(JmeImporter im) throws IOException { method in class:EmitterSphereShape
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DPointLight.java146 public void read(JmeImporter im) throws IOException { method in class:PointLight
147 super.read(im);
/external/jmonkeyengine/engine/src/core/com/jme3/material/
H A DMatParamTexture.java61 public void read(JmeImporter im) throws IOException { method in class:MatParamTexture
62 super.read(im);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DRectangle.java178 public void read(JmeImporter e) throws IOException { method in class:Rectangle
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DDome.java321 public void read(JmeImporter e) throws IOException { method in class:Dome
322 super.read(e);

Completed in 6004 milliseconds

1234567891011>>