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

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DMethodAnalyzer.java2918 private void verifyInvoke(AnalyzedInstruction analyzedInstruction, int invokeType) { argument
2920 verifyInvokeCommon(analyzedInstruction, false, invokeType, new Format35cRegisterIterator(instruction));
2928 private void verifyInvokeRange(AnalyzedInstruction analyzedInstruction, int invokeType) { argument
2930 verifyInvokeCommon(analyzedInstruction, true, invokeType, new Format3rcRegisterIterator(instruction));
2991 private void verifyInvokeCommon(AnalyzedInstruction analyzedInstruction, boolean isRange, int invokeType, argument
3005 if ((invokeType & INVOKE_DIRECT) != 0) {
3014 if ((invokeType & INVOKE_INTERFACE) != 0) {
3028 if ((invokeType & INVOKE_SUPER) != 0) {
3060 if ((invokeType & INVOKE_STATIC) == 0) {
3072 if ((invokeType
[all...]

Completed in 180 milliseconds