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

/external/libcxxabi/src/
H A Dcxa_default_handlers.cpp47 const __shim_type_info* thrown_type = local
49 // Try to get demangled name of thrown_type
53 const char* name = __cxa_demangle(thrown_type->name(), buf, &len, &status);
55 name = thrown_type->name();
59 if (catch_type->can_catch(thrown_type, thrown_object))
H A Dprivate_typeinfo.cpp188 __fundamental_type_info::can_catch(const __shim_type_info* thrown_type, argument
191 return is_equal(this, thrown_type, false);
216 __enum_type_info::can_catch(const __shim_type_info* thrown_type, argument
219 return is_equal(this, thrown_type, false);
227 __class_type_info::can_catch(const __shim_type_info* thrown_type, argument
231 if (is_equal(this, thrown_type, false))
234 dynamic_cast<const __class_type_info*>(thrown_type);
347 __pbase_type_info::can_catch(const __shim_type_info* thrown_type, argument
350 if (is_equal(this, thrown_type, false))
352 return is_equal(thrown_type,
360 can_catch(const __shim_type_info* thrown_type, void*& adjustedPtr) const argument
[all...]

Completed in 1325 milliseconds