Home
last modified time | relevance | path

Searched refs:C2 (Results 1 – 25 of 365) sorted by relevance

12345678910>>...15

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DRow.java19 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()
31 return new R3<C0,C1,C2>(p0,p1,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()
34 return new R4<C0,C1,C2,C3>(p0,p1,p2,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()
37 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,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()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DRow.java15 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
16 Freezable<Row<C0, C1, C2, C3, C4>>{
26 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { in of()
27 return new R3<C0,C1,C2>(p0,p1,p2); in of()
29 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) { in of()
30 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3); in of()
32 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()
33 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4); in of()
41 public static class R3<C0, C1, C2> extends Row<C0, C1, C2, C2, C2> {
42 public R3(C0 a, C1 b, C2 c) { in R3()
[all …]
/external/libcxxabi/test/
Dcatch_class_03.pass.cpp43 struct C2 struct
48 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() function
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() function
50 ~C2() {count--;} in ~C2() argument
53 int C2::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), id_(id) {count++;} in A()
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} in A()
71 assert(C2::count == 0); in f1()
76 assert(C2::count == 1); in f1()
[all …]
Dcatch_class_04.pass.cpp43 struct C2 struct
48 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() argument
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() argument
50 ~C2() {count--;} in ~C2() argument
53 int C2::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;} in A()
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;} in A()
71 assert(C2::count == 0); in f1()
76 assert(C2::count == 1); in f1()
[all …]
Dcatch_ptr.pass.cpp43 struct C2 struct
48 explicit C2(int id) : B(id-2), id_(id) {count++;} in C2() function
49 C2(const C2& a) : B(a.id_-2), id_(a.id_) {count++;} in C2() function
50 ~C2() {count--;} in ~C2() argument
53 int C2::count = 0;
56 : C1, C2
60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;} in A()
61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;} in A()
86 assert(static_cast<const C2*>(a)->id_ == 3); in f2()
94 catch (const C2*) in f2()
[all …]
/external/clang/test/SemaCXX/
Dnested-name-spec.cpp28 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; }; argument
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/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
DTimeUnit.java21 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/mesa3d/src/gallium/drivers/nv50/
Dnv50_formats.c160 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),
179 F3B(B5G6R5_UNORM, B5G6R5_UNORM, C2, C1, C0, xx, UNORM, 5_6_5, T),
180 C4B(B5G5R5A1_UNORM, BGR5_A1_UNORM, C2, C1, C0, C3, UNORM, 5_5_5_1, TB),
181 F3B(B5G5R5X1_UNORM, BGR5_X1_UNORM, C2, C1, C0, xx, UNORM, 5_5_5_1, TB),
[all …]
/external/valgrind/none/tests/s390x/
Dicm.stdout.exp1C2 00 00 C3 C2 00 C3 00 00 00 C3 00 95 00 C3 00 C2 00 C3 00 C2 00 C3 C2 00 00 C3 C2 97 00 C3 C2 C1…
/external/llvm/test/CodeGen/Hexagon/
Dcmp.ll9 %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/clang/test/CodeGenCXX/
Dvtable-layout-extreme.cpp15 class C2 class
24 , public C2
32 : public C2
41 , public C2
61 , virtual public C2
72 , public C2
198 , public C2
/external/llvm/test/Transforms/InstSimplify/
Dapint-or.ll5 ;; If we have: ((V + N) & C1) | (V & C2)
6 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
8 %C1 = xor i39 274877906943, -1 ;; C2 = 274877906943
37 ;; If we have: ((V + N) & C1) | (V & C2)
38 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
40 %C1 = xor i399 274877906943, -1 ;; C2 = 274877906943
/external/webrtc/webrtc/base/
Dsigslottester.h77 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/llvm/include/llvm/IR/
DConstants.h920 static Constant *getAdd(Constant *C1, Constant *C2,
922 static Constant *getFAdd(Constant *C1, Constant *C2);
923 static Constant *getSub(Constant *C1, Constant *C2,
925 static Constant *getFSub(Constant *C1, Constant *C2);
926 static Constant *getMul(Constant *C1, Constant *C2,
928 static Constant *getFMul(Constant *C1, Constant *C2);
929 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false);
930 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false);
931 static Constant *getFDiv(Constant *C1, Constant *C2);
932 static Constant *getURem(Constant *C1, Constant *C2);
[all …]
/external/llvm/test/Linker/
Dalias.ll2 ; RUN: llvm-link %S/Inputs/alias.ll %s -S -o - | FileCheck --check-prefix=C2 %s
7 ; (the C2 case), the IRMover knows to copy the aliasee as internal.
18 ; C2-DAG: @foo = alias i32, i32* @zed
23 ; C2-DAG: @foo.1 = internal global i32 0
24 ; C2-DAG: @bar = alias i32, i32* @foo.1
28 ; C2-DAG: @foo2 = alias i16, bitcast (i32* @zed to i16*)
33 ; C2-DAG: @foo2.2 = internal global i32 0
34 ; C2-DAG: @bar2 = alias i32, i32* @foo2.2
37 ; C2-DAG: @zed = global i32 42
/external/caliper/caliper/src/test/resources/com/google/caliper/bridge/
Djdk7-flags.txt53 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 …]
Djdk6-flags.txt50 intx AutoBoxCacheMax = 128 {C2 product}
62 bool BlockLayoutByFrequency = true {C2 product}
63 intx BlockLayoutMinDiamondPercentage = 20 {C2 product}
64 bool BlockLayoutRotateLoops = true {C2 product}
66 bool BranchOnRegister = false {C2 product}
175 intx ConditionalMoveLimit = 3 {C2 pd product}
200 bool DoEscapeAnalysis = true {C2 product}
201 intx DominatorSearchLimit = 1000 {C2 diagnostic}
206 intx EliminateAllocationArraySizeLimit = 64 {C2 product}
207 bool EliminateAllocations = true {C2 product}
[all …]
/external/llvm/test/CodeGen/Hexagon/intrinsics/
Dcr.ll23 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/google-breakpad/src/common/
Dscoped_ptr.h154 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const;
155 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const;
259 template <class C2> bool operator==(scoped_array<C2> const& p2) const;
260 template <class C2> bool operator!=(scoped_array<C2> const& p2) const;
377 template <class C2, class GP>
378 bool operator==(scoped_ptr_malloc<C2, GP> const& p) const;
379 template <class C2, class GP>
380 bool operator!=(scoped_ptr_malloc<C2, GP> const& p) const;
/external/llvm/test/Transforms/InstCombine/
Dapint-or.ll14 ;; 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
53 ;; If we have: ((V + N) & C1) | (V & C2)
54 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0
56 %C1 = xor i399 274877906943, -1 ;; C2 = 274877906943
Dapint-xor1.ll8 ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
46 ;; (A | C1) ^ C2 -> (A | C1) & ~C2 iff (C1&C2) == C2
Dapint-xor2.ll9 ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
47 ;; (A | C1) ^ C2 -> (A | C1) & ~C2 iff (C1&C2) == C2
/external/llvm/unittests/Support/
DTrailingObjectsTest.cpp119 Class2 *C2 = Class2::create(0, 4.2); in TEST() local
141 EXPECT_EQ(C2->getDouble(), 4.2); in TEST()
142 EXPECT_EQ(C2->getShort(), 0); in TEST()
143 EXPECT_EQ(C2->getTrailingObjects<double>(), in TEST()
144 reinterpret_cast<double *>(C2 + 1)); in TEST()
145 EXPECT_EQ(C2->getTrailingObjects<short>(), in TEST()
146 reinterpret_cast<short *>(reinterpret_cast<double *>(C2 + 1) + 1)); in TEST()
148 delete C2; in TEST()
/external/v8/test/mjsunit/es6/
Dclasses.js756 var C2;
759 C2 = C;
762 C2 = C;
765 C2 = C;
768 C2 = C;
772 assertEquals(C, C2);
774 C2 = undefined;
776 assertEquals(C, C2);
778 C2 = undefined;
780 assertEquals(C, C2);
[all …]
/external/guice/core/test/com/google/inject/
DCircularDependencyTest.java222 bind(C2.class).toProvider(C2P.class); in testUnresolvableCircularDependenciesWithProviderKeys()
225 }).getInstance(C2.class); in testUnresolvableCircularDependenciesWithProviderKeys()
229 "Tried proxying " + C2.class.getName() + " to support a circular dependency, ", in testUnresolvableCircularDependenciesWithProviderKeys()
236 Guice.createInjector().getInstance(C2.class); in testUnresolvableCircularDependenciesWithProvidedBy()
240 "Tried proxying " + C2.class.getName() + " to support a circular dependency, ", in testUnresolvableCircularDependenciesWithProvidedBy()
252 static class C2P implements Provider<C2> {
254 public C2 get() { in get()
260 @Inject Provider<C2> cp;
267 static class C2 { class in CircularDependencyTest
268 @Inject C2(D2 d) {} in C2() method in CircularDependencyTest.C2
[all …]

12345678910>>...15