Searched refs:targ (Results 1 - 5 of 5) sorted by relevance

/dalvik/dexdump/
H A DDexDump.cpp911 s4 targ = (s4) pDecInsn->vA; local
913 insnIdx + targ,
914 (targ < 0) ? '-' : '+',
915 (targ < 0) ? -targ : targ);
923 s4 targ = (s4) pDecInsn->vB; local
925 insnIdx + targ,
926 (targ < 0) ? '-' : '+',
927 (targ <
959 s4 targ = (s4) pDecInsn->vC; local
[all...]
/dalvik/vm/analysis/
H A DDexVerify.cpp612 u4 targ; local
673 for (targ = 1; targ < switchCount; targ++) {
674 s4 key = (s4) switchInsns[offsetToKeys + targ*2] |
675 (s4) (switchInsns[offsetToKeys + targ*2 +1] << 16);
687 for (targ = 0; targ < switchCount; targ++) {
688 offset = (s4) switchInsns[offsetToTargets + targ*
[all...]
H A DCodeVerify.cpp2604 //dumpRegTypes(vdata, targetRegs, 0, "targ", NULL, 0);
5940 int offsetToTargets, targ; local
5952 for (targ = 0; targ < switchCount; targ++) {
5956 offset = switchInsns[offsetToTargets + targ*2] |
5957 (((s4) switchInsns[offsetToTargets + targ*2 +1]) << 16);
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopper.java823 int targ = one.getHandlerPc();
830 mergeAndWorkAsNecessary(targ, block.getLabel(),
834 Hex.u2(targ));
843 Type already = catchTypes[targ];
845 catchTypes[targ] = exceptionClass.getClassType();
847 catchTypes[targ] = Type.OBJECT;
852 * label getExceptionSetupLabel(targ).
854 newSucc.add(getExceptionSetupLabel(targ));
/dalvik/tests/046-reflect/src/
H A DMain.java338 Target targ;
344 targ = cons.newInstance(args);
345 targ.myMethod(17);

Completed in 2079 milliseconds