Searched defs:read (Results 1 - 25 of 531) 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/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/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/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/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/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(OkBuffer sink, long byteCount) throws IOException; method in interface:Source
78 * error to read a closed source. It is safe to close a source more than once.
/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/chromium_org/third_party/cython/src/Cython/Plex/
H A DScanners.pxd32 cdef tuple read(self) member in class:Scanner
/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.java43 public abstract long read(); method in class:Ticker
56 public long read() {
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpChunkedResponseTest.java51 public synchronized int read(byte[] buffer) throws IOException { method in class:HttpChunkedResponseTest.ChunkedInputStream
/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
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs79 public static int read( this TextReader reader, char[] buffer, int index, int count ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
/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);
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DConstructedOctetStream.java20 public int read(byte[] b, int off, int len) throws IOException method in class:ConstructedOctetStream
44 int numRead = _currentStream.read(b, off + totalRead, len - totalRead);
70 public int read() method in class:ConstructedOctetStream
93 int b = _currentStream.read();
H A DDefiniteLengthInputStream.java42 public int read() method in class:DefiniteLengthInputStream
50 int b = _in.read();
65 public int read(byte[] buf, int off, int len) method in class:DefiniteLengthInputStream
74 int numRead = _in.read(buf, off, toRead);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DDigestInputStream.java22 public int read() method in class:DigestInputStream
25 int b = in.read();
34 public int read( method in class:DigestInputStream
40 int n = in.read(b, off, len);
H A DMacInputStream.java22 public int read() method in class:MacInputStream
25 int b = in.read();
34 public int read( method in class:MacInputStream
40 int n = in.read(b, off, len);

Completed in 3358 milliseconds

1234567891011>>