HomeSort by relevance Sort by last modified time
    Searched defs:__imp_ (Results 1 - 9 of 9) sorted by null

  /external/libcxx/src/
stdexcept.cpp 28 logic_error::logic_error(const string& msg) : __imp_(msg.c_str())
32 logic_error::logic_error(const char* msg) : __imp_(msg)
36 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_) function in namespace:std
43 __imp_ = le.__imp_;
56 return __imp_.c_str();
61 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str())
65 runtime_error::runtime_error(const char* msg) : __imp_(msg)
70 : __imp_(le.__imp_ function in namespace:std
    [all...]
debug.cpp 57 : __imp_(nullptr) { function
61 __libcpp_debug_info const& info) : __imp_(new __libcpp_debug_exception_imp)
63 __imp_->__info_ = info;
64 __imp_->__what_str_ = make_what_str(info);
67 __libcpp_debug_exception const& other) : __imp_(nullptr) {
68 if (other.__imp_)
69 __imp_ = new __libcpp_debug_exception_imp(*other.__imp_);
73 if (__imp_)
74 delete __imp_;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/
stdexcept.cpp 28 logic_error::logic_error(const string& msg) : __imp_(msg.c_str())
32 logic_error::logic_error(const char* msg) : __imp_(msg)
36 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_) function in namespace:std
43 __imp_ = le.__imp_;
56 return __imp_.c_str();
61 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str())
65 runtime_error::runtime_error(const char* msg) : __imp_(msg)
70 : __imp_(le.__imp_ function in namespace:std
    [all...]
debug.cpp 57 : __imp_(nullptr) { function
61 __libcpp_debug_info const& info) : __imp_(new __libcpp_debug_exception_imp)
63 __imp_->__info_ = info;
64 __imp_->__what_str_ = make_what_str(info);
67 __libcpp_debug_exception const& other) : __imp_(nullptr) {
68 if (other.__imp_)
69 __imp_ = new __libcpp_debug_exception_imp(*other.__imp_);
73 if (__imp_)
74 delete __imp_;
    [all...]
  /external/clang/test/CodeGenCXX/
weak-external.cpp 49 void* __imp_; member in class:std::runtime_error
  /external/libcxx/src/include/
refstring.h 79 __imp_ = data;
84 : __imp_(s.__imp_) function
87 __libcpp_atomic_add(&rep_from_data(__imp_)->count, 1);
93 struct _Rep_base *old_rep = rep_from_data(__imp_);
94 __imp_ = s.__imp_;
96 __libcpp_atomic_add(&rep_from_data(__imp_)->count, 1);
110 _Rep_base* rep = rep_from_data(__imp_);
120 return __imp_ != get_gcc_empty_string_storage()
    [all...]
  /external/libcxxabi/src/include/
refstring.h 82 __imp_ = data;
87 : __imp_(s.__imp_) function
90 __sync_add_and_fetch(&rep_from_data(__imp_)->count, 1);
96 struct _Rep_base *old_rep = rep_from_data(__imp_);
97 __imp_ = s.__imp_;
99 __sync_add_and_fetch(&rep_from_data(__imp_)->count, 1);
113 _Rep_base* rep = rep_from_data(__imp_);
123 return __imp_ != get_gcc_empty_string_storage()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/include/
refstring.h 78 __imp_ = data;
83 : __imp_(s.__imp_) function
86 __sync_add_and_fetch(&rep_from_data(__imp_)->count, 1);
92 struct _Rep_base *old_rep = rep_from_data(__imp_);
93 __imp_ = s.__imp_;
95 __sync_add_and_fetch(&rep_from_data(__imp_)->count, 1);
109 _Rep_base* rep = rep_from_data(__imp_);
119 return __imp_ != get_gcc_empty_string_storage()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/include/
refstring.h 82 __imp_ = data;
87 : __imp_(s.__imp_) function
90 __sync_add_and_fetch(&rep_from_data(__imp_)->count, 1);
96 struct _Rep_base *old_rep = rep_from_data(__imp_);
97 __imp_ = s.__imp_;
99 __sync_add_and_fetch(&rep_from_data(__imp_)->count, 1);
113 _Rep_base* rep = rep_from_data(__imp_);
123 return __imp_ != get_gcc_empty_string_storage()
    [all...]

Completed in 190 milliseconds