/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/ |
D | PrefixTreeTest.java | 40 RangeTree ranges = ranges("1xxxxxx", "5xxxxxx", "6xxxxxx"); in testRetainFrom() local 66 RangeTree ranges = ranges("12x", "3xx", "456"); in testEmptyVsZeroLength() local 79 RangeTree ranges = ranges("xxxx"); in testRangeAndPrefixSameLength() local 86 RangeTree ranges = ranges("xxx"); in testRangeShorterThanPrefix() local 93 RangeTree ranges = ranges("x", "xx", "xxx", "1234xx", "234xxx", "3xx8xx", "67890"); in testComplex() local 210 private static RangeTree ranges(String... specs) { in ranges() method in PrefixTreeTest
|
D | RangeTreeTest.java | 314 RangeTree ranges = ranges("123xx", "14567", "789"); in testSignificantDigits() local 323 RangeTree ranges = ranges("123xx", "456x"); in testPrefixWith() local 332 RangeTree ranges = ranges("", "1", "123", "125xx", "456x"); in testSlicing() local 495 List<RangeTree> ranges = Stream in testThreadSafety() local 531 RangeTree ranges(String... s) { in ranges() method in RangeTreeTest
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
D | RangeException.java | 31 Column<T> column, T value, RangeTree existing, RangeTree ranges, OverwriteMode mode) { in checkDisjoint() 42 RangeTree ranges, in RangeException() 45 super(explain(checkNotNull(column), value, existing, ranges, intersection, checkNotNull(mode))); in RangeException() local 52 RangeTree ranges, in explain() 63 private static String toLines(RangeTree ranges) { in toLines()
|
D | Change.java | 40 private final RangeTree ranges; field in Change.Builder 43 private Builder(RangeTree ranges) { in Builder() 73 public static Builder builder(RangeTree ranges) { in builder() 83 public static Change of(RangeTree ranges, Iterable<Assignment<?>> assignments) { in of()
|
D | RangeTable.java | 131 DisjointRangeMap.Builder<T> ranges = (DisjointRangeMap.Builder<T>) in getOrAddRangeMap() local 213 public Builder assign(Assignment<?> assignment, RangeTree ranges, OverwriteMode mode) { in assign() 214 assign(assignment.column(), assignment.value().orElse(null), ranges, mode); in assign() local 227 Column<?> column, @Nullable Object value, RangeTree ranges, OverwriteMode mode) { in assign() 254 public Builder add(RangeTree ranges) { in add() 272 public Builder remove(RangeTree ranges) { in remove() 322 RangeTree ranges = change.getRanges(); in apply() local 328 getOrAddRangeMap(a.column()).checkAssign(a.value().orElse(null), ranges, mode); in apply() local 332 getOrAddRangeMap(a.column()).assign(a.value().orElse(null), ranges, mode); in apply() local 914 private Row bound(RangeTree ranges) { in bound()
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/testing/ |
D | TestNumberingScheme.java | 181 public RangeModifier addRanges(ExtType type, ExtTariff tariff, RangeTree ranges) { in addRanges() 197 public void removeRanges(RangeTree ranges) { in removeRanges() 207 public RangeModifier forRangesIn(RangeTree ranges) { in forRangesIn() 225 PhoneRegion region, ShortcodeType type, ExtTariff tariff, RangeTree ranges) { in addShortcodes() 241 public ShortcodeModifier forShortcodesIn(PhoneRegion region, RangeTree ranges) { in forShortcodesIn() 300 private final RangeTree ranges; field in TestNumberingScheme.RangeModifier 302 private RangeModifier(RangeTree ranges) { in RangeModifier() 350 RangesTableSchema.GEOCODES.getColumn(lang), name, ranges, OverwriteMode.ALWAYS); in setGeocode() local 358 private final RangeTree ranges; field in TestNumberingScheme.ShortcodeModifier 360 private ShortcodeModifier(PhoneRegion region, RangeTree ranges) { in ShortcodeModifier() [all …]
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/ |
D | PrefixTree.java | 51 public static PrefixTree from(RangeTree ranges) { in from() 116 private final RangeTree ranges; field in PrefixTree 118 private PrefixTree(RangeTree ranges) { in PrefixTree() 176 public RangeTree retainFrom(RangeTree ranges) { in retainFrom() 239 static RangeTree trim(RangeTree ranges) { in trim() 280 private static RangeTree removeTrailingAnyDigitPaths(RangeTree ranges) { in removeTrailingAnyDigitPaths()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/ |
D | RegexGenerator.java | 117 public String toRegex(RangeTree ranges) { in toRegex() 134 private String recursivelyOptimizeSubgroups(RangeTree ranges, String regex) { in recursivelyOptimizeSubgroups() 148 private String generateFactorizedRegex(RangeTree ranges) { in generateFactorizedRegex() 164 private String regexOf(RangeTree ranges) { in regexOf()
|
D | SubgroupOptimizer.java | 49 public static Optional<RangeTree> extractRepeatingSubgraph(RangeTree ranges) { in extractRepeatingSubgraph() 83 static Optional<DfaNode> findBridgingNode(RangeTree ranges) { in findBridgingNode() 150 static Optional<RangeTree> extractSubgraph(RangeTree ranges, DfaNode node) { in extractSubgraph()
|
/third_party/libphonenumber/tools/java/data/test/com/google/i18n/phonenumbers/ |
D | CombineGeoDataTest.java | 100 List<Range> ranges = CombineGeoData.createRanges(prefixes, phonePrefixMap); in createRanges() local 131 List<Range> ranges = CombineGeoData.createRanges(prefixes, phonePrefixMap); in conflictBefore() local 146 List<Range> ranges = CombineGeoData.createRanges(prefixes, phonePrefixMap); in conflictAfter() local 162 List<Range> ranges = CombineGeoData.createRanges(prefixes, phonePrefixMap); in noConflict() local
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
D | CsvData.java | 71 CsvTable<RangeKey> ranges, in create() 92 RangeTree ranges = key.asRangeTree(); in checkNoOverlappingRows() local 102 RangeTree ranges = key.getRangeKey().asRangeTree(); in checkNoOverlappingShortcodeRows() local 110 CsvTable<RangeKey> ranges, in checkRegions() 222 CsvTable<RangeKey> ranges = RangesTableSchema.toCsv(getRangesAsTable()); in canonicalizeRangeTables() local
|
D | XmlRangesSchema.java | 117 RangeTree ranges = src.getRanges(RangesTableSchema.TYPE, extType); in fromExternalTable() local 133 RangeTree ranges = in fromExternalTable() local
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-bytecode-generator.h | 72 bool CheckCharacterInRangeArray(const ZoneList<CharacterRange>* ranges, in CheckCharacterInRangeArray() 83 bool CheckCharacterNotInRangeArray(const ZoneList<CharacterRange>* ranges, in CheckCharacterNotInRangeArray()
|
/third_party/gn/src/gn/ |
D | parse_tree_unittest.cc | 196 auto ranges = list->GetSortRanges(); in TEST() local 222 auto ranges = list->GetSortRanges(); in TEST() local 244 auto ranges = list->GetSortRanges(); in TEST() local 266 auto ranges = list->GetSortRanges(); in TEST() local
|
D | err.h | 36 std::vector<LocationRange> ranges; member 89 const RangeList& ranges() const { return info_->ranges; } in ranges() function
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/ |
D | RangeTableTest.java | 388 private static RangeTree ranges(String... rangeSpecs) { in ranges() method in RangeTableTest 393 RangeTree ranges, Column<T> column, T value) { in assign() 397 private static <T extends Comparable<T>> Change unassign(RangeTree ranges, Column<T> column) { in unassign() 401 private Change assign(RangeTree ranges, Map<Column<?>, ?> map) { in assign()
|
/third_party/node/deps/icu-small/source/i18n/ |
D | collationsettings.cpp | 86 const uint32_t *ranges, int32_t rangesLength, in aliasReordering() 145 const uint32_t *ranges = reinterpret_cast<uint32_t *>(rangesList.getBuffer()); in setReordering() local 192 const uint32_t *ranges, int32_t rangesLength, in setReorderArrays() 264 const uint32_t *ranges = reorderRanges; in reorderEx() local
|
/third_party/icu/icu4c/source/i18n/ |
D | collationsettings.cpp | 86 const uint32_t *ranges, int32_t rangesLength, in aliasReordering() 145 const uint32_t *ranges = reinterpret_cast<uint32_t *>(rangesList.getBuffer()); in setReordering() local 192 const uint32_t *ranges, int32_t rangesLength, in setReorderArrays() 264 const uint32_t *ranges = reorderRanges; in reorderEx() local
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | collationsettings.cpp | 86 const uint32_t *ranges, int32_t rangesLength, in aliasReordering() 145 const uint32_t *ranges = reinterpret_cast<uint32_t *>(rangesList.getBuffer()); in setReordering() local 192 const uint32_t *ranges, int32_t rangesLength, in setReorderArrays() 264 const uint32_t *ranges = reorderRanges; in reorderEx() local
|
/third_party/node/deps/v8/src/interpreter/ |
D | block-coverage-builder.h | 33 AstNodeSourceRanges* ranges = source_range_map_->Find(node); in AllocateBlockCoverageSlot() local 45 NaryOperationSourceRanges* ranges = in AllocateNaryBlockCoverageSlot() local
|
/third_party/libphonenumber/migrator/src/main/java/com/google/phonenumbers/migrator/ |
D | MigrationFactory.java | 55 CsvTable<RangeKey> ranges = metadata.importCsvTable(countryCode) in createMigration() local 96 CsvTable<RangeKey> ranges = metadata.importCsvTable(countryCode) in createMigration() local 151 CsvTable<RangeKey> ranges = metadata.importCsvTable(countryCode) in createMigration() local
|
/third_party/typescript/tests/cases/fourslash/ |
D | jsdocDeprecated_suggestion6.ts | 19 const ranges = test.ranges(); constant
|
D | jsdocDeprecated_suggestion1.ts | 81 const ranges = test.ranges(); constant
|
D | jsdocDeprecated_suggestion17.ts | 17 const ranges = test.ranges(); constant
|
D | renamePrivateAccessor.ts | 11 const ranges = test.rangesByText().get("#foo"); constant
|