HomeSort by relevance Sort by last modified time
    Searched refs:THROW (Results 1 - 20 of 20) sorted by null

  /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...]
  /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 148 K(THROW, "throw", 0) \
scanner.cc 301 if (MatchKeywordStart(input, "throw", 2, Token::THROW)) return;
    [all...]
parser.cc 278 // Generate AST node that throw a ReferenceError with the given type.
281 // Generate AST node that throw a SyntaxError with the given
286 // Generate AST node that throw a TypeError with the given
    [all...]
  /dalvik/dx/src/com/android/dx/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/ssa/back/
SsaToRop.java 142 * blocks containing the real return or throw statements must be
272 throw new RuntimeException(
281 * end in a RETURN or a THROW. Throws a runtime exception on error.
292 && opcode != Rops.THROW) {
293 throw new RuntimeException("Exit predecessor must end"
316 throw new RuntimeException(
  /external/webkit/JavaScriptCore/parser/
Lexer.cpp 207 return m_lastToken == CONTINUE || m_lastToken == BREAK || m_lastToken == RETURN || m_lastToken == THROW;
Grammar.y 202 %token THROW TRY CATCH FINALLY
    [all...]
  /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 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(
665 throw new RuntimeException("shouldn't happen");
682 throw new RuntimeException("shouldn't happen");
705 throw new NullPointerException("op == null");
709 throw new NullPointerException("pos == null");
717 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...]
  /prebuilt/sdk/tools/lib/
dx.jar 

Completed in 909 milliseconds