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

1234567891011>>

/external/chromium_org/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/guava/guava-tests/test/com/google/common/io/
H A DLimitInputStreamTest.java36 int read = lin.read();
37 assertEquals(big[0], read);
39 read = lin.read();
40 assertEquals(big[1], read);
42 read = lin.read();
43 assertEquals(-1, read);
47 read
124 public int read() throws IOException { method in class:LimitInputStreamTest.UnmarkableInputStream
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DReaderListener.java35 * Notification that the Reader has read a new string.
37 * @param str the read String
39 public abstract void read(String str); method in interface:ReaderListener
/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/chromium_org/tools/gyp/test/variables/filelist/src/
H A Ddummy.py5 open(sys.argv[1], 'w').write(open(sys.argv[2]).read())
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeInputStream.java19 public int read(byte[] buf) method in class:TeeInputStream
22 return read(buf, 0, buf.length);
25 public int read(byte[] buf, int off, int len) method in class:TeeInputStream
28 int i = input.read(buf, off, len);
38 public int read() method in class:TeeInputStream
41 int i = input.read();
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java49 int read(byte[] b, int off, int len) throws IOException; method in interface:SessionInputBuffer
51 int read(byte[] b) throws IOException; method in interface:SessionInputBuffer
53 int read() throws IOException; method in interface:SessionInputBuffer
/external/chromium_org/tools/gyp/test/variables/commands/
H A Dgyptest-commands-repeated.py16 expect = test.read('commands-repeated.gyp.stdout').replace('\r\n', '\n')
31 contents = test.read('commands-repeated.gypd').replace('\r\n', '\n')
32 expect = test.read('commands-repeated.gypd.golden').replace('\r\n', '\n')
H A Dgyptest-commands.py17 expect = test.read('commands.gyp.stdout').replace('\r', '')
32 contents = test.read('commands.gypd').replace('\r', '')
33 expect = test.read('commands.gypd.golden').replace('\r', '')
/external/chromium_org/tools/json_comment_eater/
H A Djson_comment_eater_test.py15 def read(file_name): function in function:JsonCommentEaterTest._Load
17 return f.read()
18 return [read(pattern % test_name)
/external/apache-http/src/org/apache/http/impl/io/
H A DIdentityInputStream.java74 public int read() throws IOException { method in class:IdentityInputStream
78 return this.in.read();
82 public int read(final byte[] b, int off, int len) throws IOException { method in class:IdentityInputStream
86 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
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/chromium_org/third_party/libusb/src/libusb/os/
H A Dpoll_posix.h5 #define usbi_read read
/external/chromium_org/tools/gyp/test/generator-output/rules/
H A Dcopy-file.py9 contents = open(sys.argv[1], 'r').read()
/external/chromium_org/tools/gyp/test/ninja/normalize-paths-win/
H A Dgyptest-normalize-paths.py23 subninja = open(test.built_file_path('obj/some_target.ninja')).read()
29 second = open(test.built_file_path('obj/second.ninja')).read()
34 copytarget = open(test.built_file_path('obj/copy_target.ninja')).read()
38 action = open(test.built_file_path('obj/action.ninja')).read()
/external/chromium_org/tools/gyp/test/rules/src/
H A Dcopy-file.py8 contents = open(sys.argv[1], 'r').read()
/external/chromium_org/tools/gyp/test/rules-dirname/src/
H A Dcopy-file.py8 contents = open(sys.argv[1], 'r').read()
/external/chromium_org/tools/gyp/test/win/idl-excluded/
H A Dcopy-file.py8 contents = open(sys.argv[1], 'r').read()
/external/chromium_org/tools/gyp/test/win/vs-macros/
H A Ddo_stuff.py7 input = open(sys.argv[1], "r").read()
/external/chromium_org/remoting/host/native_messaging/
H A Dnative_messaging_writer_unittest.cc46 int read = read_file_.ReadAtCurrentPos(reinterpret_cast<char*>(&length), 4); local
47 EXPECT_EQ(4, read);
49 read = read_file_.ReadAtCurrentPos(string_as_array(&content), length);
50 EXPECT_EQ(static_cast<int>(length), read); local
57 // and verify the read end immediately hits EOF.
60 read = read_file_.ReadAtCurrentPos(&unused, 1);
61 EXPECT_LE(read, 0);
74 int read; local
77 read = read_file_.ReadAtCurrentPos(reinterpret_cast<char*>(&length), 4);
78 EXPECT_EQ(4, read) << "
[all...]
/external/chromium_org/third_party/skia/include/core/
H A DSkDynamicAnnotations.h24 // SK_ANNOTATE_UNPROTECTED_READ can wrap any variable read to tell TSAN to ignore that it appears to
25 // be a racy read. This should be used only when we can make an external guarantee that though this
26 // particular read is racy, it is being used as part of a mechanism which is thread safe. Examples:
35 T read = x; local
37 return read;
/external/chromium_org/tools/gyp/test/configurations/inheritance/
H A Dgyptest-duplicates.py26 contents = test.read('duplicates.gypd').replace(
28 expect = test.read('duplicates.gypd.golden').replace('\r', '')
/external/guava/guava/src/com/google/common/base/
H A DTicker.java43 public abstract long read(); method in class:Ticker
56 public long read() {

Completed in 623 milliseconds

1234567891011>>