Searched refs:TryGetValue (Results 1 – 7 of 7) sorted by relevance
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Reflection/ |
D | DescriptorPool.cs | 92 descriptorsByName.TryGetValue(fullName, out result); in descriptorsByName.TryGetValue() 103 dependency.DescriptorPool.descriptorsByName.TryGetValue(fullName, out result); 135 if (descriptorsByName.TryGetValue(fullName, out old)) in AddPackage() 159 if (descriptorsByName.TryGetValue(fullName, out old)) in AddSymbol() 212 fieldsByNumber.TryGetValue(new DescriptorIntPair(messageDescriptor, number), out ret); in FindFieldByNumber() 219 enumValuesByNumber.TryGetValue(new DescriptorIntPair(enumDescriptor, number), out ret); in FindEnumValueByNumber() 232 if (fieldsByNumber.TryGetValue(key, out old)) in AddFieldByNumber()
|
D | TypeRegistry.cs | 65 fullNameToMessageMap.TryGetValue(fullName, out ret); in Find()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/Collections/ |
D | MapField.cs | 146 if (map.TryGetValue(key, out node)) in Remove() 166 public bool TryGetValue(TKey key, out TValue value) in TryGetValue() method in Google.Protobuf.Collections.MapField 169 if (map.TryGetValue(key, out node)) in TryGetValue() 194 if (TryGetValue(key, out value)) 210 if (map.TryGetValue(key, out node)) 293 return TryGetValue(item.Key, out value) in Contains() 320 if (map.TryGetValue(item.Key, out node) && in Remove() 398 if (!other.TryGetValue(pair.Key, out value)) in Equals() 540 TryGetValue((TKey)key, out value);
|
D | ReadOnlyDictionary.cs | 71 public bool TryGetValue(TKey key, out TValue value) in TryGetValue() method in Google.Protobuf.Collections.ReadOnlyDictionary 73 return wrapped.TryGetValue(key, out value); in TryGetValue()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/csharp/src/Google.Protobuf/ |
D | JsonFormatter.cs | 875 if (!dictionaries.TryGetValue(enumType, out nameMapping)) in GetOriginalName() 884 nameMapping.TryGetValue(value, out originalName); in GetOriginalName()
|
D | JsonParser.cs | 158 if (WellKnownTypeHandlers.TryGetValue(message.Descriptor.FullName, out handler)) in Merge() 189 if (jsonFieldMap.TryGetValue(name, out field)) in Merge()
|
D | FieldCodec.cs | 286 if (!Codecs.TryGetValue(typeof(T), out value)) in GetCodec()
|