Searched defs:thrown_type (Results 1 - 2 of 2) sorted by relevance

/external/libcxxabi/src/
H A Dcxa_default_handlers.cpp48 const __shim_type_info* thrown_type = local
50 // Try to get demangled name of thrown_type
54 const char* name = __cxa_demangle(thrown_type->name(), buf, &len, &status);
56 name = thrown_type->name();
60 if (catch_type->can_catch(thrown_type, thrown_object))
H A Dprivate_typeinfo.cpp180 __fundamental_type_info::can_catch(const __shim_type_info* thrown_type, argument
183 return is_equal(this, thrown_type, false);
208 __enum_type_info::can_catch(const __shim_type_info* thrown_type, argument
211 return is_equal(this, thrown_type, false);
221 __class_type_info::can_catch(const __shim_type_info* thrown_type, argument
225 if (is_equal(this, thrown_type, false))
228 dynamic_cast<const __class_type_info*>(thrown_type);
343 __pbase_type_info::can_catch(const __shim_type_info* thrown_type, argument
350 thrown_type);
355 return is_equal(this, thrown_type, use_strcm
367 can_catch(const __shim_type_info* thrown_type, void*& adjustedPtr) const argument
477 can_catch( const __shim_type_info* thrown_type, void*& adjustedPtr) const argument
[all...]

Completed in 101 milliseconds