HomeSort by relevance Sort by last modified time
    Searched defs:Throw (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/compiler-rt/lib/asan/tests/
asan_exceptions_test.cc 11 void Throw(const char& arg) const {
13 throw arg;
21 a.Throw('c');
  /external/compiler-rt/test/asan/TestCases/
throw_catch.cc 14 void Throw() {
16 fprintf(stderr, "Throw: %p\n", &local);
17 throw 1;
24 Throw();
47 Throw();
contiguous_container.cc 43 void Throw() { throw 1; }
48 Throw();
throw_call_test.cc 21 throw 42;
25 void Throw() {
32 fprintf(stderr, "Throw stack = %p\n", &a);
47 Throw();
throw_invoke_test.cc 18 throw 42;
20 throw 1.;
26 void Throw() {
33 fprintf(stderr, "Throw stack = %p\n", &a);
48 Throw();
  /external/libpng/contrib/visupng/
cexcept.h 69 The Try/Catch and Throw statements (described below) implicitly
97 Try/Catch/Throw macros, so it shouldn't be expensive or have side
118 The Try/Catch/Throw macros are capitalized in order to avoid
132 If a Throw that uses the same exception context as the Try/Catch is
137 such Throw is executed, then the assignment is not performed, and
151 from a Try clause, it will suffice to use Throw, and then return
163 Throw expression;
165 A Throw statement is very much like a return statement, except that
167 where the current function was called, Throw jumps back to the Catch
243 #define Throw \
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
swapcontext_test.cc 21 void Throw() {
22 throw 1;
28 Throw();
  /art/test/003-omnibus-opcodes/src/
Throw.java 20 public class Throw {
22 throw new NullPointerException("npe!");
26 throw new ArithmeticException();
30 System.out.println("Throw.one");
43 System.out.println("Throw.twoA");
65 System.out.println("Throw.twoN");
87 System.out.println("Throw.rethrow");
102 throw (NullPointerException) ex;
117 Throw th = new Throw();
    [all...]
Main.java 50 Throw.run();
68 // We and the RI throw ClassNotFoundException, but that isn't declared so javac
78 throw new Error();
  /external/clang/test/CXX/except/except.spec/
p14.cpp 8 virtual ~X0() throw(A); // expected-note{{overridden virtual function is here}}
11 virtual ~X1() throw(B); // expected-note{{overridden virtual function is here}}
17 CA0 &operator=(const CA0&) throw(A);
20 CA1 &operator=(const CA1&) throw(B);
25 CA2 &(CA2::*captr1)(const CA2&) throw(A, B) = &CA2::operator=;
26 CA2 &(CA2::*captr2)(const CA2&) throw(A, B, C) = &CA2::operator=;
27 CA2 &(CA2::*captr3)(const CA2&) throw(A) = &CA2::operator=; // expected-error{{target exception specification is not superset of source}}
28 CA2 &(CA2::*captr4)(const CA2&) throw(B) = &CA2::operator=; // expected-error{{target exception specification is not superset of source}}
36 int inClassInit = (throw B(), 0);
40 static_assert(noexcept(IC0()), "IC0() does not throw");
    [all...]
  /external/clang/include/clang/AST/
StmtObjC.h 311 /// \brief Represents Objective-C's \@throw statement.
313 Stmt *Throw;
317 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) {
323 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); }
324 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); }
325 void setThrowExpr(Stmt *S) { Throw = S; }
332 return Throw ? Throw->getLocEnd() : AtThrowLoc;
339 child_range children() { return child_range(&Throw, &Throw+1);
    [all...]
  /external/clang/test/SemaCXX/
member-init.cpp 40 struct Throw { ThrowCtor tc = 42; };
43 static_assert(!noexcept(Throw()), "incorrect exception specification");
  /art/runtime/
check_jni.cc     [all...]
  /external/chromium_org/v8/src/
d8.cc 60 static Handle<Value> Throw(Isolate* isolate, const char* message) {
277 Throw(args.GetIsolate(), "Invalid argument");
284 Throw(args.GetIsolate(), "Invalid realm index");
315 Throw(args.GetIsolate(), "Invalid argument");
361 Throw(args.GetIsolate(), "Invalid realm index");
385 Throw(args.GetIsolate(), "Invalid argument");
453 Throw(args.GetIsolate(), "Error loading file");
458 Throw(args.GetIsolate(), "Error loading file");
503 Throw(args.GetIsolate(), "Error loading file");
508 Throw(args.GetIsolate(), "Error loading file")
    [all...]
isolate.cc 850 Object* Isolate::Throw(Object* exception, MessageLocation* location) {
872 return Throw(heap_.illegal_access_string());
877 return Throw(*factory()->NewRangeError(
883 // When scheduling a throw we first throw the exception to get the
885 Throw(exception);
914 // Re-throw the exception to avoid getting repeated error reporting.
    [all...]
isolate.h 657 // This method is called by the api after operations that may throw
721 // of Throw() as its return value.
722 Object* Throw(Object* exception, MessageLocation* location = NULL);
725 MUST_USE_RESULT MaybeHandle<T> Throw(Handle<Object> exception,
727 Throw(*exception, location);
731 // Re-throw an exception. This involves no error reporting since
    [all...]
  /development/ndk/platforms/android-3/include/
jni.h 187 jint (*Throw)(JNIEnv*, jthrowable);
539 jint Throw(jthrowable obj)
540 { return functions->Throw(this, obj); }
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/java/
jni.h 225 jint (JNICALL *Throw)
746 jint Throw(jthrowable obj) {
747 return functions->Throw(this, obj);
    [all...]
  /external/chromium_org/v8/src/ia32/
macro-assembler-ia32.cc     [all...]
  /external/chromium_org/v8/src/mips/
macro-assembler-mips.cc     [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.cc     [all...]
  /external/chromium_org/v8/src/x87/
macro-assembler-x87.cc 1025 void MacroAssembler::Throw(Register value) {
    [all...]
  /prebuilts/ndk/9/platforms/android-12/arch-arm/usr/include/
jni.h 187 jint (*Throw)(JNIEnv*, jthrowable);
539 jint Throw(jthrowable obj)
540 { return functions->Throw(this, obj); }
    [all...]
  /prebuilts/ndk/9/platforms/android-12/arch-mips/usr/include/
jni.h 187 jint (*Throw)(JNIEnv*, jthrowable);
539 jint Throw(jthrowable obj)
540 { return functions->Throw(this, obj); }
    [all...]
  /prebuilts/ndk/9/platforms/android-12/arch-x86/usr/include/
jni.h 187 jint (*Throw)(JNIEnv*, jthrowable);
539 jint Throw(jthrowable obj)
540 { return functions->Throw(this, obj); }
    [all...]

Completed in 1977 milliseconds

1 2 3 4