OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bad_cast
(Results
1 - 25
of
34
) sorted by null
1
2
/external/libcxxabi/src/
typeinfo.cpp
21
//
bad_cast
23
bad_cast
::
bad_cast
() _NOEXCEPT
27
bad_cast
::~
bad_cast
() _NOEXCEPT
32
bad_cast
::what() const _NOEXCEPT
34
return "std::
bad_cast
";
cxa_aux_runtime.cpp
25
throw std::
bad_cast
();
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
typeinfo.cpp
21
//
bad_cast
23
bad_cast
::
bad_cast
() _NOEXCEPT
27
bad_cast
::~
bad_cast
() _NOEXCEPT
32
bad_cast
::what() const _NOEXCEPT
34
return "std::
bad_cast
";
cxa_aux_runtime.cpp
25
throw std::
bad_cast
();
/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
&);
/external/libcxx/test/std/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/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;
/external/libcxx/src/
typeinfo.cpp
25
std::
bad_cast
::
bad_cast
() _NOEXCEPT
35
std::
bad_cast
::~
bad_cast
() _NOEXCEPT
40
std::
bad_cast
::what() const _NOEXCEPT
42
return "std::
bad_cast
";
57
// because
bad_cast
and bad_typeid are defined in his higher level library
67
throw std::
bad_cast
();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
typeinfo.cpp
25
std::
bad_cast
::
bad_cast
() _NOEXCEPT
35
std::
bad_cast
::~
bad_cast
() _NOEXCEPT
40
std::
bad_cast
::what() const _NOEXCEPT
42
return "std::
bad_cast
";
57
// because
bad_cast
and bad_typeid are defined in his higher level library
67
throw std::
bad_cast
();
/ndk/sources/cxx-stl/gabi++/src/
type_info.cc
78
bad_cast
::
bad_cast
() _GABIXX_NOEXCEPT {
81
bad_cast
::~
bad_cast
() _GABIXX_NOEXCEPT {
84
const char*
bad_cast
::what() const _GABIXX_NOEXCEPT {
85
return "std::
bad_cast
";
auxilary.cc
33
throw std::
bad_cast
();
/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/current/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/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
typeinfo.h
22
using std::
bad_cast
;
26
typedef
bad_cast
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/current/sources/cxx-stl/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; }
/external/libcxx/test/std/localization/locales/locale.global.templates/
use_facet.pass.cpp
39
catch (std::
bad_cast
&)
/external/libcxxabi/test/
test_aux_runtime.pass.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
&)
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
test_aux_runtime.pass.cpp
37
// std::
bad_cast
(18.7.2).
46
catch ( const std::
bad_cast
&bc ) { return true; }
Completed in 974 milliseconds
1
2