Searched refs:read (Results 1 - 25 of 2793) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-crbug-319860.js30 function read(a, index) { function
40 read(a, 0);
41 read(a, 0);
42 %OptimizeFunctionOnNextCall(read);
46 read(a, i);
/external/testng/src/test/java/test/abstractmethods/
H A DCRUDTest2.java10 public void read() { method in class:CRUDTest2
H A DCRUDTest.java11 public abstract void read(); method in class:CRUDTest
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DShortArrayCodeInput.java26 /** source array to read from */
46 public int read() throws EOFException { method in class:ShortArrayCodeInput
58 int short0 = read();
59 int short1 = read();
66 long short0 = read();
67 long short1 = read();
68 long short2 = read();
69 long short3 = read();
/external/guava/guava-gwt/test-super/com/google/common/testing/super/com/google/common/testing/
H A DFakeTickerTest.java36 assertEquals(0, ticker.read());
38 assertEquals(10, ticker.read());
40 assertEquals(1000010L, ticker.read());
50 assertEquals(0, ticker.read());
51 assertEquals(10, ticker.read());
52 assertEquals(20, ticker.read());
57 assertEquals(0, ticker.read());
58 assertEquals(1000000, ticker.read());
59 assertEquals(2000000, ticker.read());
64 assertEquals(0, ticker.read());
[all...]
/external/proguard/src/proguard/io/
H A DDataEntryReader.java28 * determines what to do with the read data, if anything.
37 public void read(DataEntry dataEntry) throws IOException; method in interface:DataEntryReader
/external/clang/test/OpenMP/
H A Datomic_read_codegen.c83 #pragma omp atomic read
87 #pragma omp atomic read
91 #pragma omp atomic read
95 #pragma omp atomic read
99 #pragma omp atomic read
103 #pragma omp atomic read
107 #pragma omp atomic read
111 #pragma omp atomic read
115 #pragma omp atomic read
119 #pragma omp atomic read
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dstream_slice_test.py21 self.assertEqual('', ss.read(0))
22 self.assertEqual(self.value[0:3], ss.read(3))
24 self.assertEqual(self.value[3:10], ss.read())
25 self.assertEqual('', ss.read())
26 self.assertEqual('', ss.read(10))
31 self.assertEqual('', ss.read(5))
32 self.assertEqual('', ss.read())
38 self.assertEqual(self.value[26:36], ss.read(10))
39 self.assertEqual(self.value[36:], ss.read())
40 self.assertEqual('', ss.read())
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DExceptionCatchingInputStream.java10 * An {@link java.io.InputStream} that catches {@link java.io.IOException}s during read and skip calls and stores them
71 public int read(byte[] buffer) throws IOException { method in class:ExceptionCatchingInputStream
72 int read;
74 read = wrapped.read(buffer);
77 read = -1;
79 return read;
83 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException { method in class:ExceptionCatchingInputStream
84 int read;
86 read
112 public int read() throws IOException { method in class:ExceptionCatchingInputStream
[all...]
/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfMatrixAttribute.cpp82 Xdr::read <StreamIO> (is, _value[0][0]);
83 Xdr::read <StreamIO> (is, _value[0][1]);
84 Xdr::read <StreamIO> (is, _value[0][2]);
86 Xdr::read <StreamIO> (is, _value[1][0]);
87 Xdr::read <StreamIO> (is, _value[1][1]);
88 Xdr::read <StreamIO> (is, _value[1][2]);
90 Xdr::read <StreamIO> (is, _value[2][0]);
91 Xdr::read <StreamIO> (is, _value[2][1]);
92 Xdr::read <StreamIO> (is, _value[2][2]);
126 Xdr::read <StreamI
[all...]
H A DImfStringVectorAttribute.cpp75 int read = 0; local
77 while (read < size)
80 Xdr::read <StreamIO> (is, strSize);
81 read += Xdr::size<int>();
86 Xdr::read<StreamIO> (is, &str[0], strSize);
87 read += strSize;
H A DImfChromaticitiesAttribute.cpp75 Xdr::read <StreamIO> (is, _value.red.x);
76 Xdr::read <StreamIO> (is, _value.red.y);
77 Xdr::read <StreamIO> (is, _value.green.x);
78 Xdr::read <StreamIO> (is, _value.green.y);
79 Xdr::read <StreamIO> (is, _value.blue.x);
80 Xdr::read <StreamIO> (is, _value.blue.y);
81 Xdr::read <StreamIO> (is, _value.white.x);
82 Xdr::read <StreamIO> (is, _value.white.y);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeInputStream.java8 * An input stream which copies anything read through it to another stream.
20 * @param output output stream to copy any input read to.
28 public int read(byte[] buf) method in class:TeeInputStream
31 return read(buf, 0, buf.length);
34 public int read(byte[] buf, int off, int len) method in class:TeeInputStream
37 int i = input.read(buf, off, len);
47 public int read() method in class:TeeInputStream
50 int i = input.read();
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DSeekableFileInputStream.java52 * Calls {@link RandomAccessFile#read() randomAccessFile.read()}.
54 public int read() throws IOException { method in class:SeekableFileInputStream
55 return randomAccessFile.read();
59 * Calls {@link RandomAccessFile#read(byte[]) randomAccessFile.read(buf)}.
61 public int read(byte[] buf) throws IOException { method in class:SeekableFileInputStream
62 return randomAccessFile.read(buf);
67 * {@link RandomAccessFile#read(byte[],int,int)
68 * randomAccessFile.read(bu
70 public int read(byte[] buf, int off, int len) throws IOException { method in class:SeekableFileInputStream
[all...]
H A DCountingInputStream.java17 * Counts the number of bytes read from an input stream.
26 public int read() throws IOException { method in class:CountingInputStream
27 int ret = in.read();
34 public int read(byte[] b, int off, int len) throws IOException { method in class:CountingInputStream
35 int ret = in.read(b, off, len);
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java54 int read(byte[] b, int off, int len) throws IOException; method in interface:SessionInputBuffer
56 int read(byte[] b) throws IOException; method in interface:SessionInputBuffer
58 int read() throws IOException; method in interface:SessionInputBuffer
/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityInputStream.java79 public int read() throws IOException { method in class:IdentityInputStream
83 return this.in.read();
87 public int read(final byte[] b, int off, int len) throws IOException { method in class:IdentityInputStream
91 return this.in.read(b, off, len);
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
80 * The maximum number of bytes that can be read from the stream. Subsequent
81 * read operations will return -1.
100 * @param contentLength The maximum number of bytes that can be read from
101 * the stream. Subsequent read operations will return -1.
126 while (read(buffer) >= 0) {
130 // to read after closed!
141 * @see java.io.InputStream#read()
143 public int read() throw method in class:ContentLengthInputStream
167 public int read (byte[] b, int off, int len) throws java.io.IOException { method in class:ContentLengthInputStream
192 public int read(byte[] b) throws IOException { method in class:ContentLengthInputStream
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_win_dynamic_runtime_thunk.cc31 #pragma section(".CRT$XID", long, read) // NOLINT
32 #pragma section(".CRT$XIZ", long, read) // NOLINT
33 #pragma section(".CRT$XTW", long, read) // NOLINT
34 #pragma section(".CRT$XTY", long, read) // NOLINT
/external/glide/testutil/src/main/java/com/bumptech/glide/testutil/
H A DTestUtil.java22 int read;
24 while ((read = is.read(buffer)) != -1) {
25 os.write(buffer, 0, read);
/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/chromium-trace/catapult/third_party/vinn/vinn/test_data/
H A Dprint_file_content.js10 file_content = read(file_path);
/external/guava/guava/src/com/google/common/base/
H A DTicker.java46 public abstract long read(); method in class:Ticker
59 public long read() {
/external/jetty/src/java/org/eclipse/jetty/util/
H A DReadLineInputStream.java51 int b=super.read();
100 public synchronized int read() throws IOException method in class:ReadLineInputStream
102 int b = super.read();
107 b=super.read();
113 public synchronized int read(byte[] buf, int off, int len) throws IOException method in class:ReadLineInputStream
120 int b = super.read();
127 return 1+super.read(buf,off+1,len-1);
132 return super.read(buf,off,len);
/external/jetty/src/java/org/eclipse/jetty/server/
H A DHttpInput.java43 * @see java.io.InputStream#read()
46 public int read() throws IOException method in class:HttpInput
49 int read = read(bytes, 0, 1);
50 return read < 0 ? -1 : 0xff & bytes[0];
55 * @see java.io.InputStream#read(byte[], int, int)
58 public int read(byte[] b, int off, int len) throws IOException method in class:HttpInput

Completed in 911 milliseconds

1234567891011>>