Searched refs:targ (Results 1 – 5 of 5) sorted by relevance
/dalvik/vm/analysis/ |
D | DexVerify.cpp | 612 u4 targ; in checkSwitchTargets() local 673 for (targ = 1; targ < switchCount; targ++) { in checkSwitchTargets() 674 s4 key = (s4) switchInsns[offsetToKeys + targ*2] | in checkSwitchTargets() 675 (s4) (switchInsns[offsetToKeys + targ*2 +1] << 16); in checkSwitchTargets() 687 for (targ = 0; targ < switchCount; targ++) { in checkSwitchTargets() 688 offset = (s4) switchInsns[offsetToTargets + targ*2] | in checkSwitchTargets() 689 (s4) (switchInsns[offsetToTargets + targ*2 +1] << 16); in checkSwitchTargets() 696 offset, absOffset, curOffset, targ); in checkSwitchTargets()
|
D | CodeVerify.cpp | 5940 int offsetToTargets, targ; in verifyInstruction() local 5952 for (targ = 0; targ < switchCount; targ++) { in verifyInstruction() 5956 offset = switchInsns[offsetToTargets + targ*2] | in verifyInstruction() 5957 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16); in verifyInstruction()
|
/dalvik/dexdump/ |
D | DexDump.cpp | 907 s4 targ = (s4) pDecInsn->vA; in dumpInstruction() local 909 insnIdx + targ, in dumpInstruction() 910 (targ < 0) ? '-' : '+', in dumpInstruction() 911 (targ < 0) ? -targ : targ); in dumpInstruction() 919 s4 targ = (s4) pDecInsn->vB; in dumpInstruction() local 921 insnIdx + targ, in dumpInstruction() 922 (targ < 0) ? '-' : '+', in dumpInstruction() 923 (targ < 0) ? -targ : targ); in dumpInstruction() 955 s4 targ = (s4) pDecInsn->vC; in dumpInstruction() local 957 insnIdx + targ, in dumpInstruction() [all …]
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | Ropper.java | 809 int targ = one.getHandlerPc(); in processBlock() local 816 mergeAndWorkAsNecessary(targ, block.getLabel(), in processBlock() 820 Hex.u2(targ)); in processBlock() 829 Type already = catchTypes[targ]; in processBlock() 831 catchTypes[targ] = exceptionClass.getClassType(); in processBlock() 833 catchTypes[targ] = Type.OBJECT; in processBlock() 840 newSucc.add(getExceptionSetupLabel(targ)); in processBlock()
|
/dalvik/tests/046-reflect/src/ |
D | Main.java | 338 Target targ; in run() local 344 targ = cons.newInstance(args); in run() 345 targ.myMethod(17); in run()
|