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

1 2 3 4 5 6 7 8 91011

  /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/libxml2/doc/examples/
tree2.c 39 doc = xmlNewDoc(BAD_CAST "1.0");
40 root_node = xmlNewNode(NULL, BAD_CAST "root");
46 dtd = xmlCreateIntSubset(doc, BAD_CAST "root", NULL, BAD_CAST "tree2.dtd");
52 xmlNewChild(root_node, NULL, BAD_CAST "node1",
53 BAD_CAST "content of node 1");
57 xmlNewChild(root_node, NULL, BAD_CAST "node2", NULL);
64 xmlNewChild(root_node, NULL, BAD_CAST "node3",
65 BAD_CAST "this node has attributes");
66 xmlNewProp(node, BAD_CAST "attribute", BAD_CAST "yes")
    [all...]
io2.c 27 doc = xmlNewDoc(BAD_CAST "1.0");
28 n = xmlNewNode(NULL, BAD_CAST "root");
29 xmlNodeSetContent(n, BAD_CAST "content");
testWriter.c 94 rc = xmlTextWriterStartElement(writer, BAD_CAST "EXAMPLE");
116 rc = xmlTextWriterStartElement(writer, BAD_CAST "ORDER");
124 rc = xmlTextWriterWriteAttribute(writer, BAD_CAST "version",
125 BAD_CAST "1.0");
133 rc = xmlTextWriterWriteAttribute(writer, BAD_CAST "xml:lang",
134 BAD_CAST "de");
154 rc = xmlTextWriterStartElement(writer, BAD_CAST "HEADER");
162 rc = xmlTextWriterWriteFormatElement(writer, BAD_CAST "X_ORDER_ID",
171 rc = xmlTextWriterWriteFormatElement(writer, BAD_CAST "CUSTOMER_ID",
181 rc = xmlTextWriterWriteElement(writer, BAD_CAST "NAME_1", tmp)
    [all...]
  /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";
  /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";
  /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;
  /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();
  /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;
  /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) {
  /external/libcxx/include/
typeinfo 36 class bad_cast
40 bad_cast() noexcept;
41 bad_cast(const bad_cast&) noexcept;
42 bad_cast& operator=(const bad_cast&) noexcept;
148 class _LIBCPP_EXCEPTION_ABI bad_cast
152 bad_cast() _NOEXCEPT;
153 virtual ~bad_cast() _NOEXCEPT;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
typeinfo 36 class bad_cast
40 bad_cast() noexcept;
41 bad_cast(const bad_cast&) noexcept;
42 bad_cast& operator=(const bad_cast&) noexcept;
148 class _LIBCPP_EXCEPTION_ABI bad_cast
152 bad_cast() _NOEXCEPT;
153 virtual ~bad_cast() _NOEXCEPT;
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
typeinfo 36 class bad_cast
40 bad_cast() noexcept;
41 bad_cast(const bad_cast&) noexcept;
42 bad_cast& operator=(const bad_cast&) noexcept;
148 class _LIBCPP_EXCEPTION_ABI bad_cast
152 bad_cast() _NOEXCEPT;
153 virtual ~bad_cast() _NOEXCEPT;
  /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";
  /bionic/libstdc++/include/
typeinfo 8 class 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/sources/cxx-stl/system/include/
typeinfo 8 class 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/ndk/current/sources/cxx-stl/system/include/
typeinfo 8 class bad_cast;
  /external/libxml2/
xlink.c 42 #define XLINK_NAMESPACE (BAD_CAST "http://www.w3.org/1999/xlink/namespace/")
43 #define XHTML_NAMESPACE (BAD_CAST "http://www.w3.org/1999/xhtml/")
149 type = xmlGetNsProp(node, BAD_CAST"type", XLINK_NAMESPACE);
151 if (xmlStrEqual(type, BAD_CAST "simple")) {
153 } else if (xmlStrEqual(type, BAD_CAST "extended")) {
154 role = xmlGetNsProp(node, BAD_CAST "role", XLINK_NAMESPACE);
160 if (xmlStrEqual(role, BAD_CAST"xlink:external-linkset"))

Completed in 3814 milliseconds

1 2 3 4 5 6 7 8 91011