Searched refs:meth (Results 1 - 12 of 12) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/direct/
H A DMethodListParser.java80 StdMethod meth =
83 methods.set(n, meth);
84 return meth;
/dalvik/dx/src/com/android/dx/ssa/
H A DDominators.java48 private final SsaMethod meth; field in class:Dominators
64 * @param meth {@code non-null;} method to process
68 private Dominators(SsaMethod meth, DomFront.DomInfo[] domInfos, argument
70 this.meth = meth;
73 this.blocks = meth.getBlocks();
82 * @param meth {@code non-null;} method to process
86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, argument
88 Dominators result = new Dominators(meth, domInfos, postdom);
168 * @param meth {
[all...]
H A DDomFront.java33 private final SsaMethod meth; field in class:DomFront
56 * @param meth {@code non-null;} method to process
58 public DomFront(SsaMethod meth) { argument
59 this.meth = meth;
60 nodes = meth.getBlocks();
86 Dominators methDom = Dominators.make(meth, domInfos, false);
/dalvik/dx/src/com/android/dx/command/dump/
H A DBlockDumper.java191 ConcreteMethod meth =
195 ropDump(meth);
197 regularDump(meth);
204 * @param meth {@code non-null;} method data to dump
206 private void regularDump(ConcreteMethod meth) { argument
207 BytecodeArray code = meth.getCode();
209 ByteBlockList list = BasicBlocker.identifyBlocks(meth);
276 * @param meth {@code non-null;} method data to dump
278 private void ropDump(ConcreteMethod meth) { argument
280 BytecodeArray code = meth
[all...]
H A DDotDumper.java120 ConcreteMethod meth = new ConcreteMethod((Method) member, classFile,
125 Ropper.convert(meth, advice, classFile.getMethods(), dexOptions);
128 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
130 BaseDumper.computeParamWidth(meth, isStatic), isStatic,
H A DSsaDumper.java90 ConcreteMethod meth =
93 RopMethod rmeth = Ropper.convert(meth, advice, classFile.getMethods(), dexOptions);
95 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
96 int paramWidth = computeParamWidth(meth, isStatic);
H A DBaseDumper.java111 * @param meth method to process
114 static int computeParamWidth(ConcreteMethod meth, boolean isStatic) { argument
115 return meth.getEffectiveDescriptor().getParameterTypes().
/dalvik/dx/src/com/android/dx/rop/code/
H A DRops.java1209 Prototype meth = cstMeth.getPrototype();
1211 meth = meth.withFirstParameter(definer.getClassType());
1212 return opInvokeVirtual(meth);
1216 Prototype meth = cstMeth.getPrototype();
1218 meth = meth.withFirstParameter(definer.getClassType());
1219 return opInvokeSuper(meth);
1223 Prototype meth = cstMeth.getPrototype();
1225 meth
1996 opInvokeStatic(Prototype meth) argument
2010 opInvokeVirtual(Prototype meth) argument
2024 opInvokeSuper(Prototype meth) argument
2038 opInvokeDirect(Prototype meth) argument
2052 opInvokeInterface(Prototype meth) argument
2066 opInvokePolymorphic(Prototype meth) argument
2080 opInvokeCustom(Prototype meth) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/cf/
H A DCfTranslator.java286 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat());
292 boolean isConstructor = meth.isInstanceInit() ||
293 meth.isClassInit();
313 paramSize = meth.getParameterWordCount(isStatic);
374 new EncodedMethod(meth, accessFlags, code, exceptions);
376 if (meth.isInstanceInit() || meth.isClassInit() ||
386 out.addMethodAnnotations(meth, annotations, dexFile);
392 out.addParameterAnnotations(meth, list, dexFile);
394 dexFile.getMethodIds().intern(meth);
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRops.java1208 Prototype meth = cstMeth.getPrototype();
1210 meth = meth.withFirstParameter(definer.getClassType());
1211 return opInvokeVirtual(meth);
1215 Prototype meth = cstMeth.getPrototype();
1217 meth = meth.withFirstParameter(definer.getClassType());
1218 return opInvokeSuper(meth);
1222 Prototype meth = cstMeth.getPrototype();
1224 meth
1979 opInvokeStatic(Prototype meth) argument
1993 opInvokeVirtual(Prototype meth) argument
2007 opInvokeSuper(Prototype meth) argument
2021 opInvokeDirect(Prototype meth) argument
2035 opInvokeInterface(Prototype meth) argument
[all...]
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java1092 for (EncodedMethod meth : allMeths) {
1093 String methName = meth.getName().getString();
1096 meths.put(meth.getRef().getNat(), meth);
1107 for (EncodedMethod meth : meths.values()) {
1109 meth.debugPrint(pw, args.verboseDump);
1121 clazz.getMethodAnnotations(meth.getRef());
1123 clazz.getParameterAnnotations(meth.getRef());
/dalvik/libdex/
H A DDexSwapVerify.cpp218 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); local
219 return meth->classIdx == definingClass;
1662 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); local
1663 return meth->classIdx;
1668 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); local
1669 return meth->classIdx;
1697 const DexMethod* meth = &classData->directMethods[i]; local
1698 okay = dexDataMapVerify0Ok(state->pDataMap, meth->codeOff,
1700 && verifyMethodDefiner(state, definingClass, meth->methodIdx);
1705 const DexMethod* meth local
[all...]

Completed in 293 milliseconds