Home
last modified time | relevance | path

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

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/format/
DDataFormatDetector.java123 return _findFormat(new InputAccessor.Std(in, new byte[_maxInputLookahead])); in findFormat()
134 return _findFormat(new InputAccessor.Std(fullInputData)); in findFormat()
147 return _findFormat(new InputAccessor.Std(fullInputData, offset, len)); in findFormat()
177 private DataFormatMatcher _findFormat(InputAccessor.Std acc) throws IOException { in _findFormat() method in DataFormatDetector
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DDataFormatReaders.java157 return _findFormat(new AccessorForReader(in, new byte[_maxInputLookahead])); in findFormat()
169 return _findFormat(new AccessorForReader(fullInputData)); in findFormat()
183 return _findFormat(new AccessorForReader(fullInputData, offset, len)); in findFormat()
215 private Match _findFormat(AccessorForReader acc) throws IOException in _findFormat() method in DataFormatReaders