Home
last modified time | relevance | path

Searched refs:DexMethod (Results 1 – 7 of 7) sorted by relevance

/cts/tools/dex-tools/src/dex/reader/
DDexClassImpl.java35 import dex.structure.DexMethod;
52 private List<DexMethod> methods;
276 public synchronized List<DexMethod> getMethods() { in getMethods()
278 methods = new ArrayList<DexMethod>(); in getMethods()
287 private List<DexMethod> getDexMethods(EncodedMethod[] methods) { in getDexMethods()
288 List<DexMethod> dexMethods = new ArrayList<DexMethod>(methods.length); in getDexMethods()
DTypeFormatter.java23 import dex.structure.DexMethod;
118 for (DexMethod method : dexClass.getMethods()) { in formatDexFile()
DDexMethodImpl.java34 import dex.structure.DexMethod;
37 /* package */final class DexMethodImpl implements DexMethod {
/cts/tools/dex-tools/test/dex/reader/
DDexTestsCommon.java33 import dex.structure.DexMethod;
129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) { in getMethod()
133 for (DexMethod method : clazz.getMethods()) { in getMethod()
DDexFileReaderTests.java40 import dex.structure.DexMethod;
99 DexMethod method = getMethod(clazz, "publicStringMethodInt", "I"); in testT0()
330 DexMethod method = getMethod(A, "m", "I"); in testParameterAnnotation()
/cts/tools/dex-tools/src/dex/structure/
DDexMethod.java24 public interface DexMethod extends WithModifiers, DexAnnotatedElement, interface
DDexClass.java52 List<DexMethod> getMethods(); in getMethods()