| /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_(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/flutter/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/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/node/tools/ |
| D | mk-ca-bundle.pl | 271 my $maxStringLength = length($caname); 275 $maxStringLength = List::Util::max( length($string), $maxStringLength );
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
| 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()
|
| 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;
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| 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;
|
| 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()
|
| /third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
| D | bytestrie.h | 257 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode); 270 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
| D | ucharstrie.h | 271 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode); 284 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
|
| /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 | 147 maxStringLength: Infinity, property 221 maxStringLength: ctx.maxStringLength, property 279 maxStringLength: inspectDefaultOptions.maxStringLength, property 318 if (ctx.maxStringLength === null) ctx.maxStringLength = Infinity; 1366 if (value.length > ctx.maxStringLength) { 1367 const remaining = value.length - ctx.maxStringLength; 1368 value = value.slice(0, ctx.maxStringLength);
|
| /third_party/node/test/parallel/ |
| D | test-util-inspect.js | 2931 assert.strictEqual(util.inspect('bl', { maxStringLength: 1 }), property 2938 util.inspect(x, { maxStringLength: 4 }), property 2941 assert.match(util.inspect(x, { maxStringLength: null }), /a'$/); property
|
| /third_party/node/doc/api/ |
| D | util.md | 485 description: The `maxStringLength` option is supported now. 573 * `maxStringLength` {integer} Specifies the maximum number of characters to
|
| /third_party/node/doc/changelogs/ |
| D | CHANGELOG_V14.md | 2453 …/node/commit/b53068ec0d)] - **test**: add util.inspect test for null maxStringLength (Rich Trott) …
|