/external/llvm-project/libcxx/test/libcxx/memory/compressed_pair/ |
D | compressed_pair.pass.cpp | 14 typedef std::__compressed_pair<int, unsigned> IntPair; typedef 17 IntPair value; in test_constructor() 23 new (&value) IntPair; in test_constructor() 29 IntPair value; in test_constructor_default_init() 33 new (&value) IntPair(std::__default_init_tag(), 3); in test_constructor_default_init() 37 new (&value) IntPair(4, std::__default_init_tag()); in test_constructor_default_init() 41 new (&value) IntPair(std::__default_init_tag(), std::__default_init_tag()); in test_constructor_default_init()
|
/external/libchrome/base/containers/ |
D | flat_tree_unittest.cc | 152 using IntPair = std::pair<int, int>; typedef 153 using IntPairTree = flat_tree<IntPair, 154 IntPair, 155 GetKeyFromValueIdentity<IntPair>, 156 LessByFirst<IntPair>>; 358 IntPair input_vals[] = {{1, 1}, {1, 2}, {2, 1}, {2, 2}, {1, 3}, in TEST() 364 ElementsAre(IntPair(1, 1), IntPair(2, 1), IntPair(3, 1))); in TEST() 370 ElementsAre(IntPair(1, 3), IntPair(2, 3), IntPair(3, 3))); in TEST() 439 std::vector<IntPair> int_storage{{1, 1}, {1, 2}, {2, 1}}; in TEST() 441 EXPECT_THAT(int_tree, ElementsAre(IntPair(1, 2), IntPair(2, 1))); in TEST() [all …]
|
D | flat_map_unittest.cc | 69 using IntPair = std::pair<int, int>; in TEST() typedef 72 std::vector<IntPair> vect{{1, 1}, {1, 2}, {2, 1}}; in TEST() 74 EXPECT_THAT(map, ElementsAre(IntPair(1, 1), IntPair(2, 1))); in TEST() 77 std::vector<IntPair> vect{{1, 1}, {1, 2}, {2, 1}}; in TEST() 79 EXPECT_THAT(map, ElementsAre(IntPair(1, 2), IntPair(2, 1))); in TEST()
|
/external/icu/icu4c/source/common/ |
D | rbbitblb.h | 69 bool findDuplCharClassFrom(IntPair *categories); 125 bool findDuplicateState(IntPair *states); 132 void removeState(IntPair duplStates); 139 bool findDuplicateSafeState(IntPair *states); 146 void removeSafeState(IntPair duplStates);
|
D | rbbisetb.h | 106 void mergeCategories(IntPair categories);
|
D | rbbitblb.cpp | 1147 bool RBBITableBuilder::findDuplCharClassFrom(IntPair *categories) { in findDuplCharClassFrom() 1194 bool RBBITableBuilder::findDuplicateState(IntPair *states) { in findDuplicateState() 1227 bool RBBITableBuilder::findDuplicateSafeState(IntPair *states) { in findDuplicateSafeState() 1255 void RBBITableBuilder::removeState(IntPair duplStates) { in removeState() 1282 void RBBITableBuilder::removeSafeState(IntPair duplStates) { in removeSafeState() 1312 IntPair dupls = {3, 0}; in removeDuplicateStates() 1529 IntPair states = {1, 0}; in buildSafeReverseTable()
|
D | rbbirb.h | 210 typedef std::pair<int32_t, int32_t> IntPair; typedef
|
/external/icu/libicu/cts_headers/ |
D | rbbitblb.h | 69 bool findDuplCharClassFrom(IntPair *categories); 125 bool findDuplicateState(IntPair *states); 132 void removeState(IntPair duplStates); 139 bool findDuplicateSafeState(IntPair *states); 146 void removeSafeState(IntPair duplStates);
|
D | rbbisetb.h | 106 void mergeCategories(IntPair categories);
|
D | rbbirb.h | 210 typedef std::pair<int32_t, int32_t> IntPair; typedef
|
/external/llvm-project/clang/test/CodeGen/ |
D | atomics-sema-alignment.c | 5 } IntPair; typedef 13 void func(IntPair *p) { in func() 14 IntPair res; in func()
|
/external/llvm-project/clang/test/Analysis/ |
D | new.cpp | 206 class IntPair{ class 210 IntPair() {}; in IntPair() function in IntPair 211 ~IntPair() {x = x/y;}; //expected-warning {{Division by zero}} in ~IntPair() 215 IntPair *b = new IntPair(); in testCallToDestructor()
|
/external/clang/test/Analysis/ |
D | new.cpp | 211 class IntPair{ class 215 IntPair() {}; in IntPair() function in IntPair 216 ~IntPair() {x = x/y;}; //expected-warning {{Division by zero}} in ~IntPair() 220 IntPair *b = new IntPair(); in testCallToDestructor()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RBBIRuleBuilder.java | 331 static class IntPair { class in RBBIRuleBuilder 334 IntPair() {}; in IntPair() method in RBBIRuleBuilder.IntPair 335 IntPair(int f, int s) { in IntPair() method in RBBIRuleBuilder.IntPair 348 IntPair duplPair = new IntPair(3, 0); in optimizeTables()
|
D | RBBITableBuilder.java | 25 import com.ibm.icu.text.RBBIRuleBuilder.IntPair; 901 boolean findDuplCharClassFrom(RBBIRuleBuilder.IntPair categories) { in findDuplCharClassFrom() 956 boolean findDuplicateState(RBBIRuleBuilder.IntPair states) { 995 boolean findDuplicateSafeState(RBBIRuleBuilder.IntPair states) { 1028 void removeState(IntPair duplStates) { 1060 void removeSafeState(IntPair duplStates) { 1090 IntPair dupls = new IntPair(3, 0); 1272 RBBIRuleBuilder.IntPair states = new RBBIRuleBuilder.IntPair(1, 0);
|
D | RBBISetBuilder.java | 18 import com.ibm.icu.text.RBBIRuleBuilder.IntPair; 330 void mergeCategories(IntPair categories) { in mergeCategories()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RBBIRuleBuilder.java | 332 static class IntPair { class in RBBIRuleBuilder 335 IntPair() {}; in IntPair() method in RBBIRuleBuilder.IntPair 336 IntPair(int f, int s) { in IntPair() method in RBBIRuleBuilder.IntPair 349 IntPair duplPair = new IntPair(3, 0); in optimizeTables()
|
D | RBBITableBuilder.java | 26 import android.icu.text.RBBIRuleBuilder.IntPair; 902 boolean findDuplCharClassFrom(RBBIRuleBuilder.IntPair categories) { in findDuplCharClassFrom() 957 boolean findDuplicateState(RBBIRuleBuilder.IntPair states) { 996 boolean findDuplicateSafeState(RBBIRuleBuilder.IntPair states) { 1029 void removeState(IntPair duplStates) { 1061 void removeSafeState(IntPair duplStates) { 1091 IntPair dupls = new IntPair(3, 0); 1273 RBBIRuleBuilder.IntPair states = new RBBIRuleBuilder.IntPair(1, 0);
|
D | RBBISetBuilder.java | 19 import android.icu.text.RBBIRuleBuilder.IntPair; 331 void mergeCategories(IntPair categories) { in mergeCategories()
|
/external/llvm-project/llvm/include/llvm/ExecutionEngine/ |
D | GenericValue.h | 24 struct IntPair { struct 32 struct IntPair UIntPairVal;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | GenericValue.h | 24 struct IntPair { struct 32 struct IntPair UIntPairVal;
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | GenericValue.h | 28 struct IntPair { struct 36 struct IntPair UIntPairVal;
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | modernize-use-override.cpp | 15 struct IntPair { struct 49 virtual void il(IntPair); 233 void il(IntPair p = {1, (2 + (3))}) {} in il()
|
/external/llvm-project/llvm/test/DebugInfo/X86/ |
D | pieces-4.ll | 6 ; struct IntPair { int x, y; }; 9 ; struct IntPair o = {g(), 0}; 35 %struct.IntPair = type { i32, i32 } 40 …tail call void @llvm.dbg.declare(metadata %struct.IntPair* undef, metadata !12, metadata !17), !db… 78 !13 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "IntPair", file: !1, line: 1, siz…
|
/external/llvm-project/llvm/test/DebugInfo/COFF/ |
D | pieces.ll | 6 ; struct IntPair { int x, y; }; 16 ; struct IntPair o = {0, 0}; 263 %struct.IntPair = type { i32, i32 } 274 …tail call void @llvm.dbg.declare(metadata %struct.IntPair* undef, metadata !12, metadata !17), !db… 345 …tail call void @llvm.dbg.declare(metadata %struct.IntPair* undef, metadata !80, metadata !17), !db… 380 !13 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "IntPair", file: !1, line: 1, siz…
|