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

1 2 3 4 5 6 7 8 9

  /external/clang/test/PCH/
cxx-typeid.h 8 class type_info class in namespace:std
11 virtual ~type_info();
13 bool operator==(const type_info& rhs) const;
14 bool operator!=(const type_info& rhs) const;
16 bool before(const type_info& rhs) const;
20 type_info(const type_info& rhs);
21 type_info& operator=(const type_info& rhs);
  /external/clang/test/SemaCXX/
MicrosoftCompatibilityNoExceptions.cpp 6 class type_info {}; class
typeid-ref.cpp 3 class type_info;
  /external/libcxx/src/
typeinfo.cpp 17 std::type_info::~type_info()
  /external/clang/test/CodeGenCXX/
2006-03-06-C++RecurseCrash.cpp 5 class type_info { class in namespace:std
7 virtual ~type_info();
13 class __si_class_type_info : public std::type_info {
typeid.cpp 9 // CHECK: @_ZN5Test16int_tiE = constant %"class.std::type_info"* bitcast (i8** @_ZTIi to %"class.std::type_info"*), align 8
10 const std::type_info &int_ti = typeid(int);
12 // CHECK: @_ZN5Test14A_tiE = constant %"class.std::type_info"* bitcast (i8** @_ZTIN5Test11AE to %"class.std::type_info"*), align 8
13 const std::type_info &A_ti = typeid(const volatile A &);
17 // CHECK: @_ZN5Test14c_tiE = constant %"class.std::type_info"* bitcast (i8** @_ZTIc to %"class.std::type_info"*), align 8
18 const std::type_info &c_ti = typeid(c);
22 // CHECK: @_ZN5Test14d_tiE = constant %"class.std::type_info"* bitcast (i8** @_ZTId to %"class.std::type_info"*), align
    [all...]
microsoft-abi-typeid.cpp 3 struct type_info;
4 namespace std { using ::type_info; }
14 const std::type_info* test0_typeid() { return &typeid(int); }
15 // CHECK-LABEL: define %struct.type_info* @"\01?test0_typeid@@YAPBUtype_info@@XZ"()
16 // CHECK: ret %struct.type_info* bitcast (%rtti.TypeDescriptor2* @"\01??_R0H@8" to %struct.type_info*)
18 const std::type_info* test1_typeid() { return &typeid(A); }
19 // CHECK-LABEL: define %struct.type_info* @"\01?test1_typeid@@YAPBUtype_info@@XZ"()
20 // CHECK: ret %struct.type_info* bitcast (%rtti.TypeDescriptor7* @"\01??_R0?AUA@@@8" to %struct.type_info*)
    [all...]
vtable-key-function-win-comdat.cpp 3 namespace std { class type_info; }
4 extern void use(const std::type_info &rtti);
rtti-fundamental.cpp 5 std::type_info foo() {
microsoft-no-rtti-data.cpp 7 struct type_info;
8 namespace std { using ::type_info; }
20 const std::type_info &ti = typeid(*getS());
arm64.cpp 38 class type_info;
52 const std::type_info &b0 = typeid(B);
56 const std::type_info &b1 = typeid(B*);
61 const std::type_info &c0 = typeid(C);
65 const std::type_info &c1 = typeid(C*);
73 const std::type_info &d0 = typeid(D<int>);
armv7k.cpp 38 class type_info;
51 const std::type_info &b0 = typeid(B);
55 const std::type_info &b1 = typeid(B*);
60 const std::type_info &c0 = typeid(C);
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/src/
type_info.cc 28 // type_info.cc: Methods for std::type_info.
33 // ARM EABI requires string comprison for mangled type names for type_info
42 type_info::~type_info()
48 type_info::operator==(const type_info& rhs) const
60 type_info::operator!=(const type_info& rhs) const
66 type_info::before(const type_info& rhs) cons
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/src/
type_info.cc 28 // type_info.cc: Methods for std::type_info.
33 // ARM EABI requires string comprison for mangled type names for type_info
42 type_info::~type_info()
48 type_info::operator==(const type_info& rhs) const
60 type_info::operator!=(const type_info& rhs) const
66 type_info::before(const type_info& rhs) cons
    [all...]
  /external/clang/test/Parser/
cxx-typeid.cpp 5 class type_info;
  /external/icu/icu4c/source/common/unicode/
std_string.h 33 namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p2-generic-lambda-1y.cpp 10 class type_info;
21 const std::type_info &ti1 = typeid([](auto &a) -> P& { static P p; return p; }(i)); // expected-warning {{expression with side effects will be evaluated despite being used as an operand to 'typeid'}}
22 const std::type_info &ti2 = typeid([](auto) -> int { return i; }(i)); // expected-error{{lambda expression in an unevaluated operand}}\
  /external/libcxx/test/std/language.support/support.rtti/type.info/
type_info_hash.pass.cpp 10 // test type_info
18 const std::type_info& t1 = typeid(int);
19 const std::type_info& t2 = typeid(int);
20 const std::type_info& t3 = typeid(short);
type_info.pass.cpp 10 // test type_info
17 bool test_constructor_explicit(std::type_info const&) { return false; }
23 const std::type_info& t1 = typeid(int);
24 const std::type_info& t2 = typeid(int);
26 const std::type_info& t3 = typeid(short);
33 // type_info has a protected constructor taking a string literal. This
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
type_info_hash.pass.cpp 10 // test type_info
18 const std::type_info& t1 = typeid(int);
19 const std::type_info& t2 = typeid(int);
20 const std::type_info& t3 = typeid(short);
type_info.pass.cpp 10 // test type_info
18 const std::type_info& t1 = typeid(int);
19 const std::type_info& t2 = typeid(int);
21 const std::type_info& t3 = typeid(short);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/language.support/support.rtti/type.info/
type_info_hash.pass.cpp 10 // test type_info
18 const std::type_info& t1 = typeid(int);
19 const std::type_info& t2 = typeid(int);
20 const std::type_info& t3 = typeid(short);
type_info.pass.cpp 10 // test type_info
18 const std::type_info& t1 = typeid(int);
19 const std::type_info& t2 = typeid(int);
21 const std::type_info& t3 = typeid(short);
  /external/icu/icu4c/source/common/
utypeinfo.h 28 namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364
  /external/libcxxabi/src/
stdlib_typeinfo.cpp 15 // type_info
17 type_info::~type_info()

Completed in 323 milliseconds

1 2 3 4 5 6 7 8 9