/dalvik/dx/src/com/android/dx/cf/direct/ |
D | MethodListParser.java | 32 final private StdMethodList methods; field in MethodListParser 45 methods = new StdMethodList(getCount()); in MethodListParser() 55 return methods; in getList() 83 methods.set(n, meth); in set()
|
/dalvik/dx/tests/131-perf/ |
D | ClassGen.java | 11 int methods = 6; in main() local 22 methods = Integer.parseInt(args[3]); in main() 33 for (int method = 1; method <= methods; method++) { in main()
|
/dalvik/dx/tests/020-method-attrib-Deprecated/ |
D | expected.txt | 24 methods[0]: 34 end methods[0]
|
D | small-class.txt | 28 # methods[0]
|
/dalvik/dx/tests/019-method-attrib-Synthetic/ |
D | expected.txt | 24 methods[0]: 34 end methods[0]
|
D | small-class.txt | 28 # methods[0]
|
/dalvik/dx/tests/009-method/ |
D | expected.txt | 23 methods[0]: 28 end methods[0]
|
D | small-class.txt | 28 # methods[0]
|
/dalvik/dx/tests/027-method-attrib-Signature/ |
D | expected.txt | 25 methods[0]: 36 end methods[0]
|
D | small-class.txt | 29 # methods[0]
|
/dalvik/dx/tests/017-method-attrib-Code/ |
D | expected.txt | 24 methods[0]: 40 end methods[0]
|
D | small-class.txt | 28 # methods[0]
|
/dalvik/dx/tests/018-method-attrib-Exceptions/ |
D | expected.txt | 26 methods[0]: 38 end methods[0]
|
/dalvik/dx/tests/021-code-attrib-LineNumberTable/ |
D | expected.txt | 25 methods[0]: 50 end methods[0]
|
/dalvik/tools/dexdeps/ |
D | README.txt | 4 This tool dumps a list of fields and methods that a DEX file uses but does 6 determine whether an APK is accessing fields and calling methods that it 32 opposed to also listing fields and methods.
|
/dalvik/dx/tests/002-minimal-valid/ |
D | expected.txt | 26 methods[0]: 44 end methods[0]
|
D | small-class.txt | 31 # methods[0]
|
/dalvik/dx/tests/022-code-attrib-LocalVariableTable/ |
D | expected.txt | 29 methods[0]: 55 end methods[0]
|
/dalvik/dx/tests/023-code-exception-table/ |
D | expected.txt | 28 methods[0]: 49 end methods[0]
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
D | Output.java | 134 MethodRef[] methods = classes[i].getMethodArray(); in printMethodRefs() local 136 for (int j = 0; j < methods.length; j++) { in printMethodRefs() 137 MethodRef ref = methods[j]; in printMethodRefs() 207 MethodRef[] methods = cref.getMethodArray(); in printXmlMethods() local 208 for (int i = 0; i < methods.length; i++) { in printXmlMethods() 209 MethodRef mref = methods[i]; in printXmlMethods()
|
/dalvik/tools/dmtracedump/ |
D | TraceDump.c | 147 struct MethodEntry **methods; /* list of methods in this class */ member 154 struct MethodEntry **methods; /* list of methods with same name */ member 189 MethodEntry* methods; /* 2 extra methods: "toplevel" and "unknown" */ member 490 int64_t idA = classA->methods[0]->methodId; in compareClassExclusive() 491 int64_t idB = classB->methods[0]->methodId; in compareClassExclusive() 550 result = strcmp(uniqueA->methods[0]->className, in compareUniqueExclusive() 551 uniqueB->methods[0]->className); in compareUniqueExclusive() 553 int64_t idA = uniqueA->methods[0]->methodId; in compareUniqueExclusive() 554 int64_t idB = uniqueB->methods[0]->methodId; in compareUniqueExclusive() 574 free(pKeys->methods); in freeDataKeys() [all …]
|
/dalvik/dx/src/com/android/multidex/ |
D | MainDexListBuilder.java | 170 MethodList methods = clazz.getMethods(); in keepAnnotated() local 171 for (int i = 0; i<methods.size(); i++) { in keepAnnotated() 172 if (hasRuntimeVisibleAnnotation(methods.get(i))) { in keepAnnotated()
|
/dalvik/dx/tests/062-dex-synch-method/ |
D | info.txt | 2 a couple cases of synchronized methods get converted reasonably.
|
/dalvik/dx/tests/081-dex-throws-list/ |
D | info.txt | 2 throws lists (that is, list of declared exceptions on methods) get
|
/dalvik/dx/tests/082-dex-throws-list-sharing/ |
D | info.txt | 2 identical throws lists in different methods get collapsed into a single
|