Searched defs:read (Results 1 - 25 of 498) sorted by relevance

1234567891011>>

/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/valgrind/tsan/
H A Dcommon_util.h36 #define read(fd, buf, size) __real_read(fd, buf, size) macro
41 #define read(fd, buf, size) fread(buf, 1, size, fd) macro
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DPacketListener.java11 void read(String packet); method in interface:PacketListener
/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/webkit/Tools/Scripts/webkitpy/common/system/
H A Dzipfileset_mock.py41 def read(self, member): member in class:make_factory.MockZipFileSet
/external/clang/test/Analysis/
H A Dtaint-tester.cpp19 ssize_t read; local
22 while ((read = T.getline(&line, &len, stdin)) != -1) {
/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/jmonkeyengine/engine/src/core/com/jme3/export/
H A DSavable.java45 void read(JmeImporter im) throws IOException; method in interface:Savable
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
H A DConnector.java54 * Closes the connection. Any subsequent attempts to read
70 * until the next read() call is made. Callers should copy
73 * @return The data read or null if there is no more data
76 public ByteBuffer read(); method in interface:Connector
/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-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DInputStreamTest.java30 in.read(null, -1, 1);
38 public int read() throws IOException { method in class:InputStreamTest.MockInputStream
/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);
/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/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.java43 public int read() method in class:DefiniteLengthInputStream
51 int b = _in.read();
66 public int read(byte[] buf, int off, int len) method in class:DefiniteLengthInputStream
75 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 549 milliseconds

1234567891011>>