Searched refs:_maxInputLookahead (Results 1 – 2 of 2) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | DataFormatReaders.java | 56 protected final int _maxInputLookahead; field in DataFormatReaders 80 _maxInputLookahead = maxInputLookahead; in DataFormatReaders() 93 return new DataFormatReaders(_readers, optMatch, _minimalMatch, _maxInputLookahead); in withOptimalMatch() 100 return new DataFormatReaders(_readers, _optimalMatch, minMatch, _maxInputLookahead); in withMinimalMatch() 104 return new DataFormatReaders(readers, _optimalMatch, _minimalMatch, _maxInputLookahead); in with() 109 if (lookaheadBytes == _maxInputLookahead) { in withMaxInputLookahead() 128 return new DataFormatReaders(r, _optimalMatch, _minimalMatch, _maxInputLookahead); in with() 138 return new DataFormatReaders(r, _optimalMatch, _minimalMatch, _maxInputLookahead); in withType() 157 return _findFormat(new AccessorForReader(in, new byte[_maxInputLookahead])); in findFormat()
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/format/ |
D | DataFormatDetector.java | 49 protected final int _maxInputLookahead; field in DataFormatDetector 71 _maxInputLookahead = maxInputLookahead; in DataFormatDetector() 83 return new DataFormatDetector(_detectors, optMatch, _minimalMatch, _maxInputLookahead); in withOptimalMatch() 94 return new DataFormatDetector(_detectors, _optimalMatch, minMatch, _maxInputLookahead); in withMinimalMatch() 102 if (lookaheadBytes == _maxInputLookahead) { in withMaxInputLookahead() 123 return _findFormat(new InputAccessor.Std(in, new byte[_maxInputLookahead])); in findFormat()
|