/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
RegOps.java | 177 /** {@code x: Throwable :: throw(x)} */ 178 public static final int THROW = 35; 209 * throw {@code ClassCastException}) 348 case THROW: return "throw"; 396 throw new RuntimeException("Unrecognized IF regop: " + opcode);
|
Rops.java | 632 /** {@code x: Throwable :: throw(x)} */ 633 public static final Rop THROW = 634 new Rop(RegOps.THROW, Type.VOID, StdTypeList.THROWABLE, 635 StdTypeList.THROWABLE, "throw"); [all...] |
/dalvik/dx/src/com/android/dx/rop/code/ |
RegOps.java | 177 /** {@code x: Throwable :: throw(x)} */ 178 public static final int THROW = 35; 209 * throw {@code ClassCastException}) 348 case THROW: return "throw"; 396 throw new RuntimeException("Unrecognized IF regop: " + opcode);
|
Rops.java | 632 /** {@code x: Throwable :: throw(x)} */ 633 public static final Rop THROW = 634 new Rop(RegOps.THROW, Type.VOID, StdTypeList.THROWABLE, 635 StdTypeList.THROWABLE, "throw"); [all...] |
/external/javassist/src/main/javassist/compiler/ |
TokenId.java | 59 int THROW = 340;
|
/external/webkit/Source/JavaScriptCore/parser/ |
JSParser.h | 69 THROW,
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
cursesp.h | 89 THROW(new NCursesPanelException (this, err));
|
cursslk.h | 121 THROW(new NCursesException (msg));
|
cursesf.h | 66 THROW(new NCursesFormException (err)); 114 THROW(new NCursesFormException (err)); 396 THROW(new NCursesFormException (err));
|
cursesm.h | 58 THROW(new NCursesMenuException (err)); 257 THROW(new NCursesMenuException (this, err));
|
etip.h | 340 inline void THROW(const NCursesException *e) { 365 throw *e; 368 #define THROWS(s) throw(s)
|
/external/v8/src/ |
token.h | 150 K(THROW, "throw", 0) \
|
preparser.cc | 174 case i::Token::THROW: 510 // 'throw' [no line terminator] Expression ';' 512 Expect(i::Token::THROW, CHECK_OK); [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
RopToDop.java | 209 MAP.put(Rops.THROW, Dops.THROW); 344 throw new RuntimeException("Unexpected basic type"); 413 throw new RuntimeException("unknown rop: " + rop);
|
DalvOps.java | 73 public static final int THROW = 0x27;
|
Dops.java | 219 public static final Dop THROW = 220 new Dop(DalvOps.THROW, DalvOps.THROW, 221 Form11x.THE_ONE, false, "throw"); [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
RopToDop.java | 85 // Opcodes.THROW 381 MAP.put(Rops.THROW, Dops.THROW); 516 throw new RuntimeException("Unexpected basic type"); 585 throw new RuntimeException("unknown rop: " + rop);
|
Dops.java | 225 public static final Dop THROW = 226 new Dop(Opcodes.THROW, Opcodes.THROW, [all...] |
/dalvik/dx/src/com/android/dx/io/ |
Opcodes.java | 83 public static final int THROW = 0x27;
|
OpcodeInfo.java | 218 public static final Info THROW = 219 new Info(Opcodes.THROW, "throw", [all...] |
/dalvik/dx/src/com/android/dx/ssa/back/ |
SsaToRop.java | 136 * blocks containing the real return or throw statements must be 266 throw new RuntimeException( 275 * end in a RETURN or a THROW. Throws a runtime exception on error. 286 && opcode != Rops.THROW) { 287 throw new RuntimeException("Exit predecessor must end" 310 throw new RuntimeException(
|
/dalvik/dx/src/com/android/dx/ssa/ |
EscapeAnalysis.java | 465 case RegOps.THROW: 554 * identify ArrayIndexOutOfBounds exceptions and throw them if detected. 586 // Throw an exception if the index is out of bounds 605 // Throw an exception if the index is out of bounds 728 * with an actual throw of the exception. 763 // Add another successor block to throw the new exception 768 RegOps.THROW, null); [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
RopperMachine.java | 132 throw new NullPointerException("ropper == null"); 136 throw new NullPointerException("advice == null"); 203 * last instruction in the block is one of the ones that can throw. 248 * call to startBlock() can throw. 470 throw new RuntimeException( 687 throw new RuntimeException("shouldn't happen"); 704 throw new RuntimeException("shouldn't happen"); 727 throw new NullPointerException("op == null"); 731 throw new NullPointerException("pos == null"); 739 throw new SimException("return op mismatch: " + op + ", " [all...] |
Ropper.java | 257 throw ex; 270 throw new NullPointerException("method == null"); 274 throw new NullPointerException("advice == null"); 468 throw new IllegalArgumentException("no such label " + 484 throw new NullPointerException("block == null"); 505 throw new NullPointerException("block == null"); 544 throw new NullPointerException("block == null"); 586 throw new RuntimeException("Invalid label " 642 throw ex; 761 throw ex [all...] |
/dalvik/dx/src/com/android/dx/gen/ |
Code.java | 85 throw new IllegalStateException("Cannot allocate locals after adding instructions"); 98 throw new IllegalStateException("static methods cannot access 'this'"); 106 throw new IllegalArgumentException( 125 throw new AssertionError(); 173 throw new IllegalStateException("already marked"); 177 jump(label); // blocks must end with a branch, return or throw 189 throw new IllegalArgumentException("Already caught: " + throwable); 199 throw new IllegalArgumentException("No catch clause: " + throwable); 207 addInstruction(new ThrowingInsn(Rops.THROW, sourcePosition, 229 throw new IllegalStateException("no current label") [all...] |