Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DTokenBuffer.java2070 protected TreeMap<Integer,Object> _nativeIds; field in TokenBuffer.Segment
2107 return _nativeIds != null; in hasIds()
2251 if (_nativeIds == null) { in assignNativeIds()
2252 _nativeIds = new TreeMap<Integer,Object>(); in assignNativeIds()
2255 _nativeIds.put(_objectIdIndex(index), objectId); in assignNativeIds()
2258 _nativeIds.put(_typeIdIndex(index), typeId); in assignNativeIds()
2266 return (_nativeIds == null) ? null : _nativeIds.get(_objectIdIndex(index)); in findObjectId()
2273 return (_nativeIds == null) ? null : _nativeIds.get(_typeIdIndex(index)); in findTypeId()