Searched defs:directMethods (Results 1 - 1 of 1) sorted by relevance

/libcore/dex/src/main/java/com/android/dex/
H A DClassData.java22 private final Method[] directMethods; field in class:ClassData
26 Method[] directMethods, Method[] virtualMethods) {
29 this.directMethods = directMethods;
42 return directMethods;
57 Method[] result = new Method[directMethods.length + virtualMethods.length];
58 System.arraycopy(directMethods, 0, result, 0, directMethods.length);
59 System.arraycopy(virtualMethods, 0, result, directMethods.length, virtualMethods.length);
25 ClassData(Field[] staticFields, Field[] instanceFields, Method[] directMethods, Method[] virtualMethods) argument

Completed in 48 milliseconds