/third_party/skia/third_party/externals/icu/source/common/ |
D | ucharstrieiterator.cpp | 24 UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, in Iterator() argument 30 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator() 46 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength, in Iterator() argument 52 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
|
D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() argument 30 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator() 47 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, in Iterator() argument 52 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
|
/third_party/icu/icu4c/source/common/ |
D | ucharstrieiterator.cpp | 24 UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, in Iterator() argument 30 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator() 46 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength, in Iterator() argument 52 maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
|
D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() argument 30 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator() 47 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, in Iterator() argument 52 str_(NULL), maxLength_(maxStringLength), value_(0), stack_(NULL) { in Iterator()
|
/third_party/node/deps/icu-small/source/common/ |
D | ucharstrieiterator.cpp | 24 UCharsTrie::Iterator::Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, in Iterator() argument 30 maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator() 46 UCharsTrie::Iterator::Iterator(const UCharsTrie &trie, int32_t maxStringLength, in Iterator() argument 52 maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator()
|
D | bytestrieiterator.cpp | 25 BytesTrie::Iterator::Iterator(const void *trieBytes, int32_t maxStringLength, in Iterator() argument 30 str_(nullptr), maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator() 47 BytesTrie::Iterator::Iterator(const BytesTrie &trie, int32_t maxStringLength, in Iterator() argument 52 str_(nullptr), maxLength_(maxStringLength), value_(0), stack_(nullptr) { in Iterator()
|
/third_party/node/tools/ |
D | mk-ca-bundle.pl | 273 my $maxStringLength = length($caname); 277 $maxStringLength = List::Util::max( length($string), $maxStringLength );
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | CharsTrie.java | 449 public Iterator iterator(int maxStringLength) { in iterator() argument 450 return new Iterator(chars_, pos_, remainingMatchLength_, maxStringLength); in iterator() 462 public static Iterator iterator(CharSequence trieChars, int offset, int maxStringLength) { in iterator() argument 463 return new Iterator(trieChars, offset, -1, maxStringLength); in iterator() 491 …ivate Iterator(CharSequence trieChars, int offset, int remainingMatchLength, int maxStringLength) { in Iterator() argument 495 maxLength_=maxStringLength; in Iterator()
|
D | BytesTrie.java | 487 public Iterator iterator(int maxStringLength) { 488 return new Iterator(bytes_, pos_, remainingMatchLength_, maxStringLength); 500 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { 501 return new Iterator(trieBytes, offset, -1, maxStringLength); 575 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { 579 maxLength_=maxStringLength;
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
D | BytesTrie.java | 462 public Iterator iterator(int maxStringLength) { 463 return new Iterator(bytes_, pos_, remainingMatchLength_, maxStringLength); 474 public static Iterator iterator(byte[] trieBytes, int offset, int maxStringLength) { 475 return new Iterator(trieBytes, offset, -1, maxStringLength); 544 … private Iterator(byte[] trieBytes, int offset, int remainingMatchLength, int maxStringLength) { 548 maxLength_=maxStringLength;
|
D | CharsTrie.java | 429 public Iterator iterator(int maxStringLength) { in iterator() argument 430 return new Iterator(chars_, pos_, remainingMatchLength_, maxStringLength); in iterator() 441 public static Iterator iterator(CharSequence trieChars, int offset, int maxStringLength) { in iterator() argument 442 return new Iterator(trieChars, offset, -1, maxStringLength); in iterator() 468 …ivate Iterator(CharSequence trieChars, int offset, int remainingMatchLength, int maxStringLength) { in Iterator() argument 472 maxLength_=maxStringLength; in Iterator()
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | bytestrie.h | 295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 308 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
D | ucharstrie.h | 307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode); 320 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
/third_party/icu/icu4c/source/common/unicode/ |
D | bytestrie.h | 295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 308 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
D | ucharstrie.h | 307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode); 320 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | bytestrie.h | 295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 308 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
D | ucharstrie.h | 307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode); 320 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
/third_party/node/lib/internal/util/ |
D | inspect.js | 187 maxStringLength: 10000, property 263 maxStringLength: ctx.maxStringLength, property 323 maxStringLength: inspectDefaultOptions.maxStringLength, property 363 if (ctx.maxStringLength === null) ctx.maxStringLength = Infinity; 1621 if (value.length > ctx.maxStringLength) { 1622 const remaining = value.length - ctx.maxStringLength; 1623 value = StringPrototypeSlice(value, 0, ctx.maxStringLength);
|
/third_party/curl/scripts/ |
D | mk-ca-bundle.pl | 651 my $maxStringLength = length(decode('UTF-8', $caname, Encode::FB_CROAK | Encode::LEAVE_SRC)); 652 print CRT ("=" x $maxStringLength . "\n");
|
/third_party/node/test/parallel/ |
D | test-util-inspect.js | 3076 assert.strictEqual(util.inspect('bl', { maxStringLength: 1 }), property 3084 util.inspect(x, { maxStringLength: 4 }), property 3087 assert.match(util.inspect(x, { maxStringLength: null }), /a'$/); property
|
/third_party/node/doc/api/ |
D | util.md | 504 description: The `maxStringLength` option is supported now. 592 * `maxStringLength` {integer} Specifies the maximum number of characters to
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V15.md | 1459 …/node/commit/3be5e86c57)] - **test**: add util.inspect test for null maxStringLength (Rich Trott) … 1872 …1211b9a72f)] - **(SEMVER-MAJOR)** **util**: change default value of `maxStringLength` to 10000 (un… 1992 …1211b9a72f)] - **(SEMVER-MAJOR)** **util**: change default value of `maxStringLength` to 10000 (un…
|
D | CHANGELOG_V12.md | 1835 #### `maxStringLength` option for `util.inspect()` 1838 This is possible by passing through the `maxStringLength` option similar to: 1843 const string = inspect(['a'.repeat(1e8)], { maxStringLength: 10 });
|
D | CHANGELOG_V14.md | 2252 …/node/commit/b53068ec0d)] - **test**: add util.inspect test for null maxStringLength (Rich Trott) …
|