Searched defs:read (Results 1 - 25 of 622) 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/chromium-trace/catapult/devil/devil/utils/lazy/
H A Dweak_constant.py21 def read(self): member in class:WeakConstant
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
H A Dresponse.py41 body = json.loads(http_response.read().decode('utf-8'))
47 def read(self, amt=None): member in class:GlacierResponse
49 return self.http_response.read(amt)
/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
H A DClassRewriter.java51 public void read(DataEntry dataEntry) throws IOException method in class:ClassRewriter
H A DJarReader.java27 * This DataEntryReader lets a given DataEntryReader read all data entries of
28 * the read jar/war/zip data entries.
48 public void read(DataEntry dataEntry) throws IOException method in class:JarReader
65 dataEntryReader.read(new ZipDataEntry(dataEntry,
H A DClassReader.java34 * Class files are read as ProgramClass objects or LibraryClass objects,
71 public void read(DataEntry dataEntry) throws IOException method in class:ClassReader
H A DDataEntryObfuscator.java63 public void read(DataEntry dataEntry) throws IOException method in class:DataEntryObfuscator
66 dataEntryReader.read(renamedDataEntry(dataEntry));
H A DDataEntryRenamer.java76 public void read(DataEntry dataEntry) throws IOException method in class:DataEntryRenamer
97 renamedDataEntryReader.read(new RenamedDataEntry(dataEntry, newName));
101 missingDataEntryReader.read(dataEntry);
H A DFilteredDataEntryReader.java78 public void read(DataEntry dataEntry) method in class:FilteredDataEntryReader
87 dataEntryReader.read(dataEntry);
/external/testng/src/test/java/test/abstractmethods/
H A DCRUDTest.java11 public abstract void read(); method in class:CRUDTest
H A DCRUDTest2.java10 public void read() { method in class:CRUDTest2
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DIsoTypeReaderVariable.java22 public static long read(ByteBuffer bb, int bytes) { method in class:IsoTypeReaderVariable
35 throw new RuntimeException("I don't know how to read " + bytes + " bytes");
/external/okhttp/okio/okio/src/main/java/okio/
H A DSource.java22 * Supplies a stream of bytes. Use this interface to read data from wherever
32 * fill it with the data your application is to read.
51 * java.io.InputStream#read single-byte read} method that is awkward to
65 * them to {@code sink}. Returns the number of bytes read, or -1 if this
68 long read(Buffer sink, long byteCount) throws IOException; method in interface:Source
75 * error to read a closed source. It is safe to close a source more than once.
H A DForwardingSource.java34 @Override public long read(Buffer sink, long byteCount) throws IOException { method in class:ForwardingSource
35 return delegate.read(sink, byteCount);
/external/caliper/caliper/src/main/java/com/google/caliper/json/
H A DInstantTypeAdapter.java36 @Override public Instant read(JsonReader in) throws IOException { method in class:InstantTypeAdapter
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
H A Dbuffered_stream.py19 self.__buffered_data = self.__stream.read(size)
43 def read(self, size=None): # pylint: disable=invalid-name member in class:BufferedStream
47 'Illegal read of size %s requested on BufferedStream. '
H A Dstream_slice.py17 return 'Slice of stream %s with %s/%s bytes not yet read' % (
33 def read(self, size=None): # pylint: disable=missing-docstring member in class:StreamSlice
37 unexpectedly raise an exception on read: if the underlying stream
38 is exhausted (i.e. returns no bytes on read), and the size of this
39 slice indicates we should still be able to read more bytes, we
43 size: If provided, read no more than size bytes from the stream.
46 The bytes read from this slice.
56 data = self.__stream.read(read_size)
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/tools/
H A Dgcs_file_seg_reader.py49 def read(self, n): member in class:_GCSFileSegReader
53 n: max bytes to read. Must be positive.
76 """Returns the next offset to read."""
106 n: max number of bytes to read.
111 result = self._seg.read(size=n)
/external/curl/lib/
H A Dwarnless.h72 # undef read macro
73 # define read(fd, buf, count) curlx_read(fd, buf, count) macro
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeInput.java26 * Returns whether there are any more code units to read. This
34 public int read() throws EOFException; method in interface:CodeInput
/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/libbrillo/brillo/streams/
H A Dstream_utils.h61 // Checks if |mode| allows read access.
73 // Make the access mode based on read/write rights requested.
74 inline Stream::AccessMode MakeAccessMode(bool read, bool write) { argument
75 CHECK(read || write); // Either read or write (or both) must be specified.
76 if (read && write)
87 // data from the input stream is read. The function takes ownership of both
103 // |buffer_size| specifies the size of the read buffer to use for the operation.
/external/smali/util/src/main/java/org/jf/util/
H A DBlankReader.java41 @Override public int read(@Nonnull char[] chars, int i, int i2) throws IOException { method in class:BlankReader
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs81 public static int read( this TextReader reader, char[] buffer, int index, int count ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions

Completed in 1407 milliseconds

1234567891011>>