/prebuilts/go/linux-x86/test/ken/ |
cplx0.go | 15 C1 = R + I // ADD(5,6) 23 println(C1) 24 doprint(C1) 27 c1 := C1 28 println(c1) 29 doprint(c1)
|
cplx4.go | 18 C1 = R + I // ADD(5,6) 35 s := fmt.Sprintf("%f", -C1) 37 doprint(C1, "(5.000000+6.000000i)") 40 c1 := C1 41 s = fmt.Sprintf("%f", c1) 43 doprint(c1, "(5.000000+6.000000i)") 46 c2 := complex128(C1)
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
dwp_test_2.cc | 30 C1::t1_2() 36 C1::t1a()
|
dwp_test_1.cc | 30 C1::testcase1() 38 C1::testcase2() 46 C1::testcase3() 54 C1::testcase4()
|
/external/libcxxabi/test/ |
catch_ptr.pass.cpp | 31 struct C1 36 explicit C1(int id) : B(id-2), id_(id) {count++;} 37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} 38 ~C1() {count--;} 41 int C1::count = 0; 56 : C1, C2 60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;} 61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;} 85 assert(static_cast<const C1*>(a)->id_ == 4) [all...] |
/ndk/sources/cxx-stl/gabi++/tests/ |
catch_ptr.cpp | 31 struct C1 36 explicit C1(int id) : B(id-2), id_(id) {count++;} 37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} 38 ~C1() {count--;} 41 int C1::count = 0; 56 : C1, C2 60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;} 61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;} 85 assert(static_cast<const C1*>(a)->id_ == 4) [all...] |
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/ |
catch_ptr.pass.cpp | 31 struct C1 36 explicit C1(int id) : B(id-2), id_(id) {count++;} 37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} 38 ~C1() {count--;} 41 int C1::count = 0; 56 : C1, C2 60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;} 61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;} 85 assert(static_cast<const C1*>(a)->id_ == 4) [all...] |
/external/clang/test/SemaCXX/ |
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 *'}} \
|
nested-name-spec.cpp | 64 A::C c1; variable 317 struct C1 { 334 struct S1a { int f(C1::C2); }; 335 struct S1b { int f(C1:C2); }; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 338 C1::C2 f(C1::C2); 341 C1::C2 f(C1:C2); // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 345 int f(C1::C2), C2 : N1; 372 C1::C2 m1 : B1::B2 [all...] |
/external/clang/test/SemaTemplate/ |
class-template-id-2.cpp | 12 class C1 : public N::A<int> { };
|
/external/testng/src/test/java/test/dependent/ |
C1.java | 8 public class 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/mesa3d/src/gallium/drivers/nv50/ |
nv50_formats.c | 160 C4A(B8G8R8A8_UNORM, BGRA8_UNORM, C2, C1, C0, C3, UNORM, 8_8_8_8, TDV, 1), 161 F3A(B8G8R8X8_UNORM, BGRX8_UNORM, C2, C1, C0, xx, UNORM, 8_8_8_8, TD), 162 C4A(B8G8R8A8_SRGB, BGRA8_SRGB, C2, C1, C0, C3, UNORM, 8_8_8_8, TD, 1), 163 F3A(B8G8R8X8_SRGB, BGRX8_SRGB, C2, C1, C0, xx, UNORM, 8_8_8_8, TD), 164 C4A(R8G8B8A8_UNORM, RGBA8_UNORM, C0, C1, C2, C3, UNORM, 8_8_8_8, TBV, 0), 165 F3A(R8G8B8X8_UNORM, RGBX8_UNORM, C0, C1, C2, xx, UNORM, 8_8_8_8, TB), 166 C4A(R8G8B8A8_SRGB, RGBA8_SRGB, C0, C1, C2, C3, UNORM, 8_8_8_8, TB, 0), 172 ZSB(X24S8_UINT, NONE, C1, C1, C1, xx, UNORM, Z24_S8, T) [all...] |
/external/webrtc/webrtc/base/ |
sigslottester.h | 50 // - C1-C5 is the type of the variable to capture argument i. These should be 53 template <class A1, class C1> 57 C1* capture1) 72 C1* capture1_; 77 template <class A1, class A2, class C1, class C2> 81 C1* capture1, C2* capture2) 97 C1* capture1_; 103 template <class A1, class A2, class A3, class C1, class C2, class C3> 107 C1* capture1, C2* capture2, C3* capture3) 124 C1* capture1_ [all...] |
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/ |
TimeUnit.java | 20 public long toMicros(long d) { return d/(C1/C0); } 30 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } 32 public long toMillis(long d) { return d/(C2/C1); } 33 public long toSeconds(long d) { return d/(C3/C1); } 34 public long toMinutes(long d) { return d/(C4/C1); } 35 public long toHours(long d) { return d/(C5/C1); } 36 public long toDays(long d) { return d/(C6/C1); } 38 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); } 42 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); [all...] |
/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;
|
/libcore/luni/src/main/java/java/util/concurrent/ |
TimeUnit.java | 54 public long toMicros(long d) { return d/(C1/C0); } 68 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } 70 public long toMillis(long d) { return d/(C2/C1); } 71 public long toSeconds(long d) { return d/(C3/C1); } 72 public long toMinutes(long d) { return d/(C4/C1); } 73 public long toHours(long d) { return d/(C5/C1); } 74 public long toDays(long d) { return d/(C6/C1); } 76 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); } 84 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); [all...] |
/external/clang/test/CodeGenCXX/ |
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/Modules/ |
wildcard-submodule-exports.cpp | 9 long *C1_ptr = C1;
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug439.go | 16 C1 E = 0 17 C2 = C1
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug439.go | 16 C1 E = 0 17 C2 = C1
|
/prebuilts/go/darwin-x86/test/ken/ |
cplx4.go | 18 C1 = R + I // ADD(5,6) 35 s := fmt.Sprintf("%f", -C1) 37 doprint(C1, "(5.000000+6.000000i)") 40 c1 := C1 41 s = fmt.Sprintf("%f", c1) 43 doprint(c1, "(5.000000+6.000000i)") 46 c2 := complex128(C1)
|
/external/clang/test/Layout/ |
ms-x86-empty-nonvirtual-bases.cpp | 15 struct C1 { int a; C1() : a(0xf00000C1) {printf("C1 : %p\n", this);} }; 70 C1 c1; member in struct:D 85 // CHECK: 12 | struct C1 c1 94 struct E : B0, C0, C1, C2, B1 { 104 // CHECK-NEXT: 4 | struct C1 (base) 113 struct F : C0, B0, B1, C1 { [all...] |
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/ |
p2-0x.cpp | 88 class C1 { 89 using C1 = C1; // expected-error {{member 'C1' has the same name as its class}} 92 using C0 = C1; // ok 145 class C1 { 149 C1::U w; // ok
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
k_cosl.c | 36 C1 = 0.04166666666666666666666666666666658424671L, 56 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*(C7+
|