Home
last modified time | relevance | path

Searched refs:getGroups (Results 1 – 4 of 4) sorted by relevance

/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
DFormatSpec.java414 public abstract ImmutableList<FormatGroup> getGroups();
449 return (getGroups().size() == 1) ? maxLength() : getGroups().get(0).minLength();
454 return getGroups().stream()
478 for (int n = fgIndex + 1; n < getGroups().size(); n++) {
479 Optional<String> replacement = getGroups().get(n).replacement();
506 prefix = prefix.replace("$" + (n + 1), getGroups().get(n).replacement().get());
520 if (getGroups().size() != other.getGroups().size()) {
523 for (int n = 0; n < getGroups().size(); n++) {
524 if (!getGroups().get(n).isCompatibleWith(other.getGroups().get(n))) {
552 return template.getGroups().stream().mapToInt(lengthFn).sum();
DAltFormatSpec.java82 for (FormatGroup g : template().getGroups()) { in specifier()
/third_party/node/deps/npm/node_modules/yargs/lib/
Dusage.js158 const groups = yargs.getGroups()
/third_party/node/deps/npm/node_modules/yargs/
Dyargs.js764 self.getGroups = () => Object.assign({}, groups, preservedGroups) function