/external/clang/test/Modules/ |
H A D | misplaced-3.cpp | 4 class C1 { // expected-note{{'C1' begins here}} class 5 #include "dummy.h" // expected-error{{import of module 'dummy' appears within 'C1'}}
|
H A D | submodule-visibility-cycles.cpp | 5 C1 c1;
|
H A D | macro-hiding.cpp | 84 #ifdef C1 100 #if defined(A1) || defined(B2) || defined(C1) || defined(D1) || defined(E1) || defined(E2)
|
/external/clang/test/Modules/Inputs/submodule-visibility/ |
H A D | cycle1.h | 6 struct C1 {}; struct
|
/external/clang/test/SemaTemplate/ |
H A D | undefined-template.cpp | 3 template <class T> struct C1 { struct 21 extern template char C1<int>::s_var_2; 22 extern template void C1<int>::s_func_2(); 23 extern template void C1<int>::meth_2(); 24 extern template char C1<int>::s_tvar_2<char>; 25 extern template void C1<int>::s_tfunc_2<char>(); 26 extern template void C1<int>::C2<long>::s_var_2; 27 extern template void C1<int>::C2<long>::s_func_2(); 28 extern template void C1<int>::C2<long>::meth_2(); 29 extern template char C1<in [all...] |
H A D | dependent-class-member-operator.cpp | 4 template<class T> struct C1 { void operator()(T); }; struct 8 foo(&C1<int>::operator()); 9 foo(&C1<int>::operator+); // expected-error {{no member named 'operator+' in 'C1<int>'}}
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
H A D | p9.cpp | 5 template<char C1, char C2> 10 template<int C1> 11 struct X<C1, C1> { 22 template<unsigned char C1, unsigned char C3> 23 struct int_values<C1, 12, C3> {
|
/external/clang/test/CodeGenCXX/ |
H A D | microsoft-abi-non-virtual-base-ordering.cpp | 5 struct C1 { int a; virtual void C1M() {} }; struct 7 struct C3 : C0, C1, C2 {} a; 9 // Check to see that both C1 and C2 get laid out before C0 does. 10 // CHECK: %struct.C3 = type { %struct.C1, %struct.C2, %struct.C0 }
|
H A D | vtable-layout-extreme.cpp | 10 class C1 class in namespace:Test1 17 , virtual public C1 23 , virtual public C1 42 , public C1 52 , public C1 71 , public C1 111 // CHECK-NEXT: -- (Test1::C1, 64) vtable address -- 122 // CHECK-NEXT: -- (Test1::C1, 104) vtable address -- 132 // CHECK-NEXT: -- (Test1::C1, 152) vtable address -- 164 // CHECK-NEXT: -- (Test1::C1, 22 [all...] |
/external/clang/test/Modules/Inputs/wildcard-submodule-exports/ |
H A D | C_one.h | 4 long *C1; variable
|
/external/compiler-rt/test/asan/TestCases/Darwin/ |
H A D | mixing-global-constructors.cc | 25 struct C1 { struct 26 C1() { function in struct:C1 34 C1 *obj = new C1();
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | Row.java | 21 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 22 Freezable<Row<C0, C1, C2, C3, C4>>{ 29 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) { 30 return new R2<C0,C1>(p0,p1); 32 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { 33 return new R3<C0,C1,C [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Row.java | 17 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 18 Freezable<Row<C0, C1, C2, C3, C4>>{ 25 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) { 26 return new R2<C0,C1>(p0,p1); 28 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { 29 return new R3<C0,C1,C [all...] |
/external/clang/test/SemaCXX/ |
H A D | PR12481.cpp | 3 class C1 { }; class 14 BinaryTrie<C1> c1_trie_;
|
H A D | ambiguous-builtin-unary-operator.cpp | 27 struct C1 : B1, A1 { }; struct in inherits:B1,A1 29 void test(C1 c) {
|
H A D | out-of-line-def-mismatch.cpp | 7 class C1 {}; class in namespace:N2::N1 11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}} 21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
|
H A D | builtin-ptrtomember-overload-1.cpp | 33 struct C1 : B1 { struct in inherits:B1 37 void foo1(C1 c1, int A::* pmf) { 42 void foo1(C1 c1, int E::* pmf) { 44 // expected-note {{because of ambiguity in conversion of 'C1' to 'E *'}} \
|
/external/libcxx/test/libcxx/debug/containers/ |
H A D | db_sequence_container_iterators.pass.cpp | 120 Container C1 = makeContainer(3); local 121 iterator it1 = C1.begin(); 122 iterator it1_next = ++C1.begin(); 123 iterator it1_after_next = ++C1.begin(); 125 iterator it1_back = --C1.end(); 128 CHECK_DEBUG_THROWS( C1.erase(it1_next, it1) ); // bad range 130 C1.erase(it1, it1_after_next); 131 CHECK_DEBUG_THROWS( C1.erase(it1) ); 132 CHECK_DEBUG_THROWS( C1.erase(it1_next) ); 134 C1 142 Container C1 = makeContainer(2); local 154 Container C1 = makeContainer(2); local 165 Container C1 = makeContainer(2); local 190 Container C1 = makeContainer(2); local 210 Container C1 = makeContainer(2); local 229 Container C1 = makeContainer(2); local [all...] |
H A D | db_string.pass.cpp | 83 Container C1 = makeContainer(N); local 84 iterator it1 = C1.end(); 86 C1.pop_back(); 87 CHECK_DEBUG_THROWS( C1.erase(it1) ); 88 C1.erase(C1.begin(), C1.end()); 89 assert(C1.size() == 0); 90 CHECK_DEBUG_THROWS( C1.pop_back() );
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
H A D | deduction.cpp | 33 template<int C1, char C3> 34 struct char_values<C1, 12, C3> { 44 template<unsigned char C1, unsigned char C3> 45 struct int_values<C1, 12, C3> {
|
/external/libcxxabi/test/ |
H A D | catch_class_03.pass.cpp | 40 struct C1 struct in inherits:B 45 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1 46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1 47 ~C1() {count--;} 50 int C1::count = 0; 65 : C1, C2 69 explicit A(int id) : C1(id-1), C2(id-2), id_(id) {count++;} 70 A(const A& a) : C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} 79 assert(C1 [all...] |
H A D | catch_class_04.pass.cpp | 40 struct C1 struct in inherits:B 45 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1 46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1 47 ~C1() {count--;} 50 int C1::count = 0; 65 : C1, C2 69 explicit A(int id) : B(id+3), C1(id-1), C2(id-2), id_(id) {count++;} 70 A(const A& a) : B(a.id_+3), C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} 79 assert(C1 [all...] |
H A D | catch_ptr.pass.cpp | 40 struct C1 struct in inherits:B 45 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1 46 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1 47 ~C1() {count--;} 50 int C1::count = 0; 65 : C1, C2 69 explicit A(int id) : B(id+3), C1(id-1), C2(id-2), id_(id) {count++;} 70 A(const A& a) : B(a.id_+3), C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} 94 assert(static_cast<const C1*>( [all...] |
/external/clang/test/CXX/temp/temp.param/ |
H A D | p12.cpp | 37 class C1 {}; class 39 C1<> c1; // expected-note{{while checking a default template argument}}
|
/external/clang/test/CXX/special/class.init/class.inhctor.init/ |
H A D | p2.cpp | 7 struct C1 : B { using B::B; }; struct in namespace:std_example 10 struct D1 : C1, C2 { 11 using C1::C1; // expected-note {{inherited from base class 'C1' here}}
|