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

123

/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/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 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 Dalias-template.cpp74 class C1 { class in namespace:ClassNameRedecl
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
131 class C1 {
135 C1::U<int> w; // ok
H A Dvtable-instantiation.cc4 template<class T1> struct C1 { struct in namespace:PR8640
12 new C1<T2>(); // expected-note {{in instantiation of member function}}
H A Dwarn-bad-memaccess.cpp13 class C1 { class
/external/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/v8/test/mjsunit/bugs/
H A D618.js29 function C1() { class
32 var c1 = new C1();
38 C1.prototype = { set x(value) { this.y = 23; } };
39 var c1 = new C1();
/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/clang/test/CodeGenCXX/
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 Dvtt-layout.cpp33 class C1 : public virtual V1 { int i; }; class in namespace:Test3
37 class D : public C1, public C2, public C3 { int i; };
52 class C1 : public virtual V1 { int i; }; class in namespace:Test4
56 class D : public C1, public C2, public C3 { int i; };
/external/clang/test/Sema/
H A Dwarn-unreachable.c102 enum Cases { C1, C2, C3 }; enumerator in enum:Cases
105 case C1:
/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/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
150 class C1 {
154 C1::U w; // ok
/external/dropbear/libtomcrypt/testprof/
H A Decc_test.c36 ecc_point *G, *A, *B, *C1, *C2; local
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
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
H A DGOFBBlockCipher.java24 static final int C1 = 16843012; //00000001000000010000000100000100 field in class:GOFBBlockCipher
171 N4 += C1;
/external/clang/test/FixIt/
H A Dfixit.cpp10 struct C1 { struct
14 struct C2 : virtual public virtual C1 { }; // expected-error{{duplicate}}
16 virtual void C1::f() { } // expected-error{{'virtual' can only be specified inside the class definition}}
18 static void C1::g() { } // expected-error{{'static' can only be specified inside the class definition}}
/external/bluetooth/bluez/sbc/
H A Dsbc_tables.h380 #define C1 1.3056875580 macro
386 F(5.36548976E-04 * C1), F(2.73370904E-03 * C1),
390 F(2.04385087E-02 * C1), F(3.21939290E-02 * C1),
394 F(1.94987841E-01 * C1), F(2.81828203E-01 * C1),
398 -F(7.76463494E-02 * C1), F(6.13245186E-03 * C1),
402 -F(3.06012286E-03 * C1),
418 #undef C1 macro
425 #define C1 macro
463 #undef C1 macro
470 #define C1 macro
556 #undef C1 macro
567 #define C1 macro
653 #undef C1 macro
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java335 private int C0, C1, C2, C3; field in class:AESEngine
431 C1 = (bytes[index++] & 0xff);
432 C1 |= (bytes[index++] & 0xff) << 8;
433 C1 |= (bytes[index++] & 0xff) << 16;
434 C1 |= bytes[index++] << 24;
458 bytes[index++] = (byte)C1;
459 bytes[index++] = (byte)(C1 >> 8);
460 bytes[index++] = (byte)(C1 >> 16);
461 bytes[index++] = (byte)(C1 >> 24);
480 C1
[all...]
H A DAESFastEngine.java666 private int C0, C1, C2, C3; field in class:AESFastEngine
762 C1 = (bytes[index++] & 0xff);
763 C1 |= (bytes[index++] & 0xff) << 8;
764 C1 |= (bytes[index++] & 0xff) << 16;
765 C1 |= bytes[index++] << 24;
789 bytes[index++] = (byte)C1;
790 bytes[index++] = (byte)(C1 >> 8);
791 bytes[index++] = (byte)(C1 >> 16);
792 bytes[index++] = (byte)(C1 >> 24);
810 C1
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp34 constexpr class C1 {}; // expected-error {{class cannot be marked constexpr}} class
/external/clang/test/Parser/
H A DMicrosoftExtensions.cpp133 class C1 { class
142 typename C1<T>:: /*template*/ Iterator<0> Mypos; // expected-warning {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
147 typename C1<T>:: /*template*/ Iterator<0> Mypos; // expected-warning {{use 'template' keyword to treat 'Iterator' as a dependent template name}}

Completed in 358 milliseconds

123