Home
last modified time | relevance | path

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

/external/flatbuffers/net/FlatBuffers/
DFlatBufferBuilder.cs52 private Dictionary<string, StringOffset> _sharedStringMap = null; field in FlatBuffers.FlatBufferBuilder
597 if (_sharedStringMap == null) in CreateSharedString()
599 _sharedStringMap = new Dictionary<string, StringOffset>(); in CreateSharedString()
602 if (_sharedStringMap.ContainsKey(s)) in CreateSharedString()
604 return _sharedStringMap[s]; in CreateSharedString()
608 _sharedStringMap.Add(s, stringOffset); in CreateSharedString()