HomeSort by relevance Sort by last modified time
    Searched defs:C1 (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/clang/test/Modules/Inputs/wildcard-submodule-exports/
C_one.h 4 long *C1;
  /external/clang/test/CXX/temp/temp.param/
p12.cpp 37 class C1 {};
39 C1<> c1; // expected-note{{while checking a default template argument}} variable
  /external/clang/test/SemaTemplate/
dependent-class-member-operator.cpp 4 template<class T> struct C1 { void operator()(T); };
8 foo(&C1<int>::operator());
9 foo(&C1<int>::operator+); // expected-error {{no member named 'operator+' in 'C1<int>'}}
class-template-id-2.cpp 12 class C1 : public N::A<int> { };
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType2FunctionDictionary_autogen.cpp 23 SkPdfArray* SkPdfType2FunctionDictionary::C1(SkPdfNativeDoc* doc) {
24 SkPdfNativeObject* ret = get("C1", "");
32 return get("C1", "") != NULL;
  /external/clang/test/CodeGenCXX/
microsoft-abi-non-virtual-base-ordering.cpp 5 struct C1 { int a; virtual void C1M() {} };
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 }
vtable-layout-extreme.cpp 10 class C1
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, 224) vtable address -
    [all...]
  /external/clang/test/SemaCXX/
ambiguous-builtin-unary-operator.cpp 27 struct C1 : B1, A1 { };
29 void test(C1 c) {
out-of-line-def-mismatch.cpp 7 class C1 {};
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'}}
PR12481.cpp 3 class C1 { };
14 BinaryTrie<C1> c1_trie_;
builtin-ptrtomember-overload-1.cpp 33 struct C1 : B1 {
37 void foo1(C1 c1, int A::* pmf) {
38 int i = c1->*pmf;
39 c1->*pmf = 10;
42 void foo1(C1 c1, int E::* pmf) {
43 int i = c1->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
44 // expected-note {{because of ambiguity in conversion of 'C1' to 'E *'}} \
ms-interface.cpp 73 class C1 : I6<C> {
vtable-instantiation.cc 4 template<class T1> struct C1 {
5 virtual void c1() { function in struct:PR8640::C1
12 new C1<T2>(); // expected-note {{in instantiation of member function}}
  /external/chromium_org/v8/test/mjsunit/
setter-on-constructor-prototype.js 31 function C1() {
34 C1.prototype = { set x(value) { this.y = 23; } };
36 %ToFastProperties(C1.prototype);
40 var c1 = new C1();
41 assertEquals("undefined", typeof c1.x);
42 assertEquals(23, c1.y);
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_cosf.c 29 C1 = 0x155553e1053a42.0p-57, /* 0.0416666233237390631894 */
45 return ((one+z*C0) + w*C1) + (w*z)*r;
k_cos.c 29 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
33 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
37 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
61 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */
75 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-618.js 29 function C1() {
32 var c1 = new C1();
33 assertEquals(23, c1.x);
34 assertEquals("undefined", typeof c1.y);
38 C1.prototype = { set x(value) { this.y = 23; } };
39 var c1 = new C1();
40 assertEquals("undefined", typeof c1.x);
41 assertEquals(23, c1.y)
    [all...]
regress-calls-with-migrating-prototypes.js 33 function C1(f) {
36 var o1 = new C1(f);
37 var o2 = {__proto__: new C1(f) }
45 var o3 = new C1(function() { return 2; });
  /external/lldb/test/functionalities/breakpoint/breakpoint_ignore_count/
main.c 51 int C1 = c(5); // Find the call site of c in main.
52 printf ("c(5) returns %d\n", C1);
  /external/libcxxabi/test/
catch_class_03.cpp 31 struct C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;}
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::count == 0)
    [all...]
catch_class_04.cpp 31 struct C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;}
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::count == 0)
    [all...]
catch_ptr.cpp 31 struct C1
36 explicit C1(int id) : B(id-2), id_(id) {count++;}
37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;}
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*>(a)->id_ == 4)
    [all...]
  /external/clang/test/CXX/class/class.mfct/class.mfct.non-static/
p3.cpp 44 struct C1 : A { };
52 C1::foo(Opaque1()); // expected-error {{call to non-static member function without an object argument}}
  /external/fdlibm/
k_cos.c 26 * 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 */
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_cosl.c 36 C1 = 0.04166666666666666666666666666666658424671L,
56 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*(C7+

Completed in 1496 milliseconds

1 2 3 4 5