HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 26 - 50 of 2562) sorted by null

12 3 4 5 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
StringIdItem.java 25 public void read(DexRandomAccessFile file) throws IOException { method in class:StringIdItem
TypeIdItem.java 25 public void read(DexRandomAccessFile file) throws IOException { method in class:TypeIdItem
TypeItem.java 25 public void read(DexRandomAccessFile file) throws IOException { method in class:TypeItem
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 31 public void read(DexRandomAccessFile file) throws IOException { method in class:DebugInfoItem
34 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
  /external/caliper/caliper/src/main/java/com/google/caliper/json/
InstantTypeAdapter.java 36 @Override public Instant read(JsonReader in) throws IOException { method in class:InstantTypeAdapter
NaturallySortedMapTypeAdapterFactory.java 65 @Override public T read(JsonReader in) throws IOException { method in class:NaturallySortedMapTypeAdapterFactory
67 treeMap.putAll(mapAdapter.read(in));
  /external/smali/util/src/main/java/org/jf/util/
BlankReader.java 41 @Override public int read(@Nonnull char[] chars, int i, int i2) throws IOException { method in class:BlankReader
  /libcore/ojluni/src/main/java/javax/crypto/
CryptoPolicyParser.java 40 void read(Reader policy) method in class:CryptoPolicyParser
  /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

Completed in 767 milliseconds

12 3 4 5 6 7 8 91011>>