Searched refs:meth (Results 1 - 13 of 13) 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.java194 ConcreteMethod meth =
198 ropDump(meth);
200 regularDump(meth);
207 * @param meth {@code non-null;} method data to dump
209 private void regularDump(ConcreteMethod meth) { argument
210 BytecodeArray code = meth.getCode();
212 ByteBlockList list = BasicBlocker.identifyBlocks(meth);
282 * @param meth {@code non-null;} method data to dump
284 private void ropDump(ConcreteMethod meth) { argument
286 BytecodeArray code = meth
[all...]
H A DDotDumper.java113 ConcreteMethod meth = new ConcreteMethod((Method) member, classFile,
118 Ropper.convert(meth, advice, classFile.getMethods());
121 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
123 BaseDumper.computeParamWidth(meth, isStatic), isStatic,
H A DSsaDumper.java90 ConcreteMethod meth =
93 RopMethod rmeth = Ropper.convert(meth, advice, classFile.getMethods());
95 boolean isStatic = AccessFlags.isStatic(meth.getAccessFlags());
96 int paramWidth = computeParamWidth(meth, isStatic);
H A DBaseDumper.java105 * @param meth method to process
108 static int computeParamWidth(ConcreteMethod meth, boolean isStatic) { argument
109 return meth.getEffectiveDescriptor().getParameterTypes().
/dalvik/dx/src/com/android/dx/dex/cf/
H A DCfTranslator.java257 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat());
263 boolean isConstructor = meth.isInstanceInit() ||
264 meth.isClassInit();
284 paramSize = meth.getParameterWordCount(isStatic);
345 new EncodedMethod(meth, accessFlags, code, exceptions);
347 if (meth.isInstanceInit() || meth.isClassInit() ||
357 out.addMethodAnnotations(meth, annotations, dexFile);
363 out.addParameterAnnotations(meth, list, dexFile);
365 dexFile.getMethodIds().intern(meth);
[all...]
/dalvik/dexlist/
H A DDexList.cpp268 char* meth = strrchr(gParms.argCopy, '.'); local
269 if (meth == NULL) {
274 *meth = '\0';
276 gParms.methodToFind = meth+1;
/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/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
1983 opInvokeStatic(Prototype meth) argument
1997 opInvokeVirtual(Prototype meth) argument
2011 opInvokeSuper(Prototype meth) argument
2025 opInvokeDirect(Prototype meth) argument
2039 opInvokeInterface(Prototype meth) argument
[all...]
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java1041 for (EncodedMethod meth : allMeths) {
1042 String methName = meth.getName().getString();
1045 meths.put(meth.getRef().getNat(), meth);
1056 for (EncodedMethod meth : meths.values()) {
1058 meth.debugPrint(pw, args.verboseDump);
1070 clazz.getMethodAnnotations(meth.getRef());
1072 clazz.getParameterAnnotations(meth.getRef());
/dalvik/libdex/
H A DDexSwapVerify.cpp242 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); local
243 return meth->classIdx == definingClass;
1599 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); local
1600 return meth->classIdx;
1605 const DexMethodId* meth = dexGetMethodId(state->pDexFile, methodIdx); local
1606 return meth->classIdx;
1634 const DexMethod* meth = &classData->directMethods[i]; local
1635 okay = dexDataMapVerify0Ok(state->pDataMap, meth->codeOff,
1637 && verifyMethodDefiner(state, definingClass, meth->methodIdx);
1642 const DexMethod* meth local
[all...]

Completed in 335 milliseconds