/external/webkit/Source/WebCore/manual-tests/resources/multiFileResources/ |
post-echo-and-notify-done.cgi | 6 read(STDIN, $request, $ENV{'CONTENT_LENGTH'})
|
/frameworks/base/core/java/android/app/backup/ |
BackupDataInput.java | 102 // read successfully 119 * @throws IllegalStateException if the next record header has not yet been read 125 throw new IllegalStateException("Entity header not read"); 134 * @throws IllegalStateException if the next record header has not yet been read 140 throw new IllegalStateException("Entity header not read"); 145 * Read a record's raw data from the restore stream. The record's header must first 148 * must be read in a single call. Once all of the raw data for the current entity 149 * has been read, further calls to this method will simply return zero. 153 * when read from the stream 154 * @param size The number of bytes to read in this pas [all...] |
/frameworks/base/opengl/java/android/opengl/ |
package.html | 5 <p>For more information about how to use OpenGL, read the
|
/libcore/luni/src/main/java/java/io/ |
SequenceInputStream.java | 42 * {@code s1} and {@code s2} as the sequence of streams to read from. 124 * an integer in the range from 0 to 255. It tries to read from the current 126 * the next one. Blocks until one byte has been read, the end of the last 129 * @return the byte read or -1 if either the end of the last stream in the 137 public int read() throws IOException { method in class:SequenceInputStream 139 int result = in.read(); 151 * Blocks only until at least 1 byte has been read, the end of the stream 155 * To do this it will read only as many bytes as a call to read on the 157 * requested by {@code count}, it will not retry to read more on its ow 184 public int read(byte[] buffer, int offset, int count) throws IOException { method in class:SequenceInputStream [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
OldStringBufferInputStreamTest.java | 28 // Test for method int java.io.StringBufferInputStream.read() 31 sbis.read(buf, 0, -1); 37 sbis.read(buf, -1, 1); 43 sbis.read(buf, 10, 1);
|
OldAndroidPushbackReaderTest.java | 37 Assert.assertEquals("PUSHAbCdEfGhIjKlMnOpQrStUvWxYz", read(a)); 45 Assert.assertEquals("XAbCdEfGhI", read(b, 10)); 58 public static String read(Reader a) throws IOException { method in class:OldAndroidPushbackReaderTest 62 r = a.read(); 69 public static String read(Reader a, int x) throws IOException { method in class:OldAndroidPushbackReaderTest 71 int len = a.read(b, 0, x); 83 r = a.read();
|
OldFilterInputStreamTest.java | 77 is.read(); 78 fail("Test 1: Read from closed stream succeeded."); 102 is.read(buf1, 0, bufSize); 104 is.read(buf1, 0, bufSize); 110 is.read(buf2, 0, bufSize); 119 is.read(buf1, 0, bufSize); 121 is.read(buf1, 0, bufSize); 123 is.read(buf2, 0, bufSize); 145 int c = is.read(); 146 assertEquals("Test 1: Read returned incorrect char;" [all...] |
/packages/apps/Email/tests/src/com/android/email/ |
MessageListContextTests.java | 35 MessageListContext read = MessageListContext.CREATOR.createFromParcel(parcel); local 36 assertEquals(original, read); 50 MessageListContext read = MessageListContext.CREATOR.createFromParcel(parcel); local 51 assertEquals(original, read);
|
/sdk/testapps/ |
README.txt | 5 Each project represents a different test case. For more information, read
|
/external/guava/src/com/google/common/io/ |
CountingInputStream.java | 24 * An {@link InputStream} that counts the number of bytes read. 35 * Wraps another input stream, counting the number of bytes read. 43 /** Returns the number of bytes read. */ 48 @Override public int read() throws IOException { method in class:CountingInputStream 49 int result = in.read(); 56 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:CountingInputStream 57 int result = in.read(b, off, len);
|
LimitInputStream.java | 26 * An InputStream that limits the number of bytes which can be read. 37 * Wraps another input stream, limiting the number of bytes which can be read. 40 * @param limit the maximum number of bytes to be read 59 @Override public int read() throws IOException { method in class:LimitInputStream 64 int result = in.read(); 71 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:LimitInputStream 77 int result = in.read(b, off, len);
|
MultiInputStream.java | 78 @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) {
|
/external/v8/test/mjsunit/ |
override-read-only-property.js | 29 // allowed to override read-only properties, not even if the read-only 33 // of read-only properties in prototype chains. 41 // but is read-only in a prototype takes effect. 48 // but is read-only in a prototype takes effect. 55 // Assignment to read-only property on the object itself is ignored. 59 // G should be read-only on the global object and the assignment is
|
/external/proguard/src/proguard/io/ |
ManifestRewriter.java | 75 public int read() throws IOException method in class:ManifestRewriter.SplitLineReader 84 // Read the first character. 85 int c1 = super.read(); 95 // Read the second character. 96 int c2 = super.read(); 109 // Read the third character. 110 int c3 = super.read(); 122 public int read(char[] cbuf, int off, int len) throws IOException method in class:ManifestRewriter.SplitLineReader 128 int c = read(); 147 int c = read(); [all...] |
/external/valgrind/main/exp-ptrcheck/tests/ |
neg.stderr.exp | 3 Invalid read of size 4 8 Invalid read of size 4 13 Invalid read of size 4 18 Invalid read of size 4 23 Invalid read of size 4 28 Invalid read of size 4 33 Invalid read of size 4 38 Invalid read of size 4 43 Invalid read of size 4 48 Invalid read of size [all...] |
base.stderr.exp-glibc25-amd64 | 4 Invalid read of size 8 16 Invalid read of size 8 21 Invalid read of size 8 26 Invalid read of size 8 31 Invalid read of size 8
|
base.stderr.exp-glibc25-x86 | 4 Invalid read of size 4 16 Invalid read of size 4 21 Invalid read of size 4 26 Invalid read of size 4 31 Invalid read of size 4
|
/libcore/luni/src/main/java/java/util/zip/ |
CheckedInputStream.java | 26 * same time as the data, on which the checksum is computed, is read from a 62 public int read() throws IOException { method in class:CheckedInputStream 63 int x = in.read(); 73 * updated with the bytes read. 76 * the byte array in which to store the bytes read. 78 * the initial position in {@code buf} to store the bytes read 82 * @return the number of bytes actually read or {@code -1} if arrived at the 88 public int read(byte[] buf, int off, int nbytes) throws IOException { method in class:CheckedInputStream 89 int x = in.read(buf, off, nbytes); 97 * Returns the checksum calculated on the stream read so far [all...] |
/cts/libs/json/src/com/android/json/stream/ |
JsonToken.java | 26 * and read using {@link JsonReader#beginObject}. 32 * and read using {@link JsonReader#endArray}. 38 * and read using {@link JsonReader#beginObject}. 44 * and read using {@link JsonReader#endObject}. 50 * their values. Written using {@link JsonWriter#name} and read using {@link
|
/cts/tests/tests/os/src/android/os/cts/ |
ParcelFileDescriptorTest.java | 68 // read the data that was wrote previously 69 assertEquals(0, in.read()); 70 assertEquals(1, in.read()); 71 assertEquals(2, in.read()); 72 assertEquals(3, in.read()); 109 assertEquals(DATA, in.read()); 147 int count = is.read(observed); 149 assertEquals(-1, is.read()); 172 assertEquals(41, is.read()); 173 assertEquals(42, is.read()); [all...] |
/external/quake/tools/ |
dumpms2.py | 27 a.read(f, 1) 32 a.read(f, 1) 41 # Seek ahead and read the vertex order information 44 vertexOrder.read(f, numOrder) 46 # Read commands
|
/frameworks/base/core/java/android/util/ |
JsonToken.java | 26 * and read using {@link JsonReader#beginObject}. 32 * and read using {@link JsonReader#endArray}. 38 * and read using {@link JsonReader#beginObject}. 44 * and read using {@link JsonReader#endObject}. 50 * their values. Written using {@link JsonWriter#name} and read using {@link
|
/frameworks/base/libs/gui/ |
LayerState.cpp | 45 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t 52 err = transparentRegion.read(buf); 58 input.read(this, size); 67 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState 69 return state.read(input);
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
Sha1Helper.cpp | 55 if (file.open(filename, OpenMode::Read) < 0) { 66 ssize_t nread = file.read(buf, sizeof(buf)); 87 if (file.open(filename, OpenMode::Read) < 0) { 88 LOGE("Unable to read binary sha1 file %s\n", filename); 92 file.read((char *)result, result_size);
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLStreamedInput.java | 41 * Read an opaque value from the stream. 42 * @return the value read from the underlying stream. 43 * @throws IOException if the data could not be read from 49 public int read() throws IOException { method in class:SSLStreamedInput 50 int res = in.read();
|