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

12345

/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/libcxxabi/test/
H A Dcatch_multi_level_pointer.pass.cpp51 template <class Throw, class Catch>
53 Throw throw_ptr = CreatePointer<Throw>()();
54 // Use the compiler to determine if the exception of type Throw can be
89 template <class Throw, class Catch, int level, bool first = false>
91 typedef TestTypes<Throw, first> ThrowTypes;
124 template <class Throw, class Catch, bool first>
125 struct generate_tests_imp<Throw, Catch, 0, first> {
127 catch_pointer_test<Throw, Catch>();
131 template <class Throw, clas
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dthrow_catch.cc8 void Throw() { function
10 fprintf(stderr, "Throw: %p\n", &local);
18 Throw();
45 Throw();
H A Dthrow_call_test.cc22 void Throw() { function
32 fprintf(stderr, "Throw stack = %p\n", &a);
47 Throw();
H A Dthrow_invoke_test.cc23 void Throw() { function
30 fprintf(stderr, "Throw stack = %p\n", &a);
45 Throw();
H A Dcontiguous_container.cc51 void Throw() { throw 1; } function
56 Throw();
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_seh.cc21 void Throw() { function
23 fprintf(stderr, "Throw: %p\n", &local);
31 Throw();
H A Dqueue_user_work_item.cc18 void Throw() { function
19 fprintf(stderr, "Throw\n");
20 // CHECK: Throw
27 Throw();
H A Dseh.cc28 void Throw() { function
30 fprintf(stderr, "Throw: %p\n", &local);
38 Throw();
H A Dbind_io_completion_callback.cc18 void Throw() { function
19 fprintf(stderr, "Throw\n");
20 // CHECK: Throw
27 Throw();
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dswapcontext_test.cc21 void Throw() { function
28 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);
131 struct Derived2 : Base, Throw<X<3>> {
136 Throw<X<4>> x;
/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;
366 Throw "Visualpng: Out of memory";
/external/v8/src/
H A Dpending-compilation-error-handler.cc55 isolate->Throw(*error, &location);
74 isolate->Throw(*error, &location);
H A Dproperty-descriptor.cc193 isolate->Throw(*isolate->factory()->NewTypeError(
260 isolate->Throw(*isolate->factory()->NewTypeError(
278 isolate->Throw(*isolate->factory()->NewTypeError(
291 isolate->Throw(*isolate->factory()->NewTypeError(
H A Dd8.cc223 static Local<Value> Throw(Isolate* isolate, const char* message) { function in namespace:v8::__anon27668
232 Throw(isolate, "this is not a Worker");
239 Throw(isolate, "Worker is defunct because main thread is terminating");
800 Throw(args.GetIsolate(), "Invalid argument");
807 Throw(args.GetIsolate(), "Invalid realm index");
843 Throw(args.GetIsolate(), "Invalid argument");
944 Throw(args.GetIsolate(), "Invalid realm index");
968 Throw(args.GetIsolate(), "Invalid argument");
1059 Throw(args.GetIsolate(), "Error loading file");
1064 Throw(arg
[all...]
H A Dkeys.cc725 isolate_->Throw(*isolate_->factory()->NewTypeError(
824 isolate_->Throw(*isolate_->factory()->NewTypeError(
844 isolate_->Throw(*isolate_->factory()->NewTypeError(
855 isolate_->Throw(*isolate_->factory()->NewTypeError(
H A Disolate.h155 return __isolate__->Throw<T>(__isolate__->factory()->call); \
161 return __isolate__->Throw(*__isolate__->factory()->call); \
316 // Communication channel between Isolate::Throw and message consumers.
724 // of Throw() as its return value.
725 Object* Throw(Object* exception, MessageLocation* location = NULL);
729 MUST_USE_RESULT MaybeHandle<T> Throw(Handle<Object> exception, function in class:v8::internal::Isolate
731 Throw(*exception, location);
/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/v8/src/runtime/
H A Druntime-wasm.cc76 return isolate->Throw(*error_obj);
122 return isolate->Throw(*error_obj);
157 return isolate->Throw(*isolate->factory()->NewNumberFromInt(thrown_value));
/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/googletest/googlemock/include/gmock/
H A Dgmock-more-actions.h224 // Action Throw(exception) can be used in a mock function of any type
233 ACTION_P(Throw, exception) { throw exception; }
/external/v8/testing/gmock/include/gmock/
H A Dgmock-more-actions.h224 // Action Throw(exception) can be used in a mock function of any type
233 ACTION_P(Throw, exception) { throw exception; }

Completed in 1313 milliseconds

12345