Searched refs:C1 (Results 1 - 25 of 264) sorted by relevance

1234567891011

/external/v8/test/mjsunit/regress/
H A Dregress-crbug-480819.js9 class C1 {}
H A Dregress-calls-with-migrating-prototypes.js33 function C1(f) { class
36 var o1 = new C1(f);
37 var o2 = {__proto__: new C1(f) }
45 var o3 = new C1(function() { return 2; });
/external/clang/test/Modules/
H A Dmisplaced-3.cpp4 class C1 { // expected-note{{'C1' begins here}} class
5 #include "dummy.h" // expected-error{{import of module 'dummy' appears within 'C1'}}
H A Dsubmodule-visibility-cycles.cpp5 C1 c1;
H A Dmacro-hiding.cpp84 #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 Dcycle1.h6 struct C1 {}; struct
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp9.cpp5 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/SemaTemplate/
H A Ddependent-class-member-operator.cpp4 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>'}}
H A Dclass-template-id-2.cpp12 class C1 : public N::A<int> { }; class in inherits:N::A
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-non-virtual-base-ordering.cpp5 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 Dvtable-layout-extreme.cpp10 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 DC_one.h4 long *C1; variable
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dmixing-global-constructors.cc25 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 DRow.java19 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
20 Freezable<Row<C0, C1, C2, C3, C4>>{
27 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) {
28 return new R2<C0,C1>(p0,p1);
30 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) {
31 return new R3<C0,C1,C
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRow.java15 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
16 Freezable<Row<C0, C1, C2, C3, C4>>{
23 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) {
24 return new R2<C0,C1>(p0,p1);
26 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) {
27 return new R3<C0,C1,C
[all...]
/external/clang/test/SemaCXX/
H A DPR12481.cpp3 class C1 { }; class
14 BinaryTrie<C1> c1_trie_;
H A Dambiguous-builtin-unary-operator.cpp27 struct C1 : B1, A1 { }; struct in inherits:B1,A1
29 void test(C1 c) {
H A Dout-of-line-def-mismatch.cpp7 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 Dbuiltin-ptrtomember-overload-1.cpp33 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/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Ddeduction.cpp33 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 Dcatch_class_03.pass.cpp31 struct C1 struct in inherits:B
36 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1
38 ~C1() {count--;}
41 int C1::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;}
70 assert(C1
[all...]
H A Dcatch_class_04.pass.cpp31 struct C1 struct in inherits:B
36 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1
38 ~C1() {count--;}
41 int C1::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;}
70 assert(C1
[all...]
H A Dcatch_ptr.pass.cpp31 struct C1 struct in inherits:B
36 explicit C1(int id) : B(id-2), id_(id) {count++;} function in struct:C1
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C1
38 ~C1() {count--;}
41 int C1::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;}
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;}
85 assert(static_cast<const C1*>(
[all...]
/external/clang/test/CXX/temp/temp.param/
H A Dp12.cpp37 class C1 {}; class
39 C1<> c1; // expected-note{{while checking a default template argument}}
/external/testng/src/test/java/test/dependent/
H A DC1.java8 public class C1 { class

Completed in 1067 milliseconds

1234567891011