Home
last modified time | relevance | path

Searched refs:DexFile (Results 1 – 8 of 8) sorted by relevance

/test/suite_harness/tools/dex-tools/test/dex/reader/
DDexFileReaderTests.java39 import dex.structure.DexFile;
55 DexFile dexFile = javaToDexUtil.getFrom(A); in testA()
83 DexFile dexFile = javaToDexUtil.getFrom(T0); in testT0()
135 DexFile dexFile = javaToDexUtil.getFrom(toSet(T1, T0), toStringSet(T1)); in testT1()
150 DexFile dexFile = javaToDexUtil.getFrom(T1, T0); in testT0_T1()
174 DexFile dexFile = javaToDexUtil.getFrom(A0); in testA0()
195 DexFile dexFile = javaToDexUtil.getFrom(T3, A0); in testA0_T3()
217 DexFile dexFile = javaToDexUtil.getFrom(G0); in testG0()
242 DexFile dexFile = javaToDexUtil.getFrom(G1); in testG1()
272 DexFile dexFile = javaToDexUtil.getFrom(I0); in testI0()
[all …]
DLargeDexTests.java22 import dex.structure.DexFile;
45 DexFile dexFile = javaToDexUtil.getFrom(source); in testManyFields()
DDexTestsCommon.java32 import dex.structure.DexFile;
88 protected DexFile prepareDexFile(String fileName) throws IOException{ in prepareDexFile()
93 protected DexClass getClass(DexFile file, String className) { in getClass()
/test/suite_harness/tools/dex-tools/test/dex/reader/util/
DJavaSourceToDexUtil.java36 import com.android.dx.dex.file.DexFile;
43 public dex.structure.DexFile getFrom(JavaSource source) throws IOException{ in getFrom()
47 public dex.structure.DexFile getFrom(JavaSource... source) throws IOException{ in getFrom()
51 public dex.structure.DexFile getAllFrom(Set<JavaSource> sources) throws IOException{ in getAllFrom()
62 public dex.structure.DexFile getFrom(Set<JavaSource> sources, in getFrom()
75 DexFile dexFile = new DexFile(); in convertToDexCode()
/test/suite_harness/tools/dex-tools/src/dex/reader/
DTypeFormatter.java22 import dex.structure.DexFile;
105 public String formatDexFile(DexFile file) { in formatDexFile()
DDexFileImpl.java24 import dex.structure.DexFile;
30 /* package */final class DexFileImpl implements DexFile {
DDexFileReader.java19 import dex.structure.DexFile;
68 public DexFile read(DexBuffer buffer) { in read()
/test/suite_harness/tools/dex-tools/src/dex/structure/
DDexFile.java25 public interface DexFile extends NamedElement { interface