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

  /external/libcxx/src/
stdexcept.cpp 30 logic_error::logic_error(const string& msg) : __imp_(msg.c_str())
34 logic_error::logic_error(const char* msg) : __imp_(msg)
38 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_) function in namespace:std
45 __imp_ = le.__imp_;
58 return __imp_.c_str();
63 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str())
67 runtime_error::runtime_error(const char* msg) : __imp_(msg)
72 : __imp_(le.__imp_ function in namespace:std
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
stdexcept.cpp 30 logic_error::logic_error(const string& msg) : __imp_(msg.c_str())
34 logic_error::logic_error(const char* msg) : __imp_(msg)
38 logic_error::logic_error(const logic_error& le) _NOEXCEPT : __imp_(le.__imp_) function in namespace:std
45 __imp_ = le.__imp_;
58 return __imp_.c_str();
63 runtime_error::runtime_error(const string& msg) : __imp_(msg.c_str())
67 runtime_error::runtime_error(const char* msg) : __imp_(msg)
72 : __imp_(le.__imp_ function in namespace:std
    [all...]
  /external/clang/test/CodeGenCXX/
weak-external.cpp 49 void* __imp_; member in class:std::runtime_error

Completed in 118 milliseconds