/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Row.java | 19 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 20 Freezable<Row<C0, C1, C2, C3, C4>>{ 30 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { in of() 33 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) { in of() 36 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) { in of() 45 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> { 46 public R3(C0 a, C1 b, C2 c) { in R3() 50 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> { 51 public R4(C0 a, C1 b, C2 c, C3 d) { in R4() 55 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> { [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Row.java | 23 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 24 Freezable<Row<C0, C1, C2, C3, C4>>{ 34 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { in of() 37 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) { in of() 40 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) { in of() 55 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> { 56 public R3(C0 a, C1 b, C2 c) { in R3() 63 public static class R4<C0, C1, C2, C3> extends Row<C0, C1, C2, C3, C3> { 64 public R4(C0 a, C1 b, C2 c, C3 d) { in R4() 71 public static class R5<C0, C1, C2, C3, C4> extends Row<C0, C1, C2, C3, C4> { [all …]
|
/external/libcxxabi/test/ |
D | catch_class_03.pass.cpp | 52 struct C2 struct 57 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument 58 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() function 59 ~C2() {count--;} in ~C2() argument 62 int C2::count = 0; 65 : C1, C2 69 explicit A(int id) : C1(id-1), C2(id-2), id_(id) {count++;} in A() 70 A(const A& a) : C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} in A() 80 assert(C2::count == 0); in f1() 85 assert(C2::count == 1); in f1() [all …]
|
D | catch_class_04.pass.cpp | 52 struct C2 struct 57 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument 58 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() argument 59 ~C2() {count--;} in ~C2() argument 62 int C2::count = 0; 65 : C1, C2 69 explicit A(int id) : B(id+3), C1(id-1), C2(id-2), id_(id) {count++;} in A() 70 A(const A& a) : B(a.id_+3), C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} in A() 80 assert(C2::count == 0); in f1() 85 assert(C2::count == 1); in f1() [all …]
|
D | catch_ptr.pass.cpp | 52 struct C2 struct 57 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument 58 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() function 59 ~C2() {count--;} in ~C2() argument 62 int C2::count = 0; 65 : C1, C2 69 explicit A(int id) : B(id+3), C1(id-1), C2(id-2), id_(id) {count++;} in A() 70 A(const A& a) : B(a.id_+3), C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} in A() 95 assert(static_cast<const C2*>(a)->id_ == 3); in f2() 103 catch (const C2*) in f2() [all …]
|
/external/clang/test/SemaTemplate/ |
D | undefined-template.cpp | 12 template<typename T1> struct C2 { struct 26 extern template void C1<int>::C2<long>::s_var_2; 27 extern template void C1<int>::C2<long>::s_func_2(); 28 extern template void C1<int>::C2<long>::meth_2(); 29 extern template char C1<int>::C2<long>::s_tvar_2<char>; 30 extern template void C1<int>::C2<long>::tmeth_2<char>(); 93 return C1<int>::C2<long>::s_var_2; in func_14() 97 …return C1<int>::C2<char>::s_var_2; //expected-warning {{instantiation of variable 'C1<int>::C2<ch… in func_15() 102 C1<int>::C2<long>::s_func_2(); in func_16() 106 …C1<int>::C2<char>::s_func_2(); // expected-warning{{instantiation of function 'C1<int>::C2<char>::… in func_17() [all …]
|
/external/clang/test/SemaCXX/ |
D | nested-name-spec.cpp | 28 class C2 { class 38 void C2::m() const { } // expected-error{{out-of-line definition of 'm' does not match any declarat… in m() 40 void C2::f(int) { } // expected-error{{out-of-line definition of 'f' does not match any declaration… in f() 42 void C2::m() { in m() 101 typedef void C2::f5(int); // expected-error{{typedef declarator cannot be qualified}} 319 typedef int C2; typedef 326 struct C2 { static const unsigned N1 = 1; }; struct 334 struct S1a { int f(C1::C2); }; 335 struct S1b { int f(C1:C2); }; // expected-error{{unexpected ':' in nested name specifier; did you … 338 C1::C2 f(C1::C2); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | ConstantFoldingMIRBuilder.h | 26 APInt C2(Ty.getSizeInBits(), *MaybeOp2Cst, true); in ConstantFoldBinOp() 31 return C1 + C2; in ConstantFoldBinOp() 33 return C1 & C2; in ConstantFoldBinOp() 35 return C1.ashr(C2); in ConstantFoldBinOp() 37 return C1.lshr(C2); in ConstantFoldBinOp() 39 return C1 * C2; in ConstantFoldBinOp() 41 return C1 | C2; in ConstantFoldBinOp() 43 return C1 << C2; in ConstantFoldBinOp() 45 return C1 - C2; in ConstantFoldBinOp() 47 return C1 ^ C2; in ConstantFoldBinOp() [all …]
|
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/ |
D | TimeUnit.java | 21 public long toMillis(long d) { return d/(C2/C0); } in toMillis() 27 int excessNanos(long d, long m) { return (int)(d - (m*C2)); } in excessNanos() 32 public long toMillis(long d) { return d/(C2/C1); } in toMillis() 38 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); } in excessNanos() 41 public long toNanos(long d) { return x(d, C2/C0, MAX/(C2/C0)); } in toNanos() 42 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); } in toMicros() 44 public long toSeconds(long d) { return d/(C3/C2); } in toSeconds() 45 public long toMinutes(long d) { return d/(C4/C2); } in toMinutes() 46 public long toHours(long d) { return d/(C5/C2); } in toHours() 47 public long toDays(long d) { return d/(C6/C2); } in toDays() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Constants.h | 629 static Constant *getAdd(Constant *C1, Constant *C2, 631 static Constant *getFAdd(Constant *C1, Constant *C2); 632 static Constant *getSub(Constant *C1, Constant *C2, 634 static Constant *getFSub(Constant *C1, Constant *C2); 635 static Constant *getMul(Constant *C1, Constant *C2, 637 static Constant *getFMul(Constant *C1, Constant *C2); 638 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false); 639 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false); 640 static Constant *getFDiv(Constant *C1, Constant *C2); 641 static Constant *getURem(Constant *C1, Constant *C2); [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstSimplify/ |
D | icmp-constant.ll | 38 ; 'urem x, C2' produces [0, C2) 57 ;'srem x, C2' produces (-|C2|, |C2|) 76 ;'udiv C2, x' produces [0, C2] 95 ; 'udiv x, C2' produces [0, UINT_MAX / C2] 114 ; 'sdiv C2, x' produces [-|C2|, |C2|] 133 ; 'sdiv x, C2' produces [INT_MIN / C2, INT_MAX / C2] 134 ; where C2 != -1 and C2 != 0 and C2 != 1 153 ; 'shl nuw C2, x' produces [C2, C2 << CLZ(C2)] 172 ; 'shl nsw C2, x' produces [C2 << CLO(C2)-1, C2] 191 ; 'shl nsw C2, x' produces [C2 << CLO(C2)-1, C2] [all …]
|
D | or.ll | 96 ; (X & C1) | C2 --> (X | C2) & (C1|C2) 107 ; (X ^ C1) | C2 --> (X | C2) ^ (C1&~C2) 120 ;; If we have: ((V + N) & C1) | (V & C2) 121 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 123 %C1 = xor i39 274877906943, -1 ;; C2 = 274877906943 155 ;; If we have: ((V + N) & C1) | (V & C2) 156 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 158 %C1 = xor i399 274877906943, -1 ;; C2 = 274877906943 191 ;; If we have: ((V + N) & C1) | (V & C2) 192 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 [all …]
|
/external/libcxx/test/libcxx/debug/containers/ |
D | db_sequence_container_iterators.pass.cpp | 97 Container C2; in SpliceFirstElem() local 98 C2.splice(C2.end(), C, C.begin(), ++C.begin()); in SpliceFirstElem() 102 Container C2; in SpliceFirstElem() local 103 C2.splice(C2.end(), C, C.begin()); in SpliceFirstElem() 113 Container C2; in SpliceFirstElemAfter() local 114 C2.splice_after(C2.begin(), C, C.begin(), ++C.begin()); in SpliceFirstElemAfter() 118 Container C2; in SpliceFirstElemAfter() local 119 C2.splice_after(C2.begin(), C, C.begin()); in SpliceFirstElemAfter() 229 Container C2 = C1; in InsertIterValue() local 232 CHECK_DEBUG_THROWS( C2.insert(it1, value) ); // wrong container in InsertIterValue() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
D | cmp.ll | 9 %1 = call i32 @llvm.hexagon.C2.cmpeq(i32 %0, i32 1) 15 declare i32 @llvm.hexagon.C2.cmpeq(i32, i32) #1 23 %1 = call i32 @llvm.hexagon.C2.cmpgt(i32 %0, i32 2) 29 declare i32 @llvm.hexagon.C2.cmpgt(i32, i32) #1 37 %1 = call i32 @llvm.hexagon.C2.cmpgtu(i32 %0, i32 3) 43 declare i32 @llvm.hexagon.C2.cmpgtu(i32, i32) #1 51 %1 = call i32 @llvm.hexagon.C2.cmplt(i32 %0, i32 4) 57 declare i32 @llvm.hexagon.C2.cmplt(i32, i32) #1 65 %1 = call i32 @llvm.hexagon.C2.cmpltu(i32 %0, i32 5) 71 declare i32 @llvm.hexagon.C2.cmpltu(i32, i32) #1 [all …]
|
/external/llvm/test/CodeGen/Hexagon/ |
D | cmp.ll | 9 %1 = call i32 @llvm.hexagon.C2.cmpeq(i32 %0, i32 1) 15 declare i32 @llvm.hexagon.C2.cmpeq(i32, i32) #1 23 %1 = call i32 @llvm.hexagon.C2.cmpgt(i32 %0, i32 2) 29 declare i32 @llvm.hexagon.C2.cmpgt(i32, i32) #1 37 %1 = call i32 @llvm.hexagon.C2.cmpgtu(i32 %0, i32 3) 43 declare i32 @llvm.hexagon.C2.cmpgtu(i32, i32) #1 51 %1 = call i32 @llvm.hexagon.C2.cmplt(i32 %0, i32 4) 57 declare i32 @llvm.hexagon.C2.cmplt(i32, i32) #1 65 %1 = call i32 @llvm.hexagon.C2.cmpltu(i32 %0, i32 5) 71 declare i32 @llvm.hexagon.C2.cmpltu(i32, i32) #1 [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Constants.h | 928 static Constant *getAdd(Constant *C1, Constant *C2, 930 static Constant *getFAdd(Constant *C1, Constant *C2); 931 static Constant *getSub(Constant *C1, Constant *C2, 933 static Constant *getFSub(Constant *C1, Constant *C2); 934 static Constant *getMul(Constant *C1, Constant *C2, 936 static Constant *getFMul(Constant *C1, Constant *C2); 937 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false); 938 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false); 939 static Constant *getFDiv(Constant *C1, Constant *C2); 940 static Constant *getURem(Constant *C1, Constant *C2); [all …]
|
/external/llvm/include/llvm/IR/ |
D | Constants.h | 878 static Constant *getAdd(Constant *C1, Constant *C2, 880 static Constant *getFAdd(Constant *C1, Constant *C2); 881 static Constant *getSub(Constant *C1, Constant *C2, 883 static Constant *getFSub(Constant *C1, Constant *C2); 884 static Constant *getMul(Constant *C1, Constant *C2, 886 static Constant *getFMul(Constant *C1, Constant *C2); 887 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false); 888 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false); 889 static Constant *getFDiv(Constant *C1, Constant *C2); 890 static Constant *getURem(Constant *C1, Constant *C2); [all …]
|
/external/clang/test/CodeGenCXX/ |
D | vtable-layout-extreme.cpp | 15 class C2 class 24 , public C2 32 : public C2 41 , public C2 61 , virtual public C2 72 , public C2 198 , public C2
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | apint-or.ll | 14 ;; If we have: ((V + N) & C1) | (V & C2) 15 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 17 %C1 = xor i39 274877906943, -1 ;; C2 = 274877906943 41 ;; If we have: ((V + N) & C1) | (V & C2) 42 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 44 %C1 = xor i399 274877906943, -1 ;; C2 = 274877906943
|
/external/webrtc/webrtc/base/ |
D | sigslottester.h | 77 template <class A1, class A2, class C1, class C2> 81 C1* capture1, C2* capture2) in SigslotTester2() 98 C2* capture2_; 103 template <class A1, class A2, class A3, class C1, class C2, class C3> 107 C1* capture1, C2* capture2, C3* capture3) in SigslotTester3() 125 C2* capture2_; 131 template <class A1, class A2, class A3, class A4, class C1, class C2, class C3, 136 C1* capture1, C2* capture2, C3* capture3, C4* capture4) in SigslotTester4() 156 C2* capture2_; 163 template <class A1, class A2, class A3, class A4, class A5, class C1, class C2, [all …]
|
/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/ |
D | jdk7-flags.txt | 53 intx AutoBoxCacheMax = 128 {C2 product} 66 bool BlockLayoutByFrequency = true {C2 product} 67 intx BlockLayoutMinDiamondPercentage = 20 {C2 product} 68 bool BlockLayoutRotateLoops = true {C2 product} 71 bool BranchOnRegister = false {C2 product} 190 intx ConditionalMoveLimit = 3 {C2 pd product} 216 bool DoEscapeAnalysis = true {C2 product} 217 intx DominatorSearchLimit = 1000 {C2 diagnostic} 222 intx EliminateAllocationArraySizeLimit = 64 {C2 product} 223 bool EliminateAllocations = true {C2 product} [all …]
|
/external/llvm/test/Transforms/InstSimplify/ |
D | apint-or.ll | 11 ;; If we have: ((V + N) & C1) | (V & C2) 12 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 14 %C1 = xor i39 274877906943, -1 ;; C2 = 274877906943 46 ;; If we have: ((V + N) & C1) | (V & C2) 47 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 49 %C1 = xor i399 274877906943, -1 ;; C2 = 274877906943
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | ConstantFold.cpp | 723 Constant *C2 = CP2 ? CP2->getOperand(i) : Constant::getNullValue(EltTy); in ConstantFoldSelectInstruction() local 724 Res[i] = c->getZExtValue() ? C1 : C2; in ConstantFoldSelectInstruction() 1002 Constant *C1, Constant *C2) { in ConstantFoldBinaryInstruction() argument 1008 if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) { in ConstantFoldBinaryInstruction() 1011 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) in ConstantFoldBinaryInstruction() 1020 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef in ConstantFoldBinaryInstruction() 1027 ((CI = dyn_cast<ConstantInt>(C2)) && CI->getValue()[0]) || in ConstantFoldBinaryInstruction() 1028 (isa<UndefValue>(C1) && isa<UndefValue>(C2))) in ConstantFoldBinaryInstruction() 1038 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) in ConstantFoldBinaryInstruction() 1044 if (!isa<UndefValue>(C2)) // undef / X -> 0 in ConstantFoldBinaryInstruction() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/intrinsics/ |
D | cr.ll | 23 declare i32 @llvm.hexagon.C2.any8(i32) 25 %z = call i32@llvm.hexagon.C2.any8(i32 %a) 30 declare i32 @llvm.hexagon.C2.all8(i32) 32 %z = call i32@llvm.hexagon.C2.all8(i32 %a) 39 declare i32 @llvm.hexagon.C2.and(i32, i32) 41 %z = call i32@llvm.hexagon.C2.and(i32 %a, i32 %b) 53 declare i32 @llvm.hexagon.C2.or(i32, i32) 55 %z = call i32@llvm.hexagon.C2.or(i32 %a, i32 %b) 67 declare i32 @llvm.hexagon.C2.xor(i32, i32) 69 %z = call i32@llvm.hexagon.C2.xor(i32 %a, i32 %b) [all …]
|
/external/llvm/test/CodeGen/Hexagon/intrinsics/ |
D | cr.ll | 23 declare i32 @llvm.hexagon.C2.any8(i32) 25 %z = call i32@llvm.hexagon.C2.any8(i32 %a) 30 declare i32 @llvm.hexagon.C2.all8(i32) 32 %z = call i32@llvm.hexagon.C2.all8(i32 %a) 39 declare i32 @llvm.hexagon.C2.and(i32, i32) 41 %z = call i32@llvm.hexagon.C2.and(i32 %a, i32 %b) 53 declare i32 @llvm.hexagon.C2.or(i32, i32) 55 %z = call i32@llvm.hexagon.C2.or(i32 %a, i32 %b) 67 declare i32 @llvm.hexagon.C2.xor(i32, i32) 69 %z = call i32@llvm.hexagon.C2.xor(i32 %a, i32 %b) [all …]
|