/external/icu/libandroidicu/include/unicode/ |
D | uset.h | 50 typedef struct USet USet; typedef 266 U_CAPI USet* U_EXPORT2 279 U_CAPI USet* U_EXPORT2 291 U_CAPI USet* U_EXPORT2 306 U_CAPI USet* U_EXPORT2 318 uset_close(USet* set); 333 U_DEFINE_LOCAL_OPEN_POINTER(LocalUSetPointer, USet, uset_close); 348 U_CAPI USet * U_EXPORT2 349 uset_clone(const USet *set); 361 uset_isFrozen(const USet *set); [all …]
|
D | uspoof.h | 861 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status); 884 U_CAPI const USet * U_EXPORT2 1109 U_CAPI const USet* U_EXPORT2 1288 U_CAPI const USet * U_EXPORT2 1303 U_CAPI const USet * U_EXPORT2
|
D | ucol.h | 497 USet *conts, 514 USet *contractions, USet *expansions, 1415 U_CAPI USet * U_EXPORT2 1432 USet *unsafe,
|
/external/icu/libicu/cts_headers/unicode/ |
D | uset.h | 50 typedef struct USet USet; typedef 266 U_CAPI USet* U_EXPORT2 279 U_CAPI USet* U_EXPORT2 291 U_CAPI USet* U_EXPORT2 306 U_CAPI USet* U_EXPORT2 318 uset_close(USet* set); 333 U_DEFINE_LOCAL_OPEN_POINTER(LocalUSetPointer, USet, uset_close); 348 U_CAPI USet * U_EXPORT2 349 uset_clone(const USet *set); 361 uset_isFrozen(const USet *set); [all …]
|
D | uniset.h | 527 inline static UnicodeSet *fromUSet(USet *uset); 537 inline static const UnicodeSet *fromUSet(const USet *uset); 546 inline USet *toUSet(); 556 inline const USet * toUSet() const; 1704 inline UnicodeSet *UnicodeSet::fromUSet(USet *uset) { in fromUSet() 1708 inline const UnicodeSet *UnicodeSet::fromUSet(const USet *uset) { in fromUSet() 1712 inline USet *UnicodeSet::toUSet() { in toUSet() 1713 return reinterpret_cast<USet *>(this); in toUSet() 1716 inline const USet *UnicodeSet::toUSet() const { in toUSet() 1717 return reinterpret_cast<const USet *>(this); in toUSet()
|
D | uspoof.h | 861 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status); 884 U_CAPI const USet * U_EXPORT2 1109 U_CAPI const USet* U_EXPORT2 1288 U_CAPI const USet * U_EXPORT2 1303 U_CAPI const USet * U_EXPORT2
|
/external/icu/icu4c/source/common/unicode/ |
D | uset.h | 50 typedef struct USet USet; typedef 266 U_CAPI USet* U_EXPORT2 279 U_CAPI USet* U_EXPORT2 291 U_CAPI USet* U_EXPORT2 306 U_CAPI USet* U_EXPORT2 318 uset_close(USet* set); 333 U_DEFINE_LOCAL_OPEN_POINTER(LocalUSetPointer, USet, uset_close); 348 U_CAPI USet * U_EXPORT2 349 uset_clone(const USet *set); 361 uset_isFrozen(const USet *set); [all …]
|
D | uniset.h | 527 inline static UnicodeSet *fromUSet(USet *uset); 537 inline static const UnicodeSet *fromUSet(const USet *uset); 546 inline USet *toUSet(); 556 inline const USet * toUSet() const; 1704 inline UnicodeSet *UnicodeSet::fromUSet(USet *uset) { in fromUSet() 1708 inline const UnicodeSet *UnicodeSet::fromUSet(const USet *uset) { in fromUSet() 1712 inline USet *UnicodeSet::toUSet() { in toUSet() 1713 return reinterpret_cast<USet *>(this); in toUSet() 1716 inline const USet *UnicodeSet::toUSet() const { in toUSet() 1717 return reinterpret_cast<const USet *>(this); in toUSet()
|
/external/llvm-project/polly/utils/pyscop/ |
D | isl.py | 110 class USet(IslObject): class 115 return USet(ptr = ptr) 249 ("is_empty", USet, [USet], c_int), 267 ("is_equal", USet, [USet, USet], c_int), 276 ("is_subset", USet, [USet, USet], c_int), 282 ("is_strict_subset", USet, [USet, USet], c_int), 296 ("range", UMap, [UMap], USet), 299 ("domain", UMap, [UMap], USet), 302 ("identity", USet, [USet], UMap), 306 ("deltas", UMap, [UMap], USet), [all …]
|
D | jscop2iscc.py | 7 domain = isl.USet('{}') 10 domain = domain.union(isl.USet(statement['domain']))
|
/external/icu/icu4c/source/common/ |
D | uset.cpp | 33 U_CAPI USet* U_EXPORT2 35 return (USet*) new UnicodeSet(); in uset_openEmpty() 38 U_CAPI USet* U_EXPORT2 40 return (USet*) new UnicodeSet(start, end); in uset_open() 44 uset_close(USet* set) { in uset_close() 48 U_CAPI USet * U_EXPORT2 49 uset_clone(const USet *set) { in uset_clone() 50 return (USet*) (((UnicodeSet*) set)->UnicodeSet::clone()); in uset_clone() 54 uset_isFrozen(const USet *set) { in uset_isFrozen() 59 uset_freeze(USet *set) { in uset_freeze() [all …]
|
D | uset_imp.h | 30 USetAdd(USet *set, UChar32 c); 33 USetAddRange(USet *set, UChar32 start, UChar32 end); 36 USetAddString(USet *set, const UChar *str, int32_t length); 39 USetRemove(USet *set, UChar32 c); 42 USetRemoveRange(USet *set, UChar32 start, UChar32 end); 50 USet *set;
|
D | uset_props.cpp | 32 U_CAPI USet* U_EXPORT2 48 return (USet*) set; in uset_openPattern() 51 U_CAPI USet* U_EXPORT2 68 return (USet*) set; in uset_openPatternOptions() 73 uset_applyPattern(USet *set, in uset_applyPattern() 102 uset_applyIntPropertyValue(USet* set, in uset_applyIntPropertyValue() 108 uset_applyPropertyAlias(USet* set, in uset_applyPropertyAlias() 131 uset_toPattern(const USet* set, in uset_toPattern() 141 uset_closeOver(USet* set, int32_t attributes) { in uset_closeOver()
|
/external/icu/libicu/cts_headers/ |
D | uset_imp.h | 30 USetAdd(USet *set, UChar32 c); 33 USetAddRange(USet *set, UChar32 start, UChar32 end); 36 USetAddString(USet *set, const UChar *str, int32_t length); 39 USetRemove(USet *set, UChar32 c); 42 USetRemoveRange(USet *set, UChar32 start, UChar32 end); 50 USet *set;
|
/external/llvm-project/llvm/unittests/ADT/ |
D | SparseMultiSetTest.cpp | 16 typedef SparseMultiSet<unsigned> USet; typedef 20 USet Set; in TEST() 31 const USet &CSet = Set; in TEST() 35 USet::const_iterator I = CSet.find(5); in TEST() 41 USet Set; in TEST() 43 USet::iterator I = Set.insert(5); in TEST() 81 USet Set; in TEST() 112 USet::iterator I = Set.erase(Set.find(6)); in TEST() 162 USet Set; in TEST() 172 USet::RangePair RangePair = Set.equal_range(0); in TEST() [all …]
|
D | SparseSetTest.cpp | 16 typedef SparseSet<unsigned> USet; typedef 20 USet Set; in TEST() 32 const USet &CSet = Set; in TEST() 37 USet::const_iterator I = CSet.find(5); in TEST() 43 USet Set; in TEST() 45 std::pair<USet::iterator, bool> IP = Set.insert(5); in TEST() 72 USet::iterator I = Set.find(5); in TEST() 82 USet Set; in TEST() 93 USet::const_iterator I = Set.begin(); in TEST() 107 std::pair<USet::iterator, bool> IP = Set.insert(3); in TEST() [all …]
|
/external/llvm/unittests/ADT/ |
D | SparseMultiSetTest.cpp | 17 typedef SparseMultiSet<unsigned> USet; typedef 21 USet Set; in TEST() 32 const USet &CSet = Set; in TEST() 36 USet::const_iterator I = CSet.find(5); in TEST() 42 USet Set; in TEST() 44 USet::iterator I = Set.insert(5); in TEST() 82 USet Set; in TEST() 113 USet::iterator I = Set.erase(Set.find(6)); in TEST() 163 USet Set; in TEST() 173 USet::RangePair RangePair = Set.equal_range(0); in TEST() [all …]
|
D | SparseSetTest.cpp | 17 typedef SparseSet<unsigned> USet; typedef 21 USet Set; in TEST() 33 const USet &CSet = Set; in TEST() 38 USet::const_iterator I = CSet.find(5); in TEST() 44 USet Set; in TEST() 46 std::pair<USet::iterator, bool> IP = Set.insert(5); in TEST() 72 USet::iterator I = Set.find(5); in TEST() 81 USet Set; in TEST() 92 USet::const_iterator I = Set.begin(); in TEST() 106 std::pair<USet::iterator, bool> IP = Set.insert(3); in TEST() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | usettest.c | 28 static void expect(const USet* set, 32 static void expectContainment(const USet* set, 36 static void expectItems(const USet* set, 57 USet *s = uset_open(1, 0); in Testj2269() 83 USet* set; in TestAPI() 84 USet* set2; in TestAPI() 237 static void expect(const USet* set, in expect() 254 static void expectContainment(const USet* set, in expectContainment() 356 static void expectItems(const USet* set, in expectItems() 480 USet *set; in TestSerialized() [all …]
|
/external/llvm-project/polly/lib/Support/ |
D | ISLTools.cpp | 147 isl::set polly::singleton(isl::union_set USet, isl::space ExpectedSpace) { in singleton() argument 148 if (!USet) in singleton() 151 if (isl_union_set_n_set(USet.get()) == 0) in singleton() 154 isl::set Result(USet); in singleton() 180 isl::union_map polly::makeIdentityMap(const isl::union_set &USet, in makeIdentityMap() argument 182 isl::union_map Result = isl::union_map::empty(USet.get_space()); in makeIdentityMap() 183 for (isl::set Set : USet.get_set_list()) { in makeIdentityMap() 221 isl::union_set polly::shiftDim(isl::union_set USet, int Pos, int Amount) { in shiftDim() argument 222 isl::union_set Result = isl::union_set::empty(USet.get_space()); in shiftDim() 223 for (isl::set Set : USet.get_set_list()) { in shiftDim() [all …]
|
/external/llvm-project/polly/include/polly/Support/ |
D | ISLTools.h | 154 isl::set singleton(isl::union_set USet, isl::space ExpectedSpace); 186 isl::union_map makeIdentityMap(const isl::union_set &USet, bool RestrictDomain); 210 isl::union_set shiftDim(isl::union_set USet, int Pos, int Amount); 240 void simplify(isl::union_set &USet); 539 void dumpPw(const isl::union_set &USet); 543 void dumpPw(__isl_keep isl_union_set *USet); 585 void dumpExpanded(const isl::union_set &USet); 589 void dumpExpanded(__isl_keep isl_union_set *USet);
|
/external/icu/icu4c/source/i18n/unicode/ |
D | uspoof.h | 861 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status); 884 U_CAPI const USet * U_EXPORT2 1109 U_CAPI const USet* U_EXPORT2 1288 U_CAPI const USet * U_EXPORT2 1303 U_CAPI const USet * U_EXPORT2
|
/external/llvm-project/llvm/lib/Target/Hexagon/ |
D | HexagonSplitDouble.cpp | 89 using USet = std::set<unsigned>; typedef in __anon84a67a670111::HexagonSplitDoubleRegs 90 using UUSetMap = std::map<unsigned, USet>; 93 using LoopRegMap = std::map<const MachineLoop *, USet>; 101 bool isProfitable(const USet &Part, LoopRegMap &IRM) const; 103 void collectIndRegsForLoop(const MachineLoop *L, USet &Rs); 117 bool splitPartition(const USet &Part); 121 static void dump_partition(raw_ostream&, const USet&, 137 const USet &Part, const TargetRegisterInfo &TRI) { in dump_partition() 147 const USet &Rs = I.second; in isInduction() 249 USet &Asc = AssocMap[R]; in partitionRegisters() [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonSplitDouble.cpp | 68 typedef std::set<unsigned> USet; typedef in __anonb0272d390111::HexagonSplitDoubleRegs 69 typedef std::map<unsigned,USet> UUSetMap; 72 typedef std::map<const MachineLoop*,USet> LoopRegMap; 79 bool isProfitable(const USet &Part, LoopRegMap &IRM) const; 81 void collectIndRegsForLoop(const MachineLoop *L, USet &Rs); 95 bool splitPartition(const USet &Part); 98 static void dump_partition(raw_ostream&, const USet&, 112 const USet &Part, const TargetRegisterInfo &TRI) { in dump_partition() 122 const USet &Rs = I.second; in isInduction() 227 USet &Asc = AssocMap[R]; in partitionRegisters() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonSplitDouble.cpp | 89 using USet = std::set<unsigned>; typedef in __anon5d3dec5b0111::HexagonSplitDoubleRegs 90 using UUSetMap = std::map<unsigned, USet>; 93 using LoopRegMap = std::map<const MachineLoop *, USet>; 101 bool isProfitable(const USet &Part, LoopRegMap &IRM) const; 103 void collectIndRegsForLoop(const MachineLoop *L, USet &Rs); 117 bool splitPartition(const USet &Part); 121 static void dump_partition(raw_ostream&, const USet&, 137 const USet &Part, const TargetRegisterInfo &TRI) { in dump_partition() 147 const USet &Rs = I.second; in isInduction() 249 USet &Asc = AssocMap[R]; in partitionRegisters() [all …]
|