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

12 3 4

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
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(
  /frameworks/opt/net/wifi/service/jni/
com_android_server_wifi_WifiNative.cpp 247 THROW(env, "android_net_wifi_getInterfaces no interfaces");
252 THROW(env, "android_net_wifi_getInterfaces null interface array");
257 THROW(env, "Too many interfaces");
263 THROW(env, "Error in accessing array");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
JavaScriptFormatter.js 67 throw "Unexpected EOS token";
83 throw "Unexpected token in consume: expected " + token + ", actual " + next;
93 throw "Unexpected token: expected " + token + ", actual " + next;
100 throw "Unexpected token: expected javascript identifier, actual " + this._token.value;
170 case FormatterWorker.JavaScriptTokens.THROW:
352 this._expect(FormatterWorker.JavaScriptTokens.THROW);
    [all...]
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 218 public static final Info THROW =
219 new Info(Opcodes.THROW, "throw",
    [all...]
  /art/runtime/
dex_instruction.h 474 // Returns true if this instruction can throw.
486 return IsBranch() || IsReturn() || Opcode() == THROW;
dex_instruction_list.h 60 V(0x27, THROW, "throw", k11x, false, kNone, kThrow, kVerifyRegA) \
  /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/dex/code/
Dops.java 225 public static final Dop THROW =
226 new Dop(Opcodes.THROW, Opcodes.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/v8/src/
preparser.cc 295 case Token::THROW:
746 // 'throw' [no line terminator] Expression ';'
748 Expect(Token::THROW, CHECK_OK);
scanner.cc 961 KEYWORD("throw", Token::THROW) \
    [all...]
  /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/
frontend.cc 197 Instruction::THROW,
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 139 throw new NullPointerException("methods == null");
143 throw new NullPointerException("ropper == null");
147 throw new NullPointerException("advice == null");
215 * last instruction in the block is one of the ones that can throw.
260 * call to startBlock() can throw.
482 throw new RuntimeException(
699 throw new RuntimeException("shouldn't happen");
716 throw new RuntimeException("shouldn't happen");
739 throw new NullPointerException("op == null");
743 throw new NullPointerException("pos == null")
    [all...]
Ropper.java 354 throw ex;
369 throw new NullPointerException("method == null");
373 throw new NullPointerException("advice == null");
571 throw new IllegalArgumentException("no such label " +
587 throw new NullPointerException("block == null");
608 throw new NullPointerException("block == null");
647 throw new NullPointerException("block == null");
689 throw new RuntimeException("Invalid label "
745 throw ex;
864 throw ex
    [all...]
  /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...]
  /art/compiler/dex/quick/
mir_to_lir.cc 550 case Instruction::THROW:
    [all...]

Completed in 1162 milliseconds

12 3 4