Searched defs:C2 (Results 1 - 25 of 108) sorted by relevance

12345

/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A DC_two.h4 unsigned long *C2; variable
/external/clang/test/SemaCXX/
H A Dvisibility.cpp5 struct C2 struct in namespace:test1
10 return C2<int>::p;
H A DPR12481.cpp4 class C2 { }; class
15 BinaryTrie<C2> c2_trie_;
H A Dms-interface.cpp76 class C2 : I6<I> { class in inherits:I6
H A Dderived-to-base-ambig.cpp15 class C2 : virtual public A2 { }; class in inherits:A2
16 class D2 : public B2, public C2 { };
17 class E2 : public D2, public C2, public virtual A2 { };
H A Dalias-template.cpp78 class C2 { class in namespace:ClassNameRedecl
H A Ddefault2.cpp115 class C2 { class
116 static void g(int = f()); // expected-error{{use of default argument to function 'f' that is declared later in class 'C2'}}
H A Dvtable-instantiation.cc10 template<class T2> struct C2 { struct in namespace:PR8640
17 C2<int*> c2;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-618.js44 function C2() { class
47 var c2 = new C2();
53 C2.prototype.__proto__ = { set x(value) { this.y = 23; } };
54 var c2 = new C2();
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-non-virtual-base-ordering.cpp6 struct C2 { int a; virtual void C2M() {} }; 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.cpp15 class C2 class in namespace:Test1
24 , public C2
32 : public C2
41 , public C2
61 , virtual public C2
72 , public C2
89 // CHECK-NEXT: -- (Test1::C2, 0) vtable address --
97 // CHECK-NEXT: -- (Test1::C2, 16) vtable address --
105 // CHECK-NEXT: -- (Test1::C2, 48) vtable address --
117 // CHECK-NEXT: -- (Test1::C2, 8
[all...]
H A Dvtt-layout.cpp34 class C2 : public virtual V3, virtual V2 { int i; }; class in namespace:Test3
37 class D : public C1, public C2, public C3 { int i; };
53 class C2 : public virtual V3, virtual V2 { int i; }; class in namespace:Test4
56 class D : public C1, public C2, public C3 { int i; };
/external/clang/test/SemaTemplate/
H A Dclass-template-id-2.cpp14 class C2 : public N::A<float> { }; // expected-error{{base class has incomplete type}} class in inherits:N::A
/external/chromium_org/v8/test/mjsunit/
H A Dsetter-on-constructor-prototype.js46 function C2() { class
49 C2.prototype = { };
50 C2.prototype.__proto__ = { set x(value) { this.y = 23; } };
52 %ToFastProperties(C2.prototype.__proto__)
56 var c2 = new C2();
/external/libcxxabi/test/
H A Dcatch_class_03.cpp43 struct C2 struct in inherits:B
48 explicit C2(int id) : B(id-2), id_(id) {count++;} function in struct:C2
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C2
50 ~C2() {count--;}
53 int C2::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++;}
71 assert(C2
[all...]
H A Dcatch_class_04.cpp43 struct C2 struct in inherits:B
48 explicit C2(int id) : B(id-2), id_(id) {count++;} function in struct:C2
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C2
50 ~C2() {count--;}
53 int C2::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++;}
71 assert(C2
[all...]
H A Dcatch_ptr.cpp43 struct C2 struct in inherits:B
48 explicit C2(int id) : B(id-2), id_(id) {count++;} function in struct:C2
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} function in struct:C2
50 ~C2() {count--;}
53 int C2::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++;}
86 assert(static_cast<const C2*>(
[all...]
/external/clang/test/CXX/class/class.mfct/class.mfct.non-static/
H A Dp3.cpp45 struct C2 : B { }; struct in namespace:test1
53 C2::foo(Opaque1()); // expected-error {{call to non-static member function without an object argument}}
/external/fdlibm/
H A Dk_cos.c30 * |ieee_cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
34 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
58 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */ variable
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
/external/lldb/test/functionalities/stop-hook/
H A Dmain.cpp47 int C2 = c(2); // Another breakpoint which is outside of the stop-hook range. local
48 printf("c(2) returns %d\n", C2);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp93 class C2 { class in namespace:ClassNameRedecl
/external/clang/test/Layout/
H A Dms-x86-empty-nonvirtual-bases.cpp16 struct C2 { int a; C2() : a(0xf00000C2) {printf("C2 : %p\n", this);} }; function in struct:C2
73 C2 c2;
95 // CHECK: 16 | struct C2 c2
106 struct E : B0, C0, C1, C2, B1 {
118 // CHECK-NEXT: 8 | struct C2 (base)
/external/lldb/test/functionalities/data-formatter/data-formatter-script/
H A Dmain.cpp31 i_am_cooler(int I1, int I2, float F1, float F2, char C1, char C2) : argument
33 second_cool(I2,F2,C2),
/external/chromium_org/third_party/smhasher/src/
H A DPMurHash.c146 #define C2 (0x1b873593) macro
153 k1 *= C2; \
269 k1 *= C1; k1 = ROTL32(k1,15); k1 *= C2; h ^= k1;
/external/clang/test/OpenMP/
H A Dsimd_aligned_messages.cpp14 const int C2 = 2; variable
42 #pragma omp simd aligned(B::ib,B:C1+C2)

Completed in 2026 milliseconds

12345