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

/dalvik/libdex/
H A DDexClass.h55 DexMethod* directMethods; member in struct:DexClassData
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DClassDataItem.java57 private final ArrayList<EncodedMethod> directMethods; field in class:ClassDataItem
89 this.directMethods = new ArrayList<EncodedMethod>(20);
114 && directMethods.isEmpty() && virtualMethods.isEmpty();
160 directMethods.add(method);
184 int sz = directMethods.size() + virtualMethods.size();
187 result.addAll(directMethods);
214 sz = directMethods.size();
217 directMethods.get(i).debugPrint(pw, verbose);
244 if (!directMethods.isEmpty()) {
245 Collections.sort(directMethods);
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DClassDataItem.java53 private final ArrayList<EncodedMethod> directMethods; field in class:ClassDataItem
85 this.directMethods = new ArrayList<EncodedMethod>(20);
110 && directMethods.isEmpty() && virtualMethods.isEmpty();
156 directMethods.add(method);
180 int sz = directMethods.size() + virtualMethods.size();
183 result.addAll(directMethods);
210 sz = directMethods.size();
213 directMethods.get(i).debugPrint(pw, verbose);
240 if (!directMethods.isEmpty()) {
241 Collections.sort(directMethods);
[all...]
/dalvik/vm/oo/
H A DObject.h410 Method* directMethods; member in struct:ClassObject
H A DClass.cpp1896 newClass->directMethods = (Method*) dvmLinearAlloc(classLoader,
1900 loadMethodFromDex(newClass, &method, &newClass->directMethods[i]);
1904 newClass->directMethods[i].registerMap = pMap;
1906 assert((newClass->directMethods[i].registersSize+7) / 8 ==
1907 newClass->directMethods[i].registerMap->regWidth);
1911 dvmLinearReadOnly(classLoader, newClass->directMethods);
2050 if (clazz->directMethods != NULL) {
2051 Method *directMethods = clazz->directMethods; local
2053 clazz->directMethods
[all...]

Completed in 746 milliseconds