HomeSort by relevance Sort by last modified time
    Searched refs:adjustedPtr (Results 1 - 25 of 27) sorted by null

1 2

  /ndk/sources/cxx-stl/gabi++/src/
si_class_type_info.cc 39 void*& adjustedPtr,
41 if (self_class_type_match(base_type, adjustedPtr, info)) {
45 return __base_type->walk_to(base_type, adjustedPtr, info);
array_type_info.cc 39 void*& adjustedPtr) const {
function_type_info.cc 39 void*& adjustedPtr) const {
class_type_info.cc 39 void*& adjustedPtr) const {
51 thrown_class_type->walk_to(this, adjustedPtr, info);
57 adjustedPtr = info.adjustedPtr;
62 void*& adjustedPtr,
64 return self_class_type_match(base_type, adjustedPtr, info);
68 void*& adjustedPtr,
73 info.adjustedPtr = adjustedPtr;
83 : status(unknown), base_type(0), adjustedPtr(0)
    [all...]
enum_type_info.cc 39 void*& adjustedPtr) const {
fundamental_type_info.cc 39 void*& adjustedPtr) const {
pbase_type_info.cc 44 void*& adjustedPtr) const {
45 if (can_catch_typeinfo_wrapper(thr_type, adjustedPtr, first_time_init)) {
60 void*& adjustedPtr,
96 return can_catch_ptr(thrown_type, adjustedPtr, tracker);
100 void*& adjustedPtr,
103 if (do_can_catch_ptr(thrown_type, adjustedPtr, tracker,
113 adjustedPtr,
116 return __pointee->can_catch(thrown_type->__pointee, adjustedPtr);
cxxabi_defines.h 46 void*& adjustedPtr) const = 0;
55 void*& adjustedPtr) const;
64 void*& adjustedPtr) const;
73 void*& adjustedPtr) const;
82 void*& adjustedPtr) const;
131 void* adjustedPtr;
144 void*& adjustedPtr) const;
156 void*& adjustedPtr,
161 void*& adjustedPtr,
177 void*& adjustedPtr,
    [all...]
vmi_class_type_info.cc 40 void*& adjustedPtr,
42 if (self_class_type_match(base_type, adjustedPtr, info)) {
48 void* cur_base_ptr = adjustedPtr;
120 if (!info.adjustedPtr && !cur_base_info.adjustedPtr) {
141 // assert (info.adjustedPtr || cur_base_info.adjustedPtr);
143 assert (info.adjustedPtr && cur_base_info.adjustedPtr);
146 if (info.adjustedPtr != cur_base_info.adjustedPtr)
    [all...]
pointer_to_member_type_info.cc 39 void*& adjustedPtr,
pointer_type_info.cc 39 void*& adjustedPtr,
helper_func_internal.cc 68 results.adjustedPtr = 0;
162 results.adjustedPtr = unwind_exception+1;
174 void* adjustedPtr = unwind_exception+1;
177 if (adjustedPtr == 0 || excpType == 0) {
184 adjustedPtr = *static_cast<void**>(adjustedPtr);
188 if (catchType->can_catch(excpType, adjustedPtr)) {
194 results.adjustedPtr = adjustedPtr;
208 void* adjustedPtr = unwind_exception+1
    [all...]
personality.cc 77 exception_header->adjustedPtr = results.adjustedPtr;
97 results.adjustedPtr = exception_header->adjustedPtr;
call_unexpected.cc 92 void* adjustedPtr = header+1;
94 adjustedPtr = *reinterpret_cast<void**>(adjustedPtr);
105 if (catch_type->can_catch(thrown_type, adjustedPtr)) {
106 *matched_object = adjustedPtr;
222 void* adjustedPtr = new_header + 1;
226 &adjustedPtr) != ctm_failed) {
dwarf_helper.h 75 void* adjustedPtr; // Used in cxa_exception.cpp
helper_func_internal.h 52 void* adjustedPtr,
  /external/libcxxabi/src/
private_typeinfo.cpp 174 // adjustedPtr:
176 // catch (A& a) : adjustedPtr == &a
177 // catch (A* a) : adjustedPtr == a
178 // catch (A** a) : adjustedPtr == a
180 // catch (D2& d2) : adjustedPtr == &d2 (d2 is base class of thrown object)
181 // catch (D2* d2) : adjustedPtr == d2
182 // catch (D2*& d2) : adjustedPtr == d2
184 // catch (...) : adjustedPtr == & of the exception
230 void*& adjustedPtr) const
242 thrown_class_type->has_unambiguous_public_base(&info, adjustedPtr, public_path)
    [all...]
cxa_personality.cpp 409 void* adjustedPtr, _Unwind_Exception* unwind_exception)
427 // adjustments to adjustedPtr are ignored.
440 void* tempPtr = adjustedPtr;
451 void* adjustedPtr, _Unwind_Exception* unwind_exception)
463 // adjustments to adjustedPtr are ignored.
474 void* tempPtr = adjustedPtr;
488 void* adjustedPtr = unwind_exception + 1;
490 adjustedPtr = ((__cxa_dependent_exception*)adjustedPtr - 1)->primaryException;
491 return adjustedPtr;
    [all...]
cxa_exception.hpp 56 void *adjustedPtr;
94 void *adjustedPtr;
private_typeinfo.h 29 __attribute__ ((__visibility__("hidden"))) virtual bool can_catch(const __shim_type_info* thrown_type, void*& adjustedPtr) const = 0;
cxa_exception.cpp 264 static_cast<_Unwind_Exception*>(unwind_exception))->adjustedPtr;
415 return exception_header->adjustedPtr;
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
private_typeinfo.cpp 174 // adjustedPtr:
176 // catch (A& a) : adjustedPtr == &a
177 // catch (A* a) : adjustedPtr == a
178 // catch (A** a) : adjustedPtr == a
180 // catch (D2& d2) : adjustedPtr == &d2 (d2 is base class of thrown object)
181 // catch (D2* d2) : adjustedPtr == d2
182 // catch (D2*& d2) : adjustedPtr == d2
184 // catch (...) : adjustedPtr == & of the exception
228 void*& adjustedPtr) const
240 thrown_class_type->has_unambiguous_public_base(&info, adjustedPtr, public_path)
    [all...]
cxa_personality.cpp 406 void* adjustedPtr, _Unwind_Exception* unwind_exception)
424 // adjustments to adjustedPtr are ignored.
437 void* tempPtr = adjustedPtr;
448 void* adjustedPtr, _Unwind_Exception* unwind_exception)
460 // adjustments to adjustedPtr are ignored.
471 void* tempPtr = adjustedPtr;
485 void* adjustedPtr = unwind_exception + 1;
487 adjustedPtr = ((__cxa_dependent_exception*)adjustedPtr - 1)->primaryException;
488 return adjustedPtr;
    [all...]
cxa_exception.hpp 56 void *adjustedPtr;
94 void *adjustedPtr;
private_typeinfo.h 29 __attribute__ ((__visibility__("hidden"))) virtual bool can_catch(const __shim_type_info* thrown_type, void*& adjustedPtr) const = 0;

Completed in 785 milliseconds

1 2