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

1 2 3

  /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'}}
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 *'}} \
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
131 class C1 {
135 C1::U<int> w; // ok
warn-bad-memaccess.cpp 13 class C1 {
17 } c1; variable in typeref:class:C1
103 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/src/
k_cosf.c 30 C1 = 0x155553e1053a42.0p-57, /* 0.0416666233237390631894 */
46 return ((one+z*C0) + w*C1) + (w*z)*r;
k_cos.c 30 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
34 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
38 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
62 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */
75 r = z*(C1+z*(C2+z*(C3+z*(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/
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/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
150 class C1 {
154 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...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
GOFBBlockCipher.java 24 static final int C1 = 16843012; //00000001000000010000000100000100
171 N4 += C1;
  /external/clang/test/FixIt/
fixit.cpp 10 struct C1 {
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}}
  /frameworks/base/services/java/com/android/server/
TwilightCalculator.java 40 private static final float C1 = 0.0334196f;
78 final float trueAnomaly = meanAnomaly + C1 * FloatMath.sin(meanAnomaly) + C2
  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 275 CompilationUnit C1 = new CompilationUnit("a.C",
279 IApi toApi = convert(C1);
289 CompilationUnit C1 = new CompilationUnit("a.C",
293 IApi toApi = convert(C1);
305 CompilationUnit C1 = new CompilationUnit("a.C",
311 IApi toApi = convert(C1);
323 CompilationUnit C1 = new CompilationUnit("a.C",
329 IApi toApi = convert(C1);
343 CompilationUnit C1 = new CompilationUnit("a.C",
351 IApi toApi = convert(C1);
    [all...]
MethodCompareTests.java 206 CompilationUnit C1 = new CompilationUnit("a.C0",
212 IApi toApi = convert(C1);
224 CompilationUnit C1 = new CompilationUnit("a.C0",
228 IApi toApi = convert(C1);
245 CompilationUnit C1 = new CompilationUnit("a.C0",
249 IApi toApi = convert(C1, I);
266 CompilationUnit C1 = new CompilationUnit("a.C0",
270 IApi toApi = convert(C1, I);
287 CompilationUnit C1 = new CompilationUnit("a.C0",
291 IApi toApi = convert(C1, I)
    [all...]

Completed in 811 milliseconds

1 2 3