HomeSort by relevance Sort by last modified time
    Searched refs:C4 (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/clang/test/Modules/Inputs/
redecl-merge-left-left.h 3 @class C4;
4 void accept_a_C4(C4*);
redecl-merge-bottom.h 3 @class C4;
4 @class C4;
19 void refers_to_C4(C4*);
redecl-merge-right.h 39 @class C4;
40 @class C4;
41 @class C4;
42 @class C4;
43 C4 *get_a_C4(void);
redecl-merge-left.h 38 @class C4;
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 31 class C4
40 , virtual public C4
51 , public C4
60 , public C4
70 , virtual public C4
98 // CHECK-NEXT: -- (Test1::C4, 16) vtable address --
118 // CHECK-NEXT: -- (Test1::C4, 88) vtable address --
139 // CHECK-NEXT: -- (Test1::C4, 168) vtable address --
150 // CHECK-NEXT: -- (Test1::C4, 184) vtable address --
199 , public C4
    [all...]
  /external/chromium_org/tools/gyp/test/win/compiler-flags/
warning-level3.cc 7 struct __declspec(align(4)) C4 { C8 m8; };
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 19 public long toMinutes(long d) { return d/(C4/C0); }
30 public long toMinutes(long d) { return d/(C4/C1); }
41 public long toMinutes(long d) { return d/(C4/C2); }
52 public long toMinutes(long d) { return d/(C4/C3); }
59 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); }
60 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); }
61 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2));
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 48 public long toMinutes(long d) { return d/(C4/C0); }
59 public long toMinutes(long d) { return d/(C4/C1); }
70 public long toMinutes(long d) { return d/(C4/C2); }
81 public long toMinutes(long d) { return d/(C4/C3); }
88 public long toNanos(long d) { return x(d, C4/C0, MAX/(C4/C0)); }
89 public long toMicros(long d) { return x(d, C4/C1, MAX/(C4/C1)); }
90 public long toMillis(long d) { return x(d, C4/C2, MAX/(C4/C2));
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_cos.c 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
64 C4 = -2.75573143513906633035e-07, /* 0xBE927E4F, 0x809C52AD */
75 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6));
  /dalvik/tests/091-deep-interface-hierarchy/src/
Main.java 37 interface C4 extends B1, B2, B3, B4, B5 {}
40 interface D1 extends C1, C2, C3, C4, C5 {}
41 interface D2 extends C1, C2, C3, C4, C5 {}
42 interface D3 extends C1, C2, C3, C4, C5 {}
43 interface D4 extends C1, C2, C3, C4, C5 {}
44 interface D5 extends C1, C2, C3, C4, C5 {}
  /external/clang/test/CXX/special/class.dtor/
p5-0x.cpp 84 struct C4 : virtual InaccessibleDtor { C4(); } c4; // expected-error {{deleted function}} expected-note {{base class 'InaccessibleDtor' has an inaccessible destructor}} variable in typeref:struct:C4
  /external/fdlibm/
k_cos.c 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
60 C4 = -2.75573143513906633035e-07, /* 0xBE927E4F, 0x809C52AD */
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /external/chromium_org/v8/test/mjsunit/
setter-on-constructor-prototype.js 78 function C4() {
81 C4.prototype = { };
82 C4.prototype.__proto__ = { };
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
85 %ToFastProperties(C4.prototype.__proto__);
89 var c4 = new C4();
90 assertEquals("undefined", typeof c4.x);
91 assertEquals(23, c4.y);
  /external/clang/test/SemaCXX/
class.cpp 109 // PR3020: This used to crash due to double ownership of C4.
110 struct C4;
111 C4; // expected-warning {{declaration does not declare anything}}
114 struct C4 {
  /external/v8/test/mjsunit/
setter-on-constructor-prototype.js 78 function C4() {
81 C4.prototype = { };
82 C4.prototype.__proto__ = { };
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
85 %ToFastProperties(C4.prototype.__proto__);
89 var c4 = new C4();
90 assertEquals("undefined", typeof c4.x);
91 assertEquals(23, c4.y);