Searched defs:C2 (Results 1 - 25 of 73) sorted by relevance

123

/external/clang/test/Modules/Inputs/wildcard-submodule-exports/
H A DC_two.h4 unsigned long *C2; variable
/external/v8/test/mjsunit/bugs/
H A D618.js44 function C2() { class
47 var c2 = new C2();
53 C2.prototype.__proto__ = { set x(value) { this.y = 23; } };
54 var c2 = new C2();
/external/clang/test/SemaTemplate/
H A Dclass-template-id-2.cpp14 class C2 : public N::A<float> { }; // expected-error{{base class has incomplete type}} class in inherits:N::A
/external/v8/test/mjsunit/
H A Dsetter-on-constructor-prototype.js46 function C2() { class
49 C2.prototype = { };
50 C2.prototype.__proto__ = { set x(value) { this.y = 23; } };
52 %ToFastProperties(C2.prototype.__proto__)
56 var c2 = new C2();
/external/clang/test/SemaCXX/
H A DPR12481.cpp4 class C2 { }; class
15 BinaryTrie<C2> c2_trie_;
H A Dderived-to-base-ambig.cpp15 class C2 : virtual public A2 { }; class in inherits:A2
16 class D2 : public B2, public C2 { };
17 class E2 : public D2, public C2, public virtual A2 { };
H A Dalias-template.cpp78 class C2 { class in namespace:ClassNameRedecl
H A Ddefault2.cpp115 class C2 { class
116 static void g(int = f()); // expected-error{{use of default argument to function 'f' that is declared later in class 'C2'}}
H A Dvtable-instantiation.cc10 template<class T2> struct C2 { struct in namespace:PR8640
17 C2<int*> c2;
H A Dmember-name-lookup.cpp77 struct C2 : virtual A { struct in inherits:A
84 struct D2 : B2, C2 {
H A Dwarn-unique-enum.cpp7 C2 = true // expected-note {{initialize the last element with the previous element to silence this warning}} enumerator in enum:C
/external/clang/test/CXX/class/class.mfct/class.mfct.non-static/
H A Dp3.cpp45 struct C2 : B { }; struct in namespace:test1
53 C2::foo(Opaque1()); // expected-error {{call to non-static member function without an object argument}}
/external/clang/test/CodeGenCXX/
H A Dvtable-layout-extreme.cpp15 class C2 class in namespace:Test1
24 , public C2
32 : public C2
41 , public C2
61 , virtual public C2
72 , public C2
89 // CHECK-NEXT: -- (Test1::C2, 0) vtable address --
97 // CHECK-NEXT: -- (Test1::C2, 16) vtable address --
105 // CHECK-NEXT: -- (Test1::C2, 48) vtable address --
117 // CHECK-NEXT: -- (Test1::C2, 8
[all...]
H A Dvtt-layout.cpp34 class C2 : public virtual V3, virtual V2 { int i; }; class in namespace:Test3
37 class D : public C1, public C2, public C3 { int i; };
53 class C2 : public virtual V3, virtual V2 { int i; }; class in namespace:Test4
56 class D : public C1, public C2, public C3 { int i; };
/external/fdlibm/
H A Dk_cos.c30 * |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
58 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */ variable
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
/external/clang/test/Sema/
H A Dwarn-unreachable.c102 enum Cases { C1, C2, C3 }; enumerator in enum:Cases
106 case C2:
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp93 class C2 { class in namespace:ClassNameRedecl
/external/dropbear/libtomcrypt/testprof/
H A Decc_test.c36 ecc_point *G, *A, *B, *C1, *C2; local
45 LTC_ARGCHK((C2 = ltc_ecc_new_point()) != NULL);
83 DO(ltc_mp.ecc_ptmul(kB, B, C2, modulus, 0));
84 DO(ltc_mp.ecc_ptadd(C1, C2, C1, modulus, mp));
88 DO(ltc_mp.ecc_mul2add(A, kA, B, kB, C2, modulus));
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)) {
98 ltc_ecc_del_point(C2);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java17 public long toMillis(long d) { return d/(C2/C0); }
23 int excessNanos(long d, long m) { return (int)(d - (m*C2)); }
28 public long toMillis(long d) { return d/(C2/C1); }
34 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); }
37 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); }
38 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); }
40 public long toSeconds(long d) { return d/(C3/C2); }
41 public long toMinutes(long d) { return d/(C4/C2); }
95 static final long C2 = C1 * 1000L; field in class:TimeUnit
[all...]
/external/llvm/unittests/VMCore/
H A DMetadataTest.cpp133 Constant *C2 = ConstantInt::get(Type::getInt32Ty(Context), 2); local
136 Value *const V2 = C2;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java335 private int C0, C1, C2, C3; field in class:AESEngine
436 C2 = (bytes[index++] & 0xff);
437 C2 |= (bytes[index++] & 0xff) << 8;
438 C2 |= (bytes[index++] & 0xff) << 16;
439 C2 |= bytes[index++] << 24;
463 bytes[index++] = (byte)C2;
464 bytes[index++] = (byte)(C2 >> 8);
465 bytes[index++] = (byte)(C2 >> 16);
466 bytes[index++] = (byte)(C2 >> 24);
481 C2
[all...]
H A DAESFastEngine.java666 private int C0, C1, C2, C3; field in class:AESFastEngine
767 C2 = (bytes[index++] & 0xff);
768 C2 |= (bytes[index++] & 0xff) << 8;
769 C2 |= (bytes[index++] & 0xff) << 16;
770 C2 |= bytes[index++] << 24;
794 bytes[index++] = (byte)C2;
795 bytes[index++] = (byte)(C2 >> 8);
796 bytes[index++] = (byte)(C2 >> 16);
797 bytes[index++] = (byte)(C2 >> 24);
811 C2
[all...]
/external/clang/lib/AST/
H A DRawCommentList.cpp241 const RawComment &C2 = RC; local
248 (C1.isTrailingComment() == C2.isTrailingComment())) {
250 unsigned C2BeginLine = C2.getBeginLine(SourceMgr);
253 C2.getSourceRange().getEnd());
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp41 class C2 {} constexpr; // expected-error {{class cannot be marked constexpr}} class
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp82 struct C2 : InaccessibleDtor { C2(); } c2; // expected-error {{deleted function}} expected-note {{base class 'InaccessibleDtor' has an inaccessible destructor}} struct in inherits:InaccessibleDtor

Completed in 3340 milliseconds

123