Home
last modified time | relevance | path

Searched refs:maxStringLength (Results 1 – 25 of 29) sorted by relevance

12

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/filter/
DGeneratorFiltering609Test.java28 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/
Ducharstrieiterator.cpp24 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()
Dbytestrieiterator.cpp25 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/
Ducharstrieiterator.cpp24 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()
Dbytestrieiterator.cpp25 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/
DBytesTrie.java462 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;
DCharsTrie.java429 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/
DCharsTrie.java449 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()
DBytesTrie.java487 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/
Dbytestrie.h295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
308 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
Ducharstrie.h307 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/
Dbytestrie.h295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
308 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
Ducharstrie.h307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
320 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
/external/icu/libicu/cts_headers/unicode/
Dbytestrie.h295 Iterator(const void *trieBytes, int32_t maxStringLength, UErrorCode &errorCode);
308 Iterator(const BytesTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
Ducharstrie.h307 Iterator(ConstChar16Ptr trieUChars, int32_t maxStringLength, UErrorCode &errorCode);
320 Iterator(const UCharsTrie &trie, int32_t maxStringLength, UErrorCode &errorCode);
/external/curl/scripts/
Dmk-ca-bundle.pl651 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/
DClassReader.java154 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/
Dsigtest-6.2.txt95 …NSNS,INPUT_STREAM_DATA_CHUNK_SIZE,bootstrapMethodOffsets,cpInfoOffsets,cpInfoValues,maxStringLength
Dsigtest-6.1.txt86 hfds EXPAND_ASM_INSNS,constantUtf8Values,cpInfoOffsets,maxStringLength
Dsigtest-6.0.txt85 hfds EXPAND_ASM_INSNS,items,maxStringLength,strings
Dsigtest-9.4.txt138 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
Dsigtest-7.2.txt136 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
Dsigtest-9.1.txt136 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
Dsigtest-9.2.txt136 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength
Dsigtest-7.3.1.txt145 …ethodOffsets,classFileBuffer,constantDynamicValues,constantUtf8Values,cpInfoOffsets,maxStringLength

12