HomeSort by relevance Sort by last modified time
    Searched defs:T8 (Results 1 - 19 of 19) sorted by null

  /external/clang/test/Preprocessor/
assembler-with-cpp.c 66 #define T8(A,B) A ## B
67 10: T8(.,T8)
68 // CHECK-Identifiers-True: 10: .T8
  /external/clang/test/SemaCXX/
trivial-constructor.cpp 36 struct T8 : T2 {
38 static_assert(!__has_trivial_constructor(T8), "The base class T2 does not have a trivial constructor!");
trivial-destructor.cpp 36 struct T8 : T2 {
38 static_assert(!__has_trivial_destructor(T8), "The base class T2 does not have a trivial destructor!");
virtual-override.cpp 107 namespace T8 {
109 struct b; // expected-note {{forward declaration of 'T8::b'}}
116 b* f(); // expected-error {{return type of virtual function 'f' is not covariant with the return type of the function it overrides ('T8::b' is incomplete)}}
  /external/clang/test/CodeGenCXX/
mangle-unnamed.cpp 75 enum { T8 };
81 void test8() { make_test8(T8); }