Home
last modified time | relevance | path

Searched refs:__imp_ (Results 1 – 18 of 18) sorted by relevance

/external/libcxx/src/
Dstdexcept.cpp28 logic_error::logic_error(const string& msg) : __imp_(msg.c_str()) in logic_error()
32 logic_error::logic_error(const char* msg) : __imp_(msg) in logic_error()
36 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_) in logic_error()
43 __imp_ = le.__imp_; in operator =()
56 return __imp_.c_str(); in what()
61 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str()) in runtime_error()
65 runtime_error::runtime_error(const char* msg) : __imp_(msg) in runtime_error()
70 : __imp_(le.__imp_) in runtime_error()
77 __imp_ = le.__imp_; in operator =()
90 return __imp_.c_str(); in what()
Ddebug.cpp57 : __imp_(nullptr) { in __libcpp_debug_exception()
61 __libcpp_debug_info const& info) : __imp_(new __libcpp_debug_exception_imp) in __libcpp_debug_exception()
63 __imp_->__info_ = info; in __libcpp_debug_exception()
64 __imp_->__what_str_ = make_what_str(info); in __libcpp_debug_exception()
67 __libcpp_debug_exception const& other) : __imp_(nullptr) { in __libcpp_debug_exception()
68 if (other.__imp_) in __libcpp_debug_exception()
69 __imp_ = new __libcpp_debug_exception_imp(*other.__imp_); in __libcpp_debug_exception()
73 if (__imp_) in ~__libcpp_debug_exception()
74 delete __imp_; in ~__libcpp_debug_exception()
78 if (__imp_) in what()
[all …]
/external/libcxx/src/filesystem/
Ddirectory_iterator.cpp239 __imp_ = make_shared<__dir_stream>(p, opts, m_ec); in directory_iterator()
242 if (!__imp_->good()) { in directory_iterator()
243 __imp_.reset(); in directory_iterator()
250 _LIBCPP_ASSERT(__imp_, "Attempting to increment an invalid iterator"); in __increment()
254 if (!__imp_->advance(m_ec)) { in __increment()
255 path root = move(__imp_->__root_); in __increment()
256 __imp_.reset(); in __increment()
264 _LIBCPP_ASSERT(__imp_, "Attempting to dereference an invalid iterator"); in __dereference()
265 return __imp_->__entry_; in __dereference()
277 : __imp_(nullptr), __rec_(true) { in recursive_directory_iterator()
[all …]
/external/libcxx/src/include/
Drefstring.h79 __imp_ = data; in __libcpp_refstring()
84 : __imp_(s.__imp_) in __libcpp_refstring()
87 __libcpp_atomic_add(&rep_from_data(__imp_)->count, 1); in __libcpp_refstring()
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_); in ~__libcpp_refstring()
120 return __imp_ != get_gcc_empty_string_storage(); in __uses_refcount()
/external/libcxxabi/src/include/
Drefstring.h83 __imp_ = data; in __libcpp_refstring()
88 : __imp_(s.__imp_) in __libcpp_refstring()
91 __libcpp_atomic_add(&rep_from_data(__imp_)->count, 1); in __libcpp_refstring()
97 struct _Rep_base *old_rep = rep_from_data(__imp_);
98 __imp_ = s.__imp_;
100 __libcpp_atomic_add(&rep_from_data(__imp_)->count, 1);
114 _Rep_base* rep = rep_from_data(__imp_); in ~__libcpp_refstring()
124 return __imp_ != get_gcc_empty_string_storage(); in __uses_refcount()
/external/libcxxabi/src/
Dstdlib_stdexcept.cpp28 return __imp_.c_str(); in what()
36 return __imp_.c_str(); in what()
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-dlltool/
Dcoff-decorated.def20 ; CHECK: Symbol: __imp_@FastcallFunction@4
23 ; CHECK: Symbol: __imp_??_7exception@@6B@
/external/libcxx/include/
Dstdexcept60 const char* __imp_;
69 const char* c_str() const _NOEXCEPT {return __imp_;}
81 _VSTD::__libcpp_refstring __imp_;
98 _VSTD::__libcpp_refstring __imp_;
Dfilesystem2433 __imp_ = _VSTD::move(__o.__imp_);
2441 _LIBCPP_ASSERT(__imp_, "The end iterator cannot be dereferenced");
2474 shared_ptr<__dir_stream> __imp_;
2480 return __lhs.__imp_ == __rhs.__imp_;
2538 __imp_ = _VSTD::move(__o.__imp_);
2605 shared_ptr<__shared_imp> __imp_;
2612 return __lhs.__imp_ == __rhs.__imp_;
D__debug111 __libcpp_debug_exception_imp *__imp_;
/external/swiftshader/third_party/llvm-7.0/llvm/test/LTO/X86/
Ddllimport.ll1 ; Test requiring LTO to remove the __imp_ prefix for locally imported COFF
5 ; RUN: llvm-lto2 run -r=%t.obj,main,px -r %t.obj,__imp_?foo@@YAHXZ -r %t2.obj,?foo@@YAHXZ,p -o %t3 …
/external/clang/test/CodeGenCXX/
Dweak-external.cpp49 void* __imp_; member in std::runtime_error
/external/llvm/test/CodeGen/X86/
Ddllimport.ll40 ; CHECK: calll *__imp_@fastfun@0
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Ddllimport.ll39 ; CHECK: calll *__imp_@fastfun@0
/external/llvm/test/Object/
Dcoff-archive.test87 CHECKIDX: U __imp_??0exception@std@@QAE@ABQBD@Z
88 CHECKIDX: U __imp_??1exception@std@@UAE@XZ
/external/swiftshader/third_party/llvm-7.0/llvm/test/Object/
Dcoff-archive.test87 CHECKIDX: U __imp_??0exception@std@@QAE@ABQBD@Z
88 CHECKIDX: U __imp_??1exception@std@@UAE@XZ
/external/llvm/docs/
DLangRef.rst490 combining ``__imp_`` and the function or variable name.
495 ``__imp_`` and the function or variable name. Since this storage class
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DLangRef.rst490 combining ``__imp_`` and the function or variable name.
495 ``__imp_`` and the function or variable name. Since this storage class