Home
last modified time | relevance | path

Searched refs:MAX_SEGMENT_LEN (Results 1 – 2 of 2) sorted by relevance

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DTextBuffer.java42 final static int MAX_SEGMENT_LEN = 0x10000; field in TextBuffer
752 } else if (newLen > MAX_SEGMENT_LEN) { in finishCurrentSegment()
753 newLen = MAX_SEGMENT_LEN; in finishCurrentSegment()
772 if (newLen > MAX_SEGMENT_LEN) { in expandCurrentSegment()
859 } else if (newLen > MAX_SEGMENT_LEN) { in expand()
860 newLen = MAX_SEGMENT_LEN; in expand()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DTestTextBuffer.java44 final int len = TextBuffer.MAX_SEGMENT_LEN * 3 / 2; in testLongAppend()