/external/libcxxabi/test/ |
D | catch_multi_level_pointer.pass.cpp | 51 template <class Throw, class Catch> 53 Throw throw_ptr = CreatePointer<Throw>()(); in catch_pointer_test() 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>(); in operator ()() 131 template <class Throw, class Catch, int level> 132 struct generate_tests : generate_tests_imp<Throw, Catch, level, true> {};
|
/external/clang/include/clang/AST/ |
D | StmtObjC.h | 315 Stmt *Throw; variable 319 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) { in ObjCAtThrowStmt() 325 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); } in getThrowExpr() 326 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); } in getThrowExpr() 327 void setThrowExpr(Stmt *S) { Throw = S; } in setThrowExpr() 334 return Throw ? Throw->getLocEnd() : AtThrowLoc; in getLocEnd() 341 child_range children() { return child_range(&Throw, &Throw+1); } in children()
|
/external/compiler-rt/test/asan/TestCases/ |
D | throw_catch.cc | 8 void Throw() { in Throw() function 18 Throw(); in ThrowAndCatch() 45 Throw(); in TestThrowInline()
|
D | throw_invoke_test.cc | 23 void Throw() { in Throw() function 45 Throw(); in main()
|
D | throw_call_test.cc | 22 void Throw() { in Throw() function 47 Throw(); in main()
|
D | contiguous_container.cc | 51 void Throw() { throw 1; } in Throw() function 56 Throw(); in ThrowAndCatch()
|
/external/clang/test/CXX/except/except.spec/ |
D | p14.cpp | 124 template<typename T> struct Throw { struct 125 Throw() throw(T); 131 struct Derived2 : Base, Throw<X<3>> { 136 Throw<X<4>> x;
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_exceptions_test.cc | 11 void Throw(const char& arg) const { in Throw() function in Action 21 a.Throw('c'); in main()
|
/external/compiler-rt/test/asan/TestCases/Windows/ |
D | queue_user_work_item.cc | 18 void Throw() { in Throw() function 27 Throw(); in ThrowAndCatch()
|
D | dll_seh.cc | 21 void Throw() { in Throw() function 31 Throw(); in ThrowAndCatch()
|
D | seh.cc | 28 void Throw() { in Throw() function 38 Throw(); in ThrowAndCatch()
|
D | bind_io_completion_callback.cc | 18 void Throw() { in Throw() function 27 Throw(); in ThrowAndCatch()
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | swapcontext_test.cc | 21 void Throw() { in Throw() function 28 Throw(); in ThrowAndCatch()
|
/external/v8/src/ |
D | property-descriptor.cc | 193 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor() 260 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor() 278 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor() 291 isolate->Throw(*isolate->factory()->NewTypeError( in ToPropertyDescriptor()
|
D | pending-compilation-error-handler.cc | 113 isolate->Throw(*error, &location); in ThrowPendingError() 136 isolate->Throw(*error, &location); in ThrowPendingError()
|
D | d8.cc | 241 static Local<Value> Throw(Isolate* isolate, const char* message) { in Throw() function 249 Throw(isolate, "this is not a Worker"); in GetWorkerFromInternalField() 256 Throw(isolate, "Worker is defunct because main thread is terminating"); in GetWorkerFromInternalField() 748 Throw(isolate, msg.c_str()); in FetchModuleTree() 1012 Throw(args.GetIsolate(), "Invalid argument"); in RealmIndexOrThrow() 1019 Throw(args.GetIsolate(), "Invalid realm index"); in RealmIndexOrThrow() 1055 Throw(args.GetIsolate(), "Invalid argument"); in RealmOwner() 1140 Throw(args.GetIsolate(), "Invalid realm index"); in RealmNavigate() 1158 Throw(args.GetIsolate(), "Invalid realm index"); in RealmDispose() 1182 Throw(args.GetIsolate(), "Invalid argument"); in RealmEval() [all …]
|
D | json-stringifier.cc | 376 isolate_->Throw(*error); in StackPush() 422 isolate_->Throw( in Serialize_() 485 isolate_->Throw( in SerializeJSValue() 610 isolate_->Throw(*isolate_->factory()->NewInvalidStringLengthError()); in SerializeArrayLikeSlow() 733 isolate_->Throw(*isolate_->factory()->NewInvalidStringLengthError()); in SerializeJSProxy()
|
/external/clang/test/SemaCXX/ |
D | member-init.cpp | 43 struct Throw { ThrowCtor tc = 42; }; argument 46 static_assert(!noexcept(Throw()), "incorrect exception specification");
|
/external/v8/src/runtime/ |
D | runtime-debug.cc | 787 return isolate->Throw(*isolate->factory()->NewStringFromAsciiChecked( in RUNTIME_FUNCTION() 790 return isolate->Throw(*isolate->factory()->NewStringFromAsciiChecked( in RUNTIME_FUNCTION() 793 return isolate->Throw(*isolate->factory()->NewStringFromAsciiChecked( in RUNTIME_FUNCTION() 797 return isolate->Throw(*isolate->factory()->NewStringFromAsciiChecked( in RUNTIME_FUNCTION() 800 return isolate->Throw(*isolate->factory()->NewStringFromAsciiChecked( in RUNTIME_FUNCTION() 803 return isolate->Throw(*isolate->factory()->NewStringFromAsciiChecked( in RUNTIME_FUNCTION() 806 return isolate->Throw(*isolate->factory()->NewStringFromAsciiChecked( in RUNTIME_FUNCTION()
|
/external/libpng/contrib/visupng/ |
D | cexcept.h | 243 #define Throw \ macro
|
D | PngFile.c | 44 Throw msg; in png_cexcept_error() 366 Throw "Visualpng: Out of memory";
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-more-actions.h | 149 ACTION_P(Throw, exception) { throw exception; } in ACTION_P() argument
|
/external/v8/src/objects/ |
D | module.cc | 342 return isolate->Throw<Cell>( in ResolveExport() 410 return isolate->Throw<Cell>(isolate->factory()->NewSyntaxError( in ResolveExportUsingStarExports() 432 return isolate->Throw<Cell>( in ResolveExportUsingStarExports() 679 isolate->Throw(module->GetException()); in Evaluate() 706 isolate->Throw(module->GetException()); in Evaluate() 941 isolate->Throw(*isolate->factory()->NewReferenceError( in GetPropertyAttributes()
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/ |
D | AbstractFakeFileSystem.groovy | 460 * Throw an InvalidFilenameException if the specified path is not valid. 520 * Throw AssertionError if the path is null. Throw FileSystemException if the specified 534 * file (if isDirectory==false). Throw AssertionError if the path is null. Throw 555 * Throw a FileSystemException if the parent directory for the specified path does not exist.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/ |
D | lifetime-throw.ll | 17 define void @Throw() sanitize_address personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to … 18 ; CHECK-LABEL: define void @Throw()
|