Searched refs:methods (Results 1 - 14 of 14) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/direct/
H A DMethodListParser.java28 * Parser for lists of methods in a class file.
32 final private StdMethodList methods; field in class:MethodListParser
45 methods = new StdMethodList(getCount());
55 return methods;
83 methods.set(n, meth);
H A DDirectClassFile.java133 * {@code null-ok;} the class file field {@code methods}; only ever
136 private MethodList methods; field in class:DirectClassFile
306 return methods;
542 methods = mlParser.getList();
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DOutput.java129 * Prints the list of methods in a simple human-readable format.
134 MethodRef[] methods = classes[i].getMethodArray();
136 for (int j = 0; j < methods.length; j++) {
137 MethodRef ref = methods[j];
155 * the matching fields and methods.
204 * Prints the externally-visible methods in XML format.
207 MethodRef[] methods = cref.getMethodArray();
208 for (int i = 0; i < methods.length; i++) {
209 MethodRef mref = methods[i];
/dalvik/dx/src/com/android/multidex/
H A DMainDexListBuilder.java142 MethodList methods = clazz.getMethods();
143 for (int i = 0; i<methods.size(); i++) {
144 if (hasRuntimeVisibleAnnotation(methods.get(i))) {
/dalvik/tools/dmtracedump/
H A DTraceDump.c147 struct MethodEntry **methods; /* list of methods in this class */ member in struct:ClassEntry
154 struct MethodEntry **methods; /* list of methods with same name */ member in struct:UniqueMethodEntry
175 int index; /* used after sorting to number methods */
189 MethodEntry* methods; /* 2 extra methods: "toplevel" and "unknown" */ member in struct:DataKeys
327 * methods into decreasing order of exclusive elapsed time.
342 /* If the elapsed times of two methods are equal, then sort them
365 * methods int
2545 findMatch(MethodEntry** methods, int size, MethodEntry* matchThis) argument
2899 MethodEntry** methods = parseMethodEntries(dataKeys); local
[all...]
/dalvik/dexlist/
H A DAndroid.mk16 # dexlist -- list all concrete methods found in a DEX file
/dalvik/dx/src/com/android/dx/command/findusages/
H A DFindUsages.java168 * Returns the methods with {@code memberNameIndex} declared by {@code
174 Set<Integer> methods = new HashSet<Integer>();
179 methods.add(methodIndex);
183 return methods;
/dalvik/dx/src/com/android/dx/dex/cf/
H A DAttributeTranslator.java50 * Utility methods that translate various classfile attributes
397 MethodList methods = cf.getMethods();
398 int sz = methods.size();
404 Method one = methods.get(i);
H A DCfTranslator.java240 * Processes the methods of the given class.
251 MethodList methods = cf.getMethods();
252 int sz = methods.size();
255 Method one = methods.get(i);
268 // There's no code for native or abstract methods.
280 RopMethod rmeth = Ropper.convert(concrete, advice, methods);
331 * ...but only native methods are actually allowed to be
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopperMachine.java73 /** {@code non-null:} list of methods from the class whose method is being converted */
74 private final MethodList methods; field in class:RopperMachine
131 * @param methods {@code non-null;} list of methods defined by the class
135 TranslationAdvice advice, MethodList methods) {
138 if (methods == null) {
139 throw new NullPointerException("methods == null");
152 this.methods = methods;
926 // specifies that instance methods an
134 RopperMachine(Ropper ropper, ConcreteMethod method, TranslationAdvice advice, MethodList methods) argument
[all...]
H A DRopper.java341 * @param methods {@code non-null;} list of methods defined by the class
346 TranslationAdvice advice, MethodList methods) {
348 Ropper r = new Ropper(method, advice, methods);
364 * @param methods {@code non-null;} list of methods defined by the class
367 private Ropper(ConcreteMethod method, TranslationAdvice advice, MethodList methods) { argument
380 this.machine = new RopperMachine(this, method, advice, methods);
345 convert(ConcreteMethod method, TranslationAdvice advice, MethodList methods) argument
/dalvik/libdex/
H A DDexSwapVerify.cpp1265 const DexMethodAnnotationsItem* methods = local
1268 dexGetMethodId(state->pDexFile, methods[0].methodIdx);
1470 /* Helper for verifyClassDataItem(), which checks a list of methods. */
1472 DexMethod* methods, bool expectDirect) {
1476 DexMethod* method = &methods[i];
1544 ALOGE("Trouble with direct methods");
1552 ALOGE("Trouble with virtual methods");
1471 verifyMethods(const CheckState* state, u4 size, DexMethod* methods, bool expectDirect) argument
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java799 private void transformMethods(Dex in, IndexMap indexMap, ClassData.Method[] methods) { argument
801 for (ClassData.Method method : methods) {
/dalvik/dx/etc/
H A Djasmin.jar ... .util.Vector vars java.util.Vector methods jas.SourceAttr source jas.SignatureAttr signature jas. ...

Completed in 329 milliseconds