Searched defs:C1 (Results 1 - 25 of 127) sorted by relevance

123456

/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A DC_one.h4 long *C1; variable
/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/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...]
H A Ddebug-info-enum-class.cpp5 enum C { C1 = 1 }; enumerator in enum:A::B::C
/external/clang/test/SemaCXX/
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 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 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 *'}} \
H A Dms-interface.cpp73 class C1 : I6<C> { class in inherits:I6
/external/chromium_org/v8/test/mjsunit/
H A Dsetter-on-constructor-prototype.js31 function C1() {
34 C1.prototype = { set x(value) { this.y = 23; } };
36 %ToFastProperties(C1.prototype);
40 var c1 = new C1();
33 C1.prototype = { set x(value) { this.y = 23; } }; class
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType2FunctionDictionary_autogen.cpp23 SkPdfArray* SkPdfType2FunctionDictionary::C1(SkPdfNativeDoc* doc) { function in class:SkPdfType2FunctionDictionary
24 SkPdfNativeObject* ret = get("C1", "");
32 return get("C1", "") != NULL;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-618.js29 function C1() { class
32 var c1 = new C1();
38 C1.prototype = { set x(value) { this.y = 23; } };
39 var c1 = new 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/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfType2FunctionDictionary_autogen.cpp23 SkPdfArray* SkPdfType2FunctionDictionary::C1(SkPdfNativeDoc* doc) { function in class:SkPdfType2FunctionDictionary
24 SkPdfNativeObject* ret = get("C1", "");
32 return get("C1", "") != NULL;
/external/libcxxabi/test/
H A Dcatch_class_03.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.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.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/class/class.mfct/class.mfct.non-static/
H A Dp3.cpp44 struct C1 : A { }; struct in namespace:test1
52 C1::foo(Opaque1()); // expected-error {{call to non-static member function without an object argument}}
/external/fdlibm/
H A Dk_cos.c26 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
30 * |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
57 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */ variable
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
/external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
H A Dmain.c51 int C1 = c(5); // Find the call site of c in main. local
52 printf ("c(5) returns %d\n", C1);
/external/llvm/unittests/IR/
H A DMDBuilderTest.cpp56 ConstantInt *C1 = cast<ConstantInt>(R1->getOperand(1)); local
58 EXPECT_EQ(C1->getValue(), B);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp89 class C1 { class in namespace:ClassNameRedecl
91 using C1 = C1; // expected-error {{name defined in alias declaration must be an identifier}}
94 using C0 = C1; // ok
147 class C1 {
151 C1::U w; // ok

Completed in 7018 milliseconds

123456