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

1 2 3 4 5 6 7 8 9

  /external/clang/test/PCH/
cxx-typeid.cpp 2 // RUN: %clang_cc1 -include %S/cxx-typeid.h -fsyntax-only -verify %s
4 // RUN: %clang_cc1 -x c++-header -emit-pch -o %t.pch %S/cxx-typeid.h
10 (void)typeid(int);
  /external/clang/test/Parser/
cxx-typeid.cpp 10 (void)typeid(int);
11 (void)typeid(0);
12 (void)typeid 1; // expected-error {{expected '(' after 'typeid'}}
  /external/clang/test/SemaCXX/
typeid.cpp 5 (void)typeid(int); // expected-error {{you need to include <typeinfo> before using the 'typeid' operator}}
14 (void)typeid(int);
20 (void)typeid(X); // expected-error{{'typeid' of incomplete type 'X'}}
21 (void)typeid(X&); // expected-error{{'typeid' of incomplete type 'X'}}
22 (void)typeid(x); // expected-error{{'typeid' of incomplete type 'X'}}
MicrosoftCompatibilityNoExceptions.cpp 8 (void)typeid(int);
runtimediag-ppe.cpp 12 void test1() { (void)typeid(NP(1 << 32)); }
16 void test2() { (void)typeid(P(1 << 32)); } // expected-warning {{shift count >= width of type}}
18 void test3() { 1 ? (void)0 : (void)typeid(P(1 << 32)); }
typeid-ref.cpp 11 (void)typeid(X&);
  /external/clang/test/CodeGenCXX/
rtti-linkage.cpp 72 (void)typeid(C*);
73 (void)typeid(C**);
74 (void)typeid(int C::*);
75 (void)typeid(int C::**);
76 (void)typeid(C C::*);
77 (void)typeid(C *C::*);
78 (void)typeid(C A::*);
79 (void)typeid(C* A::*);
102 (void)typeid(const D);
103 (void)typeid(D *)
    [all...]
rtti-visibility.cpp 18 (void)typeid(A);
19 (void)typeid(A *);
33 (void)typeid(A);
typeid.cpp 10 const std::type_info &int_ti = typeid(int);
13 const std::type_info &A_ti = typeid(const volatile A &);
18 const std::type_info &c_ti = typeid(c);
23 const std::type_info &d_ti = typeid(d);
28 const std::type_info &a_ti = typeid(a);
35 return typeid(*static_cast<A *>(0)).name();
rtti-fundamental.cpp 6 return typeid(void);
vtable-key-function-ios.cpp 27 Test0a::Test0a() { use(typeid(Test0a)); }
46 Test0b::Test0b() { use(typeid(Test0b)); }
59 Test1a::Test1a() { use(typeid(Test1a)); }
79 Test1b::Test1b() { use(typeid(Test1b)); }
93 Test2a::Test2a() { use(typeid(Test2a)); }
112 Test2b::Test2b() { use(typeid(Test2b)); }
131 Test2c::Test2c() { use(typeid(Test2c)); }
145 Test3a::Test3a() { use(typeid(Test3a)); }
165 Test3b::Test3b() { use(typeid(Test3b)); }
186 Test3c::Test3c() { use(typeid(Test3c));
    [all...]
vtable-key-function-arm.cpp 27 Test0a::Test0a() { use(typeid(Test0a)); }
46 Test0b::Test0b() { use(typeid(Test0b)); }
59 Test1a::Test1a() { use(typeid(Test1a)); }
78 Test1b::Test1b() { use(typeid(Test1b)); }
91 Test2a::Test2a() { use(typeid(Test2a)); }
112 Test2b::Test2b() { use(typeid(Test2b)); }
132 Test2c::Test2c() { use(typeid(Test2c)); }
146 Test3a::Test3a() { use(typeid(Test3a)); }
167 Test3b::Test3b() { use(typeid(Test3b)); }
187 Test3c::Test3c() { use(typeid(Test3c));
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
test_gabixx_rtti.cpp 63 CHECK(typeid(int) == typeid(i));
64 CHECK(typeid(int*) == typeid(pi));
65 CHECK(typeid(int) == typeid(*pi));
67 printf("int is: %s\n", typeid(int).name());
68 printf(" i is: %s\n", typeid(i).name());
69 printf(" pi is: %s\n", typeid(pi).name());
70 printf("*pi is: %s\n", typeid(*pi).name())
    [all...]
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 63 CHECK(typeid(int) == typeid(i));
64 CHECK(typeid(int*) == typeid(pi));
65 CHECK(typeid(int) == typeid(*pi));
67 printf("int is: %s\n", typeid(int).name());
68 printf(" i is: %s\n", typeid(i).name());
69 printf(" pi is: %s\n", typeid(pi).name());
70 printf("*pi is: %s\n", typeid(*pi).name())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
ctor.pass.cpp 21 std::type_index t1 = typeid(int);
hash_code.pass.cpp 21 const std::type_info& ti = typeid(int);
22 std::type_index t1 = typeid(int);
name.pass.cpp 22 const std::type_info& ti = typeid(int);
23 std::type_index t1 = typeid(int);
eq.pass.cpp 22 std::type_index t1 = typeid(int);
23 std::type_index t2 = typeid(int);
24 std::type_index t3 = typeid(long);
  /external/stlport/test/unit/
typeinfo_header_test.cpp 18 const std::type_info& ti = typeid(A);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.overview/
copy_assign.pass.cpp 21 std::type_index t1(typeid(int));
22 std::type_index t2(typeid(double));
copy_ctor.pass.cpp 21 std::type_index t1(typeid(int));
  /ndk/tests/device/test-gnustl-full/unit/
typeinfo_header_test.cpp 18 const std::type_info& ti = typeid(A);
  /ndk/tests/device/test-stlport/unit/
typeinfo_header_test.cpp 18 const std::type_info& ti = typeid(A);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
type_info_hash.pass.cpp 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 18 const std::type_info& t1 = typeid(int);
19 const std::type_info& t2 = typeid(int);
21 const std::type_info& t3 = typeid(short);

Completed in 2112 milliseconds

1 2 3 4 5 6 7 8 9