Home
last modified time | relevance | path

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

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonLocation.java27 public static final int MAX_CONTENT_SNIPPET = 500; field in JsonLocation
197 len -= _append(sb, cs.subSequence(0, Math.min(len, MAX_CONTENT_SNIPPET)).toString()); in _appendSourceDesc()
201 len -= _append(sb, new String(ch, 0, Math.min(len, MAX_CONTENT_SNIPPET))); in _appendSourceDesc()
204 int maxLen = Math.min(b.length, MAX_CONTENT_SNIPPET); in _appendSourceDesc()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/
DTestLocation.java59 for (int i = 0; i < JsonLocation.MAX_CONTENT_SNIPPET; ++i) { in testTruncatedSource()