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

1 2 3

  /external/clang/test/CodeGenCXX/
microsoft-abi-try-throw.cpp 2 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 -mconstructor-aliases -fcxx-exceptions -fexceptions -fno-rtti -DTHROW | FileCheck %s -check-prefix=THROW
4 // THROW-DAG: @"\01??_R0H@8" = linkonce_odr global %rtti.TypeDescriptor2 { i8** @"\01??_7type_info@@6B@", i8* null, [3 x i8] c".H\00" }, comdat
5 // THROW-DAG: @"_CT??_R0H@84" = linkonce_odr unnamed_addr constant %eh.CatchableType { i32 1, i8* bitcast (%rtti.TypeDescriptor2* @"\01??_R0H@8" to i8*), i32 0, i32 -1, i32 0, i32 4, i8* null }, section ".xdata", comdat
6 // THROW-DAG: @_CTA1H = linkonce_odr unnamed_addr constant %eh.CatchableTypeArray.1 { i32 1, [1 x %eh.CatchableType*] [%eh.CatchableType* @"_CT??_R0H@84"] }, section ".xdata", comdat
7 // THROW-DAG: @_TI1H = linkonce_odr unnamed_addr constant %eh.ThrowInfo { i32 0, i8* null, i8* null, i8* bitcast (%eh.CatchableTypeArray.1* @_CTA1H to i8*) }, section ".xdata", comdat
12 throw int(13); // no error
26 #ifdef THROW
27 // THROW: store i32 42, i32* %[[mem_for_throw:.*]], align 4
28 // THROW: %[[cast:.*]] = bitcast i32* %[[mem_for_throw]] to i8*
29 // THROW: call void @_CxxThrowException(i8* %[[cast]], %eh.ThrowInfo* @_TI1H
    [all...]
  /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);
  /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})
364 case THROW: return "throw";
414 throw new RuntimeException("Unrecognized IF regop: " + opcode);
  /external/turbine/java/com/google/turbine/parse/
Token.java 125 THROW("throw"),
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
CycleDetectingLockFactoryTest.java 61 CycleDetectingLockFactory.newInstance(Policies.THROW);
79 newInstanceWithExplicitOrdering(MyOrder.class, Policies.THROW);
85 newInstanceWithExplicitOrdering(OtherOrder.class, Policies.THROW);
107 // The opposite order should fail (Policies.THROW).
235 Lock myLock = CycleDetectingLockFactory.newInstance(Policies.THROW)
255 newInstanceWithExplicitOrdering(OtherOrder.class, Policies.THROW);
271 newInstanceWithExplicitOrdering(OtherOrder.class, Policies.THROW);
  /external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/
GeneratedJavaParserConstants.java 144 int THROW = 56;
383 "\"throw\"",
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/
ASTParserConstants.java 122 int THROW = 82;
361 "\"throw\"",
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/
ASTParserConstants.java 122 int THROW = 57;
336 "\"throw\"",
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
ExtraFieldUtils.java 70 throw new RuntimeException(c + " doesn\'t implement ZipExtraField"); //NOSONAR
72 throw new RuntimeException(c + " is not a concrete class"); //NOSONAR
74 throw new RuntimeException(c + "\'s no-arg constructor is not public"); //NOSONAR
106 return parse(data, true, UnparseableExtraField.THROW);
120 return parse(data, local, UnparseableExtraField.THROW);
148 throw new ZipException("bad extra field starting at "
172 throw new ZipException("unknown UnparseableExtraField key: "
185 throw (ZipException) new ZipException("Failed to parse corrupt ZIP extra field of type "
190 throw (ZipException) new ZipException(ie.getMessage()).initCause(ie);
284 * Key for "throw an exception" action
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Opcode.java 59 THROW,
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
TokenTypes.java 59 throw new AssertionError("Unknown EOL character sequence");
140 case THROW:
236 throw new AssertionError("Invalid token kind " + kind);
JavaToken.java 307 THROW(56),
576 return THROW;
690 throw new IllegalArgumentException(f("Token kind %i is unknown.", kind));
  /external/turbine/javatests/com/google/turbine/parse/
JavacLexer.java 145 case THROW:
146 return "THROW";
  /external/cldr/tools/java/org/unicode/cldr/util/
Builder.java 65 * If you try to add an item that is already there, or change the mapping, throw an exception.
67 THROW
115 case THROW:
117 throw new IllegalArgumentException("Map already contains " + e);
331 case THROW:
333 throw new IllegalArgumentException("Map already contains " + key);
  /dalvik/dx/src/com/android/dx/io/
Opcodes.java 84 public static final int THROW = 0x27;
OpcodeInfo.java 218 public static final Info THROW =
219 new Info(Opcodes.THROW, "throw",
    [all...]
  /external/v8/src/parsing/
token.h 135 K(THROW, "throw", 0) \
  /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 221 public static final Dop THROW =
222 new Dop(DalvOps.THROW, DalvOps.THROW,
223 Form11x.THE_ONE, false, "throw");
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 86 // Opcodes.THROW
386 MAP.put(Rops.THROW, Dops.THROW);
523 throw new RuntimeException("Unexpected basic type");
592 throw new RuntimeException("Unexpected constant type");
597 throw new RuntimeException("unknown rop: " + rop);
  /external/guava/guava/src/com/google/common/util/concurrent/
CycleDetectingLockFactory.java 60 * <li>THROW
181 * throw the given {@code exception} and/or execute other desired logic.
205 THROW {
208 throw e;
339 nodes.get(i).checkAcquiredLocks(Policies.THROW, nodes.subList(0, i));
374 * CycleDetectingLockFactory.newInstanceWithExplicitOrdering(Policies.THROW);
382 * lock2.lock(); // will throw an IllegalStateException}</pre>
408 * lockB.lock(); // will throw an IllegalStateException
409 * lockC.lock(); // will throw an IllegalStateException
563 * {@code Policies.THROW}
    [all...]
  /art/dexdump/
dexdump_cfg.cc 267 (inst->Opcode() == Instruction::THROW) ||
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 135 * blocks containing the real return or throw statements must be
269 throw new RuntimeException(
278 * end in a RETURN or a THROW. Throws a runtime exception on error.
289 && opcode != Rops.THROW) {
290 throw new RuntimeException("Exit predecessor must end"
313 throw new RuntimeException(
  /art/compiler/optimizing/
block_builder.cc 191 } else if (instruction.IsReturn() || (instruction.Opcode() == Instruction::THROW)) {
294 // not covered by a TryItem. This prevents us from creating a throw-catch

Completed in 713 milliseconds

1 2 3