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

1234567891011>>

/external/chromium-trace/catapult/devil/devil/utils/lazy/
H A Dweak_constant.py21 def read(self): member in class:WeakConstant
/external/libmojo/third_party/catapult/devil/devil/utils/lazy/
H A Dweak_constant.py21 def read(self): member in class:WeakConstant
/external/python/cpython2/Tools/scripts/
H A Dcombinerefs.py77 # are read so long as pat doesn't match them. In any case, the first line
81 def read(fileiter, pat, whilematch): function
92 for line in read(fi, re.compile(r'^Remaining objects:$'), False):
99 for line in read(fi, re.compile(r'^Remaining object addresses:$'), False):
108 for line in read(fi, crack, True):
/external/ltp/testcases/realtime/scripts/
H A Dparser.py40 def read(self): member in class:Log
41 for line in self.__log_file.read().split("\n"):
/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/syslinux/com32/lib/sys/
H A Dread.c29 * read.c
41 ssize_t read(int fd, void *buf, size_t count) function
50 return fp->iop->read(fp, buf, count);
/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/syslinux/gpxe/src/include/gpxe/
H A Dbitbash.h39 int ( * read ) ( struct bit_basher *basher, unsigned int bit_id ); member in struct:bit_basher_operations
/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/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
H A DHandshakeMessage.java34 public static HandshakeMessage read(DataInput in) throws IOException { method in class:HandshakeMessage
/external/conscrypt/testing/src/main/java/libcore/tlswire/record/
H A DTlsRecord.java29 public static TlsRecord read(DataInput in) throws IOException { method in class:TlsRecord
32 result.version = TlsProtocolVersion.read(in);
/external/curl/lib/
H A Dwarnless.h78 # undef read macro
79 # define read(fd, buf, count) curlx_read(fd, buf, count) macro
/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/junit-params/src/main/java/junitparams/internal/parameters/
H A DParametersReader.java36 public Object[] read() { method in class:ParametersReader
/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.

Completed in 7529 milliseconds

1234567891011>>