OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:bad_typeid
(Results
1 - 25
of
174
) sorted by null
1
2
3
4
5
6
7
/external/clang/test/PCH/
cxx-typeid.h
33
class
bad_typeid
class in namespace:std
36
bad_typeid
();
37
bad_typeid
(const
bad_typeid
&);
38
bad_typeid
& operator=(const
bad_typeid
&);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
typeinfo.cpp
39
std::
bad_typeid
::
bad_typeid
() _NOEXCEPT
43
std::
bad_typeid
::~
bad_typeid
() _NOEXCEPT
48
std::
bad_typeid
::what() const _NOEXCEPT
50
return "std::
bad_typeid
";
55
// because bad_cast and
bad_typeid
are defined in his higher level library
59
throw std::
bad_typeid
();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/bad.typeid/
bad_typeid.pass.cpp
10
// test
bad_typeid
18
static_assert((std::is_base_of<std::exception, std::
bad_typeid
>::value),
19
"std::is_base_of<std::exception, std::
bad_typeid
>::value");
20
static_assert(std::is_polymorphic<std::
bad_typeid
>::value,
21
"std::is_polymorphic<std::
bad_typeid
>::value");
22
std::
bad_typeid
b;
23
std::
bad_typeid
b2 = b;
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
typeinfo
8
class
bad_typeid
;
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
typeinfo
8
class
bad_typeid
;
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
typeinfo
8
class
bad_typeid
;
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
typeinfo
8
class
bad_typeid
;
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
typeinfo
8
class
bad_typeid
;
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
typeinfo
8
class
bad_typeid
;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
typeinfo
46
class
bad_typeid
50
bad_typeid
() noexcept;
51
bad_typeid
(const
bad_typeid
&) noexcept;
52
bad_typeid
& operator=(const
bad_typeid
&) noexcept;
113
class _LIBCPP_EXCEPTION_ABI
bad_typeid
117
bad_typeid
() _NOEXCEPT;
118
virtual ~
bad_typeid
() _NOEXCEPT;
/ndk/sources/cxx-stl/gabi++/src/
exception.cc
69
bad_typeid
::
bad_typeid
() _GABIXX_NOEXCEPT {
72
bad_typeid
::~
bad_typeid
() _GABIXX_NOEXCEPT {
75
const char*
bad_typeid
::what() const _GABIXX_NOEXCEPT {
76
return "std::
bad_typeid
";
/bionic/libstdc++/include/
typeinfo
9
class
bad_typeid
;
/ndk/sources/cxx-stl/system/include/
typeinfo
9
class
bad_typeid
;
/prebuilts/ndk/5/sources/cxx-stl/system/include/
typeinfo
9
class
bad_typeid
;
/prebuilts/ndk/6/sources/cxx-stl/system/include/
typeinfo
9
class
bad_typeid
;
/prebuilts/ndk/7/sources/cxx-stl/system/include/
typeinfo
9
class
bad_typeid
;
/prebuilts/ndk/8/sources/cxx-stl/system/include/
typeinfo
9
class
bad_typeid
;
/prebuilts/ndk/9/sources/cxx-stl/system/include/
typeinfo
9
class
bad_typeid
;
/ndk/sources/cxx-stl/gabi++/include/
typeinfo
87
class
bad_typeid
: public exception {
89
bad_typeid
() throw();
90
virtual ~
bad_typeid
() throw();
/prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
typeinfo
87
class
bad_typeid
: public exception {
89
bad_typeid
() throw();
90
virtual ~
bad_typeid
() throw();
/external/stlport/stlport/
typeinfo.h
52
using std::
bad_typeid
;
65
using /* _STLP_VENDOR_EXCEPT_STD */ ::
bad_typeid
;
/ndk/sources/cxx-stl/gabi++/tests/
test_aux_runtime.cpp
20
// std::
bad_typeid
exception (18.7.3).
30
catch ( const std::
bad_typeid
&bc ) { return true; }
/ndk/sources/cxx-stl/stlport/stlport/
typeinfo.h
52
using std::
bad_typeid
;
65
using /* _STLP_VENDOR_EXCEPT_STD */ ::
bad_typeid
;
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
typeinfo.h
52
using std::
bad_typeid
;
65
using /* _STLP_VENDOR_EXCEPT_STD */ ::
bad_typeid
;
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
typeinfo.h
52
using std::
bad_typeid
;
65
using /* _STLP_VENDOR_EXCEPT_STD */ ::
bad_typeid
;
Completed in 1875 milliseconds
1
2
3
4
5
6
7