HomeSort by relevance Sort by last modified time
    Searched refs:THROW (Results 26 - 50 of 73) sorted by null

12 3

  /external/dexmaker/src/dx/java/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...]
  /art/runtime/
dex_instruction.h 348 // Returns true if this instruction can throw.
360 return IsBranch() || IsReturn() || Opcode() == THROW;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
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/ssa/back/
SsaToRop.java 135 * blocks containing the real return or throw statements must be
265 throw new RuntimeException(
274 * end in a RETURN or a THROW. Throws a runtime exception on error.
285 && opcode != Rops.THROW) {
286 throw new RuntimeException("Exit predecessor must end"
309 throw new RuntimeException(
  /external/dexmaker/src/dx/java/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...]
  /external/dexmaker/src/dx/java/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/io/
OpcodeInfo.java 218 public static final Info THROW =
219 new Info(Opcodes.THROW, "throw",
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
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/dex/code/
Dops.java 222 public static final Dop THROW =
223 new Dop(Opcodes.THROW, Opcodes.THROW,
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
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/dexmaker/src/dx/java/com/android/dx/rop/code/
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/ssa/
EscapeAnalysis.java 464 case RegOps.THROW:
553 * identify ArrayIndexOutOfBounds exceptions and throw them if detected.
585 // Throw an exception if the index is out of bounds
604 // Throw an exception if the index is out of bounds
727 * with an actual throw of the exception.
762 // Add another successor block to throw the new exception
767 RegOps.THROW, null);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
JavaScriptFormatter.js 176 ["FOR", "for"], ["FUNCTION", "function"], ["IF", "if"], ["NEW", "new"], ["RETURN", "return"], ["SWITCH", "switch"], ["THIS", "this"], ["THROW", "throw"], ["TRY", "try"], ["VAR", "var"],
227 throw "Unknown token type " + uglifyToken.type;
254 throw "Unexpected EOS token";
267 throw "Unexpected token in consume: expected " + token + ", actual " + next;
274 throw "Unexpected token: expected " + token + ", actual " + next;
338 case Tokens.THROW:
520 this._expect(Tokens.THROW);
  /external/dexmaker/src/dx/java/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...]
  /art/compiler/dex/
local_value_numbering.cc 37 case Instruction::THROW:
mir_graph.cc 461 if (insn->dalvikInsn.opcode == Instruction::THROW) {
464 // Force creation of new block following THROW via side-effect
469 // Don't split a THROW that can't rethrow - we're done.
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 131 throw new NullPointerException("ropper == null");
135 throw new NullPointerException("advice == null");
202 * last instruction in the block is one of the ones that can throw.
247 * call to startBlock() can throw.
469 throw new RuntimeException(
686 throw new RuntimeException("shouldn't happen");
703 throw new RuntimeException("shouldn't happen");
726 throw new NullPointerException("op == null");
730 throw new NullPointerException("pos == null");
738 throw new SimException("return op mismatch: " + op + ", "
    [all...]
  /external/chromium_org/v8/src/
preparser.cc 271 case i::Token::THROW:
729 // 'throw' [no line terminator] Expression ';'
731 Expect(i::Token::THROW, CHECK_OK);
    [all...]
  /external/v8/src/
preparser.cc 265 case i::Token::THROW:
705 // 'throw' [no line terminator] Expression ';'
707 Expect(i::Token::THROW, CHECK_OK);
    [all...]
  /art/compiler/dex/quick/
mir_to_lir.cc 198 case Instruction::THROW:
  /external/dexmaker/src/main/java/com/google/dexmaker/
Code.java 108 * containing no return statements must either loop infinitely or throw
110 * jump, return or throw.
116 * they throw a {@link Throwable} assignable to that type. Use {@link
119 * <p>Throw an throwable by first assigning it to a local and then calling
230 throw new IllegalStateException("Cannot allocate locals after adding instructions");
254 throw new IllegalStateException("static methods cannot access 'this'");
262 throw new IllegalArgumentException(
281 throw new AssertionError();
322 throw new IllegalArgumentException("Cannot adopt label; it belongs to another Code");
334 throw new IllegalStateException("already marked")
    [all...]
  /external/javassist/src/main/javassist/compiler/
Parser.java 54 throw new SyntaxError(lex);
87 throw new CompileError(
90 throw new SyntaxError(lex);
108 throw new SyntaxError(lex);
124 throw new SyntaxError(lex);
209 throw new SyntaxError(lex);
269 else if (t == THROW)
283 throw new SyntaxError(lex);
335 throw new SyntaxError(lex);
339 throw new SyntaxError(lex)
    [all...]

Completed in 1405 milliseconds

12 3