HomeSort by relevance Sort by last modified time
    Searched full:thrown_object (Results 1 - 25 of 49) sorted by null

1 2

  /external/libcxxabi/src/
cxa_noexception.cpp 30 __cxa_increment_exception_refcount(void *thrown_object) throw() {
31 if (thrown_object != nullptr)
36 __cxa_decrement_exception_refcount(void *thrown_object) throw() {
37 if (thrown_object != nullptr)
45 __cxa_rethrow_primary_exception(void* thrown_object) {
46 if (thrown_object != nullptr)
cxa_exception.cpp 42 cxa_exception_from_thrown_object(void* thrown_object)
44 return static_cast<__cxa_exception*>(thrown_object) - 1;
154 _LIBCXXABI_FUNC_VIS void __cxa_free_exception(void *thrown_object) throw() {
155 __free_with_fallback(cxa_exception_from_thrown_object(thrown_object));
206 __cxa_throw(void *thrown_object, std::type_info *tinfo, void (*dest)(void *)) {
208 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object);
567 If thrown_object is not null, atomically increment the referenceCount field
569 by thrown_object.
571 Requires: If thrown_object is not NULL, it is a native exception.
574 __cxa_increment_exception_refcount(void *thrown_object) throw()
629 void* thrown_object = thrown_object_from_cxa_exception(exception_header); local
    [all...]
cxa_default_handlers.cpp 44 void* thrown_object = local
60 if (catch_type->can_catch(thrown_type, thrown_object))
63 const std::exception* e = static_cast<const std::exception*>(thrown_object);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_exception.cpp 45 cxa_exception_from_thrown_object(void* thrown_object)
47 return static_cast<__cxa_exception*>(thrown_object) - 1;
170 void __cxa_free_exception (void * thrown_object) throw() {
171 do_free(cxa_exception_from_thrown_object(thrown_object));
223 __cxa_throw(void* thrown_object, std::type_info* tinfo, void (*dest)(void*))
226 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object);
590 If thrown_object is not null, atomically increment the referenceCount field
592 by thrown_object.
594 Requires: If thrown_object is not NULL, it is a native exception.
597 __cxa_increment_exception_refcount(void* thrown_object) throw(
656 void* thrown_object = thrown_object_from_cxa_exception(exception_header); local
    [all...]
cxa_default_handlers.cpp 43 void* thrown_object = local
59 if (catch_type->can_catch(thrown_type, thrown_object))
62 const std::exception* e = static_cast<const std::exception*>(thrown_object);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/src/
cxa_exception.cpp 45 cxa_exception_from_thrown_object(void* thrown_object)
47 return static_cast<__cxa_exception*>(thrown_object) - 1;
170 _LIBCXXABI_FUNC_VIS void __cxa_free_exception(void *thrown_object) throw() {
171 do_free(cxa_exception_from_thrown_object(thrown_object));
222 __cxa_throw(void *thrown_object, std::type_info *tinfo, void (*dest)(void *)) {
224 __cxa_exception* exception_header = cxa_exception_from_thrown_object(thrown_object);
583 If thrown_object is not null, atomically increment the referenceCount field
585 by thrown_object.
587 Requires: If thrown_object is not NULL, it is a native exception.
590 __cxa_increment_exception_refcount(void *thrown_object) throw()
645 void* thrown_object = thrown_object_from_cxa_exception(exception_header); local
    [all...]
cxa_default_handlers.cpp 43 void* thrown_object = local
59 if (catch_type->can_catch(thrown_type, thrown_object))
62 const std::exception* e = static_cast<const std::exception*>(thrown_object);
  /external/libcxxabi/test/
noexception1.pass.cpp 19 // void __cxa_increment_exception_refcount(void *thrown_object) throw();
noexception2.pass.cpp 19 // void __cxa_decrement_exception_refcount(void *thrown_object) throw();
noexception3.pass.cpp 19 // void __cxa_rethrow_primary_exception(void* thrown_object);
  /external/v8/src/debug/
debug-scopes.cc 558 Handle<Object> thrown_object(context->get(Context::THROWN_OBJECT_INDEX),
562 JSObject::SetOwnPropertyIgnoreAttributes(catch_scope, name, thrown_object,
  /external/v8/src/runtime/
runtime-scopes.cc 783 CONVERT_ARG_HANDLE_CHECKED(Object, thrown_object, 1);
788 function, current, scope_info, name, thrown_object);
    [all...]
  /external/v8/src/
factory.h 312 Handle<Object> thrown_object);
    [all...]
factory.cc     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/lib/linux/
libclang_rt.ubsan_standalone-arm-android.so 
libclang_rt.ubsan_standalone-i686-android.so 
  /prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/lib/linux/
libclang_rt.ubsan_standalone-arm-android.so 
libclang_rt.ubsan_standalone-i686-android.so 
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/lib/linux/
libclang_rt.ubsan_standalone-arm-android.so 
libclang_rt.ubsan_standalone-i686-android.so 
  /prebuilts/clang/host/darwin-x86/clang-3957855/lib64/clang/5.0/lib/linux/
libclang_rt.ubsan_standalone-arm-android.so 
libclang_rt.ubsan_standalone-i686-android.so 
  /prebuilts/clang/host/darwin-x86/clang-3960126/lib64/clang/5.0/lib/linux/
libclang_rt.ubsan_standalone-arm-android.so 
libclang_rt.ubsan_standalone-i686-android.so 
  /prebuilts/clang/host/darwin-x86/clang-3977809/lib64/clang/5.0/lib/linux/
libclang_rt.ubsan_standalone-arm-android.so 

Completed in 4171 milliseconds

1 2