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

1 2

  /external/clang/test/PCH/
cxx-typeid.h 24 class bad_cast class in namespace:std
27 bad_cast();
28 bad_cast(const bad_cast&);
29 bad_cast& operator=(const bad_cast&);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/bad.cast/
bad_cast.pass.cpp 10 // test bad_cast
18 static_assert((std::is_base_of<std::exception, std::bad_cast>::value),
19 "std::is_base_of<std::exception, std::bad_cast>::value");
20 static_assert(std::is_polymorphic<std::bad_cast>::value,
21 "std::is_polymorphic<std::bad_cast>::value");
22 std::bad_cast b;
23 std::bad_cast b2 = b;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
typeinfo.cpp 25 std::bad_cast::bad_cast() _NOEXCEPT
29 std::bad_cast::~bad_cast() _NOEXCEPT
34 std::bad_cast::what() const _NOEXCEPT
36 return "std::bad_cast";
55 // because bad_cast and bad_typeid are defined in his higher level library
65 throw std::bad_cast();
  /ndk/sources/cxx-stl/gabi++/src/
exception.cc 59 bad_cast::bad_cast() _GABIXX_NOEXCEPT {
62 bad_cast::~bad_cast() _GABIXX_NOEXCEPT {
65 const char* bad_cast::what() const _GABIXX_NOEXCEPT {
66 return "std::bad_cast";
auxilary.cc 33 throw std::bad_cast();
  /external/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {}; class in inherits:exception
57 using ::bad_cast;
59 using _STLP_VENDOR_EXCEPT_STD::bad_cast;
74 struct bad_cast : exception {};
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {}; class in inherits:exception
57 using ::bad_cast;
59 using _STLP_VENDOR_EXCEPT_STD::bad_cast;
74 struct bad_cast : exception {};
  /ndk/tests/device/test-stlport_shared-exception/jni/
dyncast1.cpp 18 } catch (std::bad_cast) {
dyncast2_1.cpp 21 } catch (std::bad_cast) {
  /ndk/tests/device/test-stlport_static-exception/jni/
dyncast1.cpp 18 } catch (std::bad_cast) {
dyncast2_1.cpp 21 } catch (std::bad_cast) {
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {}; class in inherits:exception
57 using ::bad_cast;
59 using _STLP_VENDOR_EXCEPT_STD::bad_cast;
74 struct bad_cast : exception {};
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {}; class in inherits:exception
57 using ::bad_cast;
59 using _STLP_VENDOR_EXCEPT_STD::bad_cast;
74 struct bad_cast : exception {};
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {}; class in inherits:exception
57 using ::bad_cast;
59 using _STLP_VENDOR_EXCEPT_STD::bad_cast;
74 struct bad_cast : exception {};
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {}; class in inherits:exception
57 using ::bad_cast;
59 using _STLP_VENDOR_EXCEPT_STD::bad_cast;
74 struct bad_cast : exception {};
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_typeinfo.h 41 class bad_cast : public exception {}; class in inherits:exception
57 using ::bad_cast;
59 using _STLP_VENDOR_EXCEPT_STD::bad_cast;
74 struct bad_cast : exception {};
  /external/stlport/stlport/
typeinfo.h 53 using std::bad_cast;
68 using /* _STLP_VENDOR_EXCEPT_STD */ :: bad_cast;
  /ndk/sources/cxx-stl/stlport/stlport/
typeinfo.h 53 using std::bad_cast;
68 using /* _STLP_VENDOR_EXCEPT_STD */ :: bad_cast;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
typeinfo.h 53 using std::bad_cast;
68 using /* _STLP_VENDOR_EXCEPT_STD */ :: bad_cast;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
typeinfo.h 53 using std::bad_cast;
68 using /* _STLP_VENDOR_EXCEPT_STD */ :: bad_cast;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
typeinfo.h 53 using std::bad_cast;
68 using /* _STLP_VENDOR_EXCEPT_STD */ :: bad_cast;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
typeinfo.h 53 using std::bad_cast;
68 using /* _STLP_VENDOR_EXCEPT_STD */ :: bad_cast;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
typeinfo.h 53 using std::bad_cast;
68 using /* _STLP_VENDOR_EXCEPT_STD */ :: bad_cast;
  /ndk/sources/cxx-stl/gabi++/tests/
test_aux_runtime.cpp 37 // std::bad_cast (18.7.2).
46 catch ( const std::bad_cast &bc ) { return true; }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.global.templates/
use_facet.pass.cpp 39 catch (std::bad_cast&)

Completed in 2991 milliseconds

1 2