/third_party/node/deps/npm/node_modules/gauge/lib/ |
H A D | template-item.js | 23 this.maxLength = null 46 if (isPercent(this.maxLength)) { 47 this.maxLength = Math.round(this.overallOutputLength * percent(this.maxLength)) 59 this.maxLength == null && 76 if (this.maxLength == null) { 79 return this.maxLength + this.padLeft + this.padRight
|
H A D | render-template.js | 49 item.maxLength = null 113 item.maxLength = null 156 if (!item.maxLength) { 160 finishSizing(item, item.maxLength) 166 throw new error.Internal('Resize loop iterated too many times while determining maxLength')
|
/third_party/node/deps/icu-small/source/tools/toolutil/ |
H A D | denseranges.cpp | 30 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {} in LargestGaps() 37 if(i<maxLength) { in add() 38 // The new gap is now one of the maxLength largest. in add() 41 int32_t j= length<maxLength ? length++ : maxLength-1; in add() 80 int32_t maxLength; member in __anon12076::LargestGaps 111 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1; in uprv_makeDenseRanges() local 112 if(length>=(density*maxLength)/0x100) { in uprv_makeDenseRanges() 135 // the length of the [minValue..maxValue] range (maxLength). in uprv_makeDenseRanges() 144 maxLength in uprv_makeDenseRanges() [all...] |
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | denseranges.cpp | 30 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {} in LargestGaps() 37 if(i<maxLength) { in add() 38 // The new gap is now one of the maxLength largest. in add() 41 int32_t j= length<maxLength ? length++ : maxLength-1; in add() 80 int32_t maxLength; member in __anon3750::LargestGaps 111 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1; in uprv_makeDenseRanges() local 112 if(length>=(density*maxLength)/0x100) { in uprv_makeDenseRanges() 135 // the length of the [minValue..maxValue] range (maxLength). in uprv_makeDenseRanges() 144 maxLength in uprv_makeDenseRanges() [all...] |
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | denseranges.cpp | 30 LargestGaps(int32_t max) : maxLength(max<=kCapacity ? max : kCapacity), length(0) {} in LargestGaps() 37 if(i<maxLength) { in add() 38 // The new gap is now one of the maxLength largest. in add() 41 int32_t j= length<maxLength ? length++ : maxLength-1; in add() 80 int32_t maxLength; member in __anon21328::LargestGaps 111 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1; in uprv_makeDenseRanges() local 112 if(length>=(density*maxLength)/0x100) { in uprv_makeDenseRanges() 135 // the length of the [minValue..maxValue] range (maxLength). in uprv_makeDenseRanges() 144 maxLength in uprv_makeDenseRanges() [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | FormatSpec.java | 133 int maxLength = national.maxLength(); in of() 135 national, carrier, intl, local, minLength, maxLength, nationalPrefixOptional, comment); in of() 151 local.maxLength(), in localFormat() 175 public abstract int maxLength(); in maxLength() method in FormatSpec 194 return RangeTree.from(IntStream.rangeClosed(minLength(), maxLength()) in getLengthBasedBounds() 205 out.append(", maxLength=").append(maxLength()); in toString() 328 n += group.maxLength() - 1; in parse() 344 n += group.maxLength() in parse() 433 public int maxLength() { maxLength() method in FormatSpec.FormatTemplate 589 public abstract int maxLength(); maxLength() method in FormatSpec.FormatGroup [all...] |
/third_party/icu/icu4c/source/test/perf/normperf/ |
H A D | simplenormperf.cpp | 308 int32_t maxLength = getMaxLength() * 10; in main() local 319 NormalizeUTF16 op(*nfc, CommonChars::getLatin1(maxLength)); in main() 324 NormalizeUTF8 op(*nfc, CommonChars::getJapanese(maxLength)); in main() 328 NormalizeUTF16 op(*nfkc_cf, CommonChars::getMixed(maxLength)); in main() 332 NormalizeUTF16 op(*nfkc_cf, CommonChars::getLowercaseLatin1(maxLength)); in main() 336 NormalizeUTF16 op(*nfkc_cf, CommonChars::getJapanese(maxLength)); in main() 340 NormalizeUTF8 op(*nfkc_cf, CommonChars::getMixed(maxLength)); in main() 344 NormalizeUTF8 op(*nfkc_cf, CommonChars::getLowercaseLatin1(maxLength)); in main() 348 NormalizeUTF8 op(*nfkc_cf, CommonChars::getJapanese(maxLength)); in main()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/ |
H A D | DictionaryMatcher.java | 23 * @param maxLength The maximum number of code units to match. 30 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, in matches() argument 33 public int matches(CharacterIterator text, int maxLength, int[] lengths, in matches() argument 35 return matches(text, maxLength, lengths, count, limit, null); in matches()
|
H A D | CharsDictionaryMatcher.java | 25 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) { in matches() argument 53 if (numChars >= maxLength) { in matches()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | DictionaryMatcher.java | 24 * @param maxLength The maximum number of code units to match. 31 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths, in matches() argument 34 public int matches(CharacterIterator text, int maxLength, int[] lengths, in matches() argument 36 return matches(text, maxLength, lengths, count, limit, null); in matches()
|
H A D | CharsetMatch.java | 79 * @param maxLength The maximium length of the String to be created when the 84 public String getString(int maxLength) throws java.io.IOException { in getString() argument 90 int max = maxLength < 0? Integer.MAX_VALUE : maxLength; in getString()
|
H A D | CharsDictionaryMatcher.java | 25 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) { in matches() argument 53 if (numChars >= maxLength) { in matches()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | AnyPath.java | 67 public int maxLength() { in maxLength() method in AnyPath 105 for (int n = 0; n <= other.maxLength(); n++) { in join() 166 for (int n = 0; n < maxLength(); n++) { in toString() 170 for (int n = maxLength() - 1; n >= 0; n--) { in toString()
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | AnyPathTest.java | 100 int maxLength = lengths.last(); in assertPath() 101 assertThat(p.maxLength()).isEqualTo(maxLength); in assertPath() 102 for (int i = 0; i <= maxLength; i++) { in assertPath()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ImmutableStringBuilder.h | 21 ImmutableStringBuilder(size_t maxLength) in ImmutableStringBuilder() argument 22 : mPos(0u), mMaxLength(maxLength), mData(AllocateEmptyPoolCharArray(maxLength)) in ImmutableStringBuilder()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | CharsetMatch.java | 82 * @param maxLength The maximum length of the String to be created when the 89 public String getString(int maxLength) throws java.io.IOException { in getString() argument 95 int max = maxLength < 0? Integer.MAX_VALUE : maxLength; in getString()
|
/third_party/icu/icu4c/source/common/ |
H A D | dictionarydata.h | 76 * @param maxLength The max length of match to consider. Units are the native indexing 93 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 108 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 126 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit,
|
H A D | dictionarydata.cpp | 45 int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, in matches() argument 78 if (lengthMatched >= maxLength) { in matches() 113 int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, in matches() argument 145 if (lengthMatched >= maxLength) { in matches()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | dictionarydata.h | 76 * @param maxLength The max length of match to consider. Units are the native indexing 93 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 108 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 126 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit,
|
H A D | dictionarydata.cpp | 45 int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, in matches() argument 78 if (lengthMatched >= maxLength) { in matches() 113 int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, in matches() argument 145 if (lengthMatched >= maxLength) { in matches()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | CsvTableCollector.java | 82 return IntStream.range(0, length).mapToObj(n -> pad(row.get(n), maxLength(n))); in getRow() 91 private int maxLength(int index) { in maxLength() method in CsvTableCollector 97 maxLengths.put(index, Math.max(s.length(), maxLength(index))); in updateMaxLength()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | dictionarydata.h | 76 * @param maxLength The max length of match to consider. Units are the native indexing 93 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 108 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 126 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit,
|
H A D | dictionarydata.cpp | 45 int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, in matches() argument 78 if (lengthMatched >= maxLength) { in matches() 113 int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t limit, in matches() argument 145 if (lengthMatched >= maxLength) { in matches()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fNegativeSSBOBlockTests.cpp | 333 GLint maxLength = 0; in logProgramInfo() local 337 ctx.glGetProgramiv(program, GL_INFO_LOG_LENGTH, &maxLength); in logProgramInfo() 342 if (maxLength == 0) in logProgramInfo() 349 std::vector<GLchar> infoLog(maxLength); in logProgramInfo() 350 ctx.glGetProgramInfoLog(program, maxLength, &maxLength, &infoLog[0]); in logProgramInfo() 352 std::string programLogMessage(&infoLog[0], maxLength); in logProgramInfo()
|
/third_party/skia/tests/ |
H A D | OpChainTest.cpp | 41 unsigned maxLength = 0; in result_width() local 43 maxLength = maxLength > kRanges[i].fLength ? maxLength : kRanges[i].fLength; in result_width() 45 return kNumOpPositions + maxLength - 1; in result_width()
|