Searched refs:Throw (Results 1 - 25 of 93) sorted by relevance

1234

/external/compiler-rt/lib/asan/tests/
H A Dasan_exceptions_test.cc11 void Throw(const char& arg) const { function in class:Action
21 a.Throw('c');
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dqueue_user_work_item.cc20 void Throw() { function
21 fprintf(stderr, "Throw\n");
22 // CHECK: Throw
29 Throw();
H A Dthrow_catch.cc22 void Throw() { function
24 fprintf(stderr, "Throw: %p\n", &local);
32 Throw();
43 Throw();
H A Ddll_seh.cc29 void Throw() { function
31 fprintf(stderr, "Throw: %p\n", &local);
39 Throw();
H A Dseh.cc28 void Throw() { function
30 fprintf(stderr, "Throw: %p\n", &local);
38 Throw();
H A Dbind_io_completion_callback.cc20 void Throw() { function
21 fprintf(stderr, "Throw\n");
22 // CHECK: Throw
29 Throw();
/external/libcxxabi/test/
H A Dcatch_multi_level_pointer.pass.cpp49 template <class Throw, class Catch>
51 Throw throw_ptr = CreatePointer<Throw>()();
52 // Use the compiler to determine if the exception of type Throw can be
87 template <class Throw, class Catch, int level, bool first = false>
89 typedef TestTypes<Throw, first> ThrowTypes;
122 template <class Throw, class Catch, bool first>
123 struct generate_tests_imp<Throw, Catch, 0, first> {
125 catch_pointer_test<Throw, Catch>();
129 template <class Throw, clas
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dthrow_catch.cc11 void Throw() { function
13 fprintf(stderr, "Throw: %p\n", &local);
21 Throw();
48 Throw();
H A Dthrow_call_test.cc25 void Throw() { function
35 fprintf(stderr, "Throw stack = %p\n", &a);
50 Throw();
H A Dthrow_invoke_test.cc26 void Throw() { function
33 fprintf(stderr, "Throw stack = %p\n", &a);
48 Throw();
H A Dcontiguous_container.cc51 void Throw() { throw 1; } function
56 Throw();
/external/clang/test/CXX/except/except.spec/
H A Dp14.cpp124 template<typename T> struct Throw { struct in namespace:InhCtor
125 Throw() throw(T);
127 struct Derived : Base, Throw<X<3>> {
129 Throw<X<4>> x;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dswapcontext_test.cc21 void Throw() { function
28 Throw();
/external/v8/src/
H A Dpending-compilation-error-handler.cc45 isolate->Throw(*error, &location);
64 isolate->Throw(*error, &location);
H A Dproperty-descriptor.cc152 isolate->Throw(*isolate->factory()->NewTypeError(
216 isolate->Throw(*isolate->factory()->NewTypeError(
233 isolate->Throw(*isolate->factory()->NewTypeError(
246 isolate->Throw(*isolate->factory()->NewTypeError(
H A Dd8.cc171 static Local<Value> Throw(Isolate* isolate, const char* message) { function in namespace:v8::__anon18140
191 Throw(isolate, "this is not a Worker");
198 Throw(isolate, "Worker is defunct because main thread is terminating");
476 Throw(args.GetIsolate(), "Invalid argument");
483 Throw(args.GetIsolate(), "Invalid realm index");
521 Throw(args.GetIsolate(), "Invalid argument");
577 Throw(args.GetIsolate(), "Invalid realm index");
603 Throw(args.GetIsolate(), "Invalid argument");
684 Throw(args.GetIsolate(), "Error loading file");
689 Throw(arg
[all...]
H A Dprototype.h142 isolate_->Throw(
/external/libpng/contrib/visupng/
H A Dcexcept.h69 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 \ macro
[all...]
H A DPngFile.c44 Throw msg;
362 Throw "Visualpng: Out of memory";
/external/clang/include/clang/AST/
H A DStmtObjC.h315 Stmt *Throw; member in class:clang::ObjCAtThrowStmt
319 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) {
325 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); }
326 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); }
327 void setThrowExpr(Stmt *S) { Throw = S; }
334 return Throw ? Throw->getLocEnd() : AtThrowLoc;
341 child_range children() { return child_range(&Throw, &Throw+1); }
/external/clang/test/SemaCXX/
H A Dmember-init.cpp43 struct Throw { ThrowCtor tc = 42; }; struct
46 static_assert(!noexcept(Throw()), "incorrect exception specification");
/external/gmock/include/gmock/
H A Dgmock-more-actions.h211 // Action Throw(exception) can be used in a mock function of any type
220 ACTION_P(Throw, exception) { throw exception; }
/external/google-breakpad/src/testing/include/gmock/
H A Dgmock-more-actions.h211 // Action Throw(exception) can be used in a mock function of any type
220 ACTION_P(Throw, exception) { throw exception; }
/external/v8/src/compiler/
H A Dcontrol-builders.h154 void Throw(Node* exception);
H A Dcommon-operator.h138 const Operator* Throw();

Completed in 498 milliseconds

1234