Searched defs:meth (Results 1 - 7 of 7) sorted by relevance

/dalvik/dx/src/com/android/dx/ssa/
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);
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...]
/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 DBaseDumper.java111 * @param meth method to process
114 static int computeParamWidth(ConcreteMethod meth, boolean isStatic) { argument
115 return meth.getEffectiveDescriptor().getParameterTypes().
/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...]
/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.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...]

Completed in 1020 milliseconds