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

1 2 3 4

  /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/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}}
alias-template.cpp 74 class C1 {
76 template<typename U> using C1 = C1; // expected-error {{name defined in alias declaration must be an identifier}}
79 template<typename U> using C0 = C1; // ok
129 class C1 {
133 C1::U<int> w; // ok
warn-bad-memaccess.cpp 18 class C1 {
22 } c1; variable in typeref:class:C1
108 memset(&c1, 0, sizeof c1);
  /external/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/v8/test/mjsunit/bugs/
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...]
  /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/clang/test/CodeGenCXX/
debug-info-enum-class.cpp 5 enum C { C1 = 1 };
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...]
vtt-layout.cpp 33 class C1 : public virtual V1 { int i; };
37 class D : public C1, public C2, public C3 { int i; };
52 class C1 : public virtual V1 { int i; };
56 class D : public C1, public C2, public C3 { int i; };
  /external/clang/test/Sema/
warn-unreachable.c 102 enum Cases { C1, C2, C3 };
105 case C1:
  /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)))));
  /external/llvm/unittests/IR/
MDBuilderTest.cpp 55 ConstantInt *C1 = cast<ConstantInt>(R1->getOperand(1));
57 EXPECT_EQ(C1->getValue(), B);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
p2-0x.cpp 89 class C1 {
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
  /external/dropbear/libtomcrypt/testprof/
ecc_test.c 36 ecc_point *G, *A, *B, *C1, *C2;
44 LTC_ARGCHK((C1 = ltc_ecc_new_point()) != NULL);
81 /* now, compute kA*A + kB*B = C1 using the older method */
82 DO(ltc_mp.ecc_ptmul(kA, A, C1, modulus, 0));
84 DO(ltc_mp.ecc_ptadd(C1, C2, C1, modulus, mp));
85 DO(ltc_mp.ecc_map(C1, modulus, mp));
91 if ((mp_cmp(C1->x, C2->x) != LTC_MP_EQ) || (mp_cmp(C1->y, C2->y) != LTC_MP_EQ) || (mp_cmp(C1->z, C2->z) != LTC_MP_EQ))
    [all...]

Completed in 842 milliseconds

1 2 3 4