HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 51 - 75 of 3357) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/io/
DataEntryRenamer.java 76 public void read(DataEntry dataEntry) throws IOException method in class:DataEntryRenamer
97 renamedDataEntryReader.read(new RenamedDataEntry(dataEntry, newName));
101 missingDataEntryReader.read(dataEntry);
JarReader.java 27 * 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,
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
InputStreamTest.java 30 in.read(null, -1, 1);
38 public int read() throws IOException { method in class:InputStreamTest.MockInputStream
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
Parcelables.java 46 Parcel read = Parcel.obtain(); local
52 read.unmarshall(data, 0, data.length);
53 read.setDataPosition(0);
54 restored = read.readParcelable(p.getClass().getClassLoader());
57 read.recycle();
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationElement.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationElement
28 (value = new EncodedValue()).read(file);
AnnotationItem.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationItem
29 (annotation = new EncodedAnnotation()).read(file);
AnnotationSetItem.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetItem
32 (entries[i] = new AnnotationOffItem()).read(file);
AnnotationSetRefList.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetRefList
32 (list[i] = new AnnotationSetRefItem()).read(file);
DebugInfoItem.java 33 public void read(DexRandomAccessFile file) throws IOException { method in class:DebugInfoItem
36 file.read(data);
EncodedArray.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedArray
31 (values[i] = new EncodedValue()).read(file);
EncodedCatchHandlerList.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandlerList
30 (list[i] = new EncodedCatchHandler()).read(file);
EncodedTypeAddrPair.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedTypeAddrPair
FieldAnnotation.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:FieldAnnotation
FieldIdItem.java 27 public void read(DexRandomAccessFile file) throws IOException { method in class:FieldIdItem
MethodAnnotation.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:MethodAnnotation
MethodIdItem.java 27 public void read(DexRandomAccessFile file) throws IOException { method in class:MethodIdItem
ParameterAnnotation.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:ParameterAnnotation
ProtoIdItem.java 27 public void read(DexRandomAccessFile file) throws IOException { method in class:ProtoIdItem
TryItem.java 27 public void read(DexRandomAccessFile file) throws IOException { method in class:TryItem
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeInput.java 26 * Returns whether there are any more code units to read. This
34 public int read() throws EOFException; method in interface:CodeInput
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/io/
io_block.h 14 size_t (*read)(int lba, uintptr_t buf, size_t size); member in struct:io_block_ops
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
chunk.py 1 """Simple class to read IFF chunks.
22 the start of each chunk and read from the instance until it reaches
35 data = chunk.read(nbytes)
41 read, close, seek, tell, isatty.
61 self.chunkname = file.read(4)
65 self.chunksize = struct.unpack(strflag+'L', file.read(4))[0]
120 def read(self, size=-1): member in class:Chunk
121 """Read at most size bytes from the chunk.
122 If size is omitted or negative, read until the end
134 data = self.file.read(size)
    [all...]
  /external/annotation-tools/scene-lib/test/annotations/tests/executable/
ClassToIndexDemo.java 19 ClassFileReader.read(s, args[0]);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
IOExtensions.cs 81 public static int read( this TextReader reader, char[] buffer, int index, int count ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
83 return reader.Read( buffer, index, count );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
IOExtensions.cs 79 public static int read( this TextReader reader, char[] buffer, int index, int count ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
81 return reader.Read( buffer, index, count );

Completed in 303 milliseconds

1 23 4 5 6 7 8 91011>>