/external/jackson-core/src/test/java/com/fasterxml/jackson/core/filter/ |
D | GeneratorFiltering609Test.java | 28 private final int maxStringLength; field in GeneratorFiltering609Test.StringTruncatingGeneratorDelegate 32 int maxStringLength) { in StringTruncatingGeneratorDelegate() argument 34 this.maxStringLength = maxStringLength; in StringTruncatingGeneratorDelegate() 41 } else if (maxStringLength <= 0 || maxStringLength >= text.length()) { in writeString() 45 super.writeString(textReader, maxStringLength); in writeString() 51 if (maxStringLength <= 0 || maxStringLength >= name.length()) { in writeFieldName() 54 String truncatedName = name.substring(0, maxStringLength); in writeFieldName() 69 int maxStringLength = 10; in testIssue609() local 71 g, maxStringLength); in testIssue609()
|
/external/cronet/third_party/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()
|
/external/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()
|
/external/icu/android_icu4j/src/main/java/android/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()
|
/external/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;
|
/external/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);
|
/external/cronet/third_party/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);
|
/external/icu/libicu/cts_headers/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);
|
/external/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");
|
/external/ow2-asm/asm/src/main/java/org/objectweb/asm/ |
D | ClassReader.java | 154 private final int maxStringLength; field in ClassReader 266 maxStringLength = currentMaxStringLength; in ClassReader() 374 return readClass(header + 2, new char[maxStringLength]); in getClassName() 386 return readClass(header + 4, new char[maxStringLength]); in getSuperName() 402 char[] charBuffer = new char[maxStringLength]; in getInterfaces() 448 context.charBuffer = new char[maxStringLength]; in accept() 3474 private int[] readBootstrapMethodsAttribute(final int maxStringLength) { in readBootstrapMethodsAttribute() argument 3475 char[] charBuffer = new char[maxStringLength]; in readBootstrapMethodsAttribute() 3573 return maxStringLength; in getMaxStringLength()
|
/external/ow2-asm/asm/src/test/resources/ |
D | sigtest-6.2.txt | 95 …NSNS,INPUT_STREAM_DATA_CHUNK_SIZE,bootstrapMethodOffsets,cpInfoOffsets,cpInfoValues,maxStringLength
|
D | sigtest-6.1.txt | 86 hfds EXPAND_ASM_INSNS,constantUtf8Values,cpInfoOffsets,maxStringLength
|
D | sigtest-6.0.txt | 85 hfds EXPAND_ASM_INSNS,items,maxStringLength,strings
|
D | sigtest-9.4.txt | 138 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
|
D | sigtest-7.2.txt | 136 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
|
D | sigtest-9.1.txt | 136 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
|
D | sigtest-9.2.txt | 136 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
|
D | sigtest-7.3.1.txt | 145 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
|