Home
last modified time | relevance | path

Searched refs:_inputEnd (Results 1 – 6 of 6) sorted by relevance

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DUTF8StreamJsonParser.java164 _inputEnd = end; in UTF8StreamJsonParser()
195 int count = _inputEnd - _inputPtr; in releaseBuffered()
227 final int bufSize = _inputEnd; in _loadMore()
238 _inputEnd = count; in _loadMore()
572 if (_inputPtr >= _inputEnd) { in _readBinary()
599 if (_inputPtr >= _inputEnd) { in _readBinary()
610 if (_inputPtr >= _inputEnd) { in _readBinary()
633 if (_inputPtr >= _inputEnd) { in _readBinary()
651 if (_inputPtr >= _inputEnd) { in _readBinary()
965 if ((_inputPtr + len + 4) < _inputEnd) { // maybe... in nextFieldName()
[all …]
DReaderBasedJsonParser.java137 _inputEnd = end; in ReaderBasedJsonParser()
155 _inputEnd = 0; in ReaderBasedJsonParser()
178 int count = _inputEnd - _inputPtr; in releaseBuffered()
195 if (_inputPtr >= _inputEnd) { in getNextChar()
257 final int bufSize = _inputEnd; in _loadMore()
267 _inputEnd = count; in _loadMore()
275 … throw new IOException("Reader returned 0 characters when trying to read "+_inputEnd); in _loadMore()
525 if (_inputPtr >= _inputEnd) { in _readBinary()
552 if (_inputPtr >= _inputEnd) { in _readBinary()
563 if (_inputPtr >= _inputEnd) { in _readBinary()
[all …]
DByteSourceJsonBootstrapper.java45 private int _inputEnd; field in ByteSourceJsonBootstrapper
91 _inputEnd = _inputPtr = 0; in ByteSourceJsonBootstrapper()
101 _inputEnd = (inputStart + inputLen); in ByteSourceJsonBootstrapper()
224 in = new ByteArrayInputStream(_inputBuffer, _inputPtr, _inputEnd); in constructReader()
229 if (_inputPtr < _inputEnd) { in constructReader()
230 in = new MergedStream(_context, in, _inputBuffer, _inputPtr, _inputEnd); in constructReader()
236 return new UTF32Reader(_context, _in, _inputBuffer, _inputPtr, _inputEnd, in constructReader()
257 _inputBuffer, _inputPtr, _inputEnd, bytesProcessed, _bufferRecyclable); in constructParser()
517 int gotten = (_inputEnd - _inputPtr); in ensureLoaded()
524 count = _in.read(_inputBuffer, _inputEnd, _inputBuffer.length - _inputEnd); in ensureLoaded()
[all …]
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/async/
DNonBlockingJsonParser.java91 return (_inputPtr >=_inputEnd) && !_endOfInput; in needMoreInput()
98 if (_inputPtr < _inputEnd) { in feedInput()
99 … _reportError("Still have %d undecoded bytes, should not call 'feedInput'", _inputEnd - _inputPtr); in feedInput()
112 _currInputRowStart = start - (_inputEnd - _currInputRowStart); in feedInput()
118 _inputEnd = end; in feedInput()
146 int avail = _inputEnd - _inputPtr; in releaseBuffered()
172 if (_inputPtr >= _inputEnd) { in nextToken()
450 if (_inputPtr >= _inputEnd) { in _startDocument()
472 while (_inputPtr < _inputEnd) { in _finishBOM()
526 if ((_inputPtr + 13) <= _inputEnd) { // Need up to 12 chars, plus one trailing (quote) in _startFieldName()
[all …]
DNonBlockingJsonParserBase.java318 _inputEnd = 0; in _closeInput()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/base/
DParserBase.java66 protected int _inputEnd; field in ParserBase
371 _inputPtr = Math.max(_inputPtr, _inputEnd); in close()