HomeSort by relevance Sort by last modified time
    Searched defs:Throw (Results 1 - 25 of 78) 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/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/lib/asan/lit_tests/TestCases/Linux/
swapcontext_test.cc 21 void Throw() {
22 throw 1;
28 Throw();
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
throw_call_test.cc 14 throw 42;
18 void Throw() {
25 fprintf(stderr, "Throw stack = %p\n", &a);
40 Throw();
throw_invoke_test.cc 14 throw 42;
16 throw 1.;
22 void Throw() {
29 fprintf(stderr, "Throw stack = %p\n", &a);
44 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
77 throw new Error();
  /dalvik/tests/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 29 throw new RuntimeException();
59 Throw.run();
  /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 312 /// \brief Represents Objective-C's \@throw statement.
314 Stmt *Throw;
318 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) {
324 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); }
325 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); }
326 void setThrowExpr(Stmt *S) { Throw = S; }
333 return Throw ? Throw->getLocEnd() : AtThrowLoc;
340 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...]
jni_internal.cc 744 static jint Throw(JNIEnv* env, jthrowable java_exception) {
891 // void and doesn't throw any exceptions, but we should probably
    [all...]
  /dalvik/vm/
Jni.cpp 430 * void and doesn't throw any exceptions, but we should probably
    [all...]
  /external/chromium_org/v8/src/
d8.cc 82 static Handle<Value> Throw(const char* message) {
304 Throw("Invalid argument");
318 Throw("Invalid argument");
323 Throw("Invalid realm index");
354 Throw("Invalid argument");
361 Throw("Invalid realm index");
374 Throw("Invalid argument");
379 Throw("Invalid realm index");
391 Throw("Invalid argument");
396 Throw("Invalid realm index")
    [all...]
isolate.cc     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 825 void MacroAssembler::Throw(Register value) {
    [all...]
  /external/v8/src/
isolate.cc 918 Failure* Isolate::Throw(Object* exception, MessageLocation* location) {
940 return Throw(heap_.illegal_access_symbol());
945 // When scheduling a throw we first throw the exception to get the
947 Throw(exception);
957 // Re-throw the exception to avoid getting repeated error reporting.
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc     [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...]
jri.h 72 (((*(env))->Throw)(env, JRI_Throw_op, obj))
412 void (*Throw)(JRIEnv* env, jint op, struct java_lang_Throwable* a);
    [all...]
  /external/chromium_org/v8/src/x64/
macro-assembler-x64.cc     [all...]
  /development/ndk/platforms/android-3/include/
jni.h 186 jint (*Throw)(JNIEnv*, jthrowable);
538 jint Throw(jthrowable obj)
539 { return functions->Throw(this, obj); }
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp     [all...]

Completed in 829 milliseconds

1 2 3 4