/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Relation.java | 27 * A Relation is a set of mappings from keys to values. 33 public class Relation<K, V> implements Freezable<Relation<K,V>> { // TODO: add , Map<K, Collection<V>>, but requires API changes class 39 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { in of() 40 return new Relation<>(map, setCreator); in of() 43 public static <K,V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in of() 44 return new Relation<>(map, setCreator, setComparator); in of() 47 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { in Relation() method in Relation 52 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in Relation() method in Relation 109 return data.equals(((Relation< in equals() [all...] |
H A D | StringRange.java | 90 Relation<Integer,Ranges> lengthToArrays = Relation.of(new TreeMap<Integer,Set<Ranges>>(), TreeSet.class); in compact()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Relation.java | 28 * A Relation is a set of mappings from keys to values. 35 public class Relation<K, V> implements Freezable<Relation<K,V>> { // TODO: add , Map<K, Collection<V>>, but requires API changes class 41 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { in of() 42 return new Relation<>(map, setCreator); in of() 45 public static <K,V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in of() 46 return new Relation<>(map, setCreator, setComparator); in of() 49 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { in Relation() method in Relation 54 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in Relation() method in Relation 111 return data.equals(((Relation< in equals() [all...] |
H A D | StringRange.java | 97 Relation<Integer,Ranges> lengthToArrays = Relation.of(new TreeMap<Integer,Set<Ranges>>(), TreeSet.class); in compact()
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-nodes.h | 575 enum Relation { LT, GEQ }; enum in v8::internal::Guard 576 Guard(int reg, Relation op, int value) : reg_(reg), op_(op), value_(value) {} in Guard() 578 Relation op() { return op_; } in op() 583 Relation op_;
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
H A D | PluralRulesTest.java | 43 import ohos.global.icu.impl.Relation; 1073 Relation<Set<StandardPluralCategories>, PluralRules> setsToRules = Relation.of( in generateLOCALE_SNAPSHOT() 1075 Relation<PluralRules, ULocale> data = Relation.of( in generateLOCALE_SNAPSHOT()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | CFLGraph.h | 397 for (auto &Relation : RetParamRelations) { 398 auto IRelation = instantiateExternalRelation(Relation, Call);
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | PluralRulesTest.java | 48 import com.ibm.icu.impl.Relation; 1510 Relation<Set<StandardPluralCategories>, PluralRules> setsToRules = Relation.of( in generateLOCALE_SNAPSHOT() 1512 Relation<PluralRules, ULocale> data = Relation.of( in generateLOCALE_SNAPSHOT()
|