Searched refs:distanceTable (Results 1 – 4 of 4) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/draft/ |
D | IntDistanceNode.java | 20 final IntDistanceNode.IntDistanceTable distanceTable; field in IntDistanceNode 22 public IntDistanceNode(int distance, IntDistanceNode.IntDistanceTable distanceTable) { in IntDistanceNode() argument 24 this.distanceTable = distanceTable; in IntDistanceNode() 28 return distanceTable; in getDistanceTable() 34 return distance == other.distance && Objects.equal(distanceTable, other.distanceTable); in equals() 39 return distance ^ Objects.hashCode(distanceTable); in hashCode() 44 return "\ndistance: " + distance + ", " + distanceTable; in toString() 70 if (oldNode.distanceTable != null) { in loadIds() 71 loadIds((StringDistanceTable) oldNode.distanceTable, idNumber + 1); in loadIds() 117 …t getDistance(String desired, String supported, Output<DistanceTable> distanceTable, boolean starE… in getDistance() argument [all …]
|
D | XLocaleDistance.java | 267 final DistanceTable distanceTable; field in XLocaleDistance.StringDistanceNode 269 public StringDistanceNode(int distance, DistanceTable distanceTable) { in StringDistanceNode() argument 271 this.distanceTable = distanceTable; in StringDistanceNode() 280 return distance == other.distance && Objects.equal(distanceTable, other.distanceTable); in equals() 285 return distance ^ Objects.hashCode(distanceTable); in hashCode() 293 ((StringDistanceTable) distanceTable).addSubtables(desiredSub, supportedSub, r); in addSubtables() 298 return "distance: " + distance + "\n" + distanceTable; in toString() 303 ((StringDistanceTable) distanceTable).copy(value); in copyTables() 308 return distanceTable; in getDistanceTable() 318 …scriptNode = (StringDistanceNode) ((StringDistanceTable) languageNode.distanceTable).subtables.get… in XLocaleDistance() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
D | XLocaleDistance.java | 361 final DistanceTable distanceTable; field in XLocaleDistance.StringDistanceNode 363 public StringDistanceNode(int distance, DistanceTable distanceTable) { in StringDistanceNode() argument 365 this.distanceTable = distanceTable; in StringDistanceNode() 375 && Objects.equals(distanceTable, other.distanceTable) in equals() 380 return distance ^ Objects.hashCode(distanceTable); in hashCode() 388 ((StringDistanceTable) distanceTable).addSubtables(desiredSub, supportedSub, r); in addSubtables() 392 return "distance: " + distance + "\n" + distanceTable; in toString() 397 ((StringDistanceTable)distanceTable).copy(value); in copyTables() 403 return distanceTable; in getDistanceTable() 413 … scriptNode = (StringDistanceNode) ((StringDistanceTable)languageNode.distanceTable).subtables.get… in XLocaleDistance() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | XLocaleDistance.java | 351 final DistanceTable distanceTable; field in XLocaleDistance.StringDistanceNode 353 public StringDistanceNode(int distance, DistanceTable distanceTable) { in StringDistanceNode() argument 355 this.distanceTable = distanceTable; in StringDistanceNode() 365 && Objects.equals(distanceTable, other.distanceTable) in equals() 370 return distance ^ Objects.hashCode(distanceTable); in hashCode() 378 ((StringDistanceTable) distanceTable).addSubtables(desiredSub, supportedSub, r); in addSubtables() 382 return "distance: " + distance + "\n" + distanceTable; in toString() 387 ((StringDistanceTable)distanceTable).copy(value); in copyTables() 393 return distanceTable; in getDistanceTable() 403 … scriptNode = (StringDistanceNode) ((StringDistanceTable)languageNode.distanceTable).subtables.get… in XLocaleDistance() [all …]
|