Searched refs:setCreator (Results 1 – 6 of 6) sorted by relevance
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Relation.java | 36 Constructor<? extends Set<V>> setCreator; field in Relation 39 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { in of() argument 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> setCo… in of() argument 44 return new Relation<>(map, setCreator, setComparator); in of() 47 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { in Relation() argument 48 this(map, setCreator, null); in Relation() 52 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in Relation() argument 56 this.setCreator = ((Class<? extends Set<V>>)setCreator).getConstructor(); in Relation() 57 this.setCreator.newInstance(setComparatorParam); // check to make sure compiles in Relation() [all …]
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | Relation.java | 38 Constructor<? extends Set<V>> setCreator; field in Relation 41 public static <K, V> Relation<K, V> of(Map<K, Set<V>> map, Class<?> setCreator) { in of() argument 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> setCo… in of() argument 46 return new Relation<>(map, setCreator, setComparator); in of() 49 public Relation(Map<K, Set<V>> map, Class<?> setCreator) { in Relation() argument 50 this(map, setCreator, null); in Relation() 54 public Relation(Map<K, Set<V>> map, Class<?> setCreator, Comparator<V> setComparator) { in Relation() argument 58 this.setCreator = ((Class<? extends Set<V>>)setCreator).getConstructor(); in Relation() 59 this.setCreator.newInstance(setComparatorParam); // check to make sure compiles in Relation() [all …]
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
D | RBManager.java | 218 o = descriptors.get("creator"); if (o != null) item.setCreator((String) o); in RBManager() 320 … o = descriptors.get("creator"); if (o != null) item.setCreator((String) o); in RBManager() 522 mainItem.setCreator(currentUser); in createItem() 542 item.setCreator(currentUser); in createItem() 680 item.setCreator(mainItem.getCreator()); in createResource()
|
D | BundleItem.java | 200 public void setCreator(String name) { in setCreator() method in BundleItem
|
D | RBTMXImporter.java | 150 item.setCreator(tuv_elem.getAttribute("creationid")); in importDoc()
|
D | RBxliffImporter.java | 317 item.setCreator(value); in parseTranslationUnit()
|