Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/
Dmap_field_lite.h48 class MapFieldLite {
54 MapFieldLite();
55 explicit MapFieldLite(Arena* arena);
56 virtual ~MapFieldLite();
65 virtual void MergeFrom(const MapFieldLite& other);
66 virtual void Swap(MapFieldLite* other);
98 MapFieldLite<Key, T, key_wire_type, value_wire_type,
99 default_enum_value>::MapFieldLite() in MapFieldLite() function
109 MapFieldLite<Key, T, key_wire_type, value_wire_type,
110 default_enum_value>::MapFieldLite(Arena* arena) in MapFieldLite() function
[all …]
Dmap_field.h219 public MapFieldLite<Key, T, kKeyFieldType, kValueFieldType,
233 typedef MapFieldLite<Key, T, kKeyFieldType, kValueFieldType,
Dmap_entry_lite.h51 class MapFieldLite; variable
533 friend class internal::MapFieldLite;
Dmap_field_inl.h179 MapFieldLite<Key, T, kKeyFieldType, kValueFieldType, default_enum_value>( in MapField()
198 MapFieldLite<Key, T, kKeyFieldType, kValueFieldType, default_enum_value>( in MapField()
Dmap_field_test.cc213 typedef MapFieldLite<int32, int32, WireFormatLite::TYPE_INT32,
Dmap.h68 class MapFieldLite; variable
1700 friend class internal::MapFieldLite;
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DMapFieldLite.java47 public final class MapFieldLite<K, V> extends LinkedHashMap<K, V> { class
51 private MapFieldLite() { in MapFieldLite() method in MapFieldLite
55 private MapFieldLite(Map<K, V> mapData) { in MapFieldLite() method in MapFieldLite
61 private static final MapFieldLite EMPTY_MAP_FIELD = new MapFieldLite(Collections.emptyMap());
68 public static <K, V> MapFieldLite<K, V> emptyMapField() { in emptyMapField()
69 return (MapFieldLite<K, V>) EMPTY_MAP_FIELD; in emptyMapField()
72 public void mergeFrom(MapFieldLite<K, V> other) { in mergeFrom()
200 public MapFieldLite<K, V> mutableCopy() { in mutableCopy()
201 return isEmpty() ? new MapFieldLite<K, V>() : new MapFieldLite<K, V>(this); in mutableCopy()
DMapField.java204 getMutableMap().putAll(MapFieldLite.copy(other.getMap())); in mergeFrom()
219 return MapFieldLite.<K, V>equals(getMap(), other.getMap()); in equals()
224 return MapFieldLite.<K, V>calculateHashCodeForMap(getMap()); in hashCode()
230 converter, StorageMode.MAP, MapFieldLite.copy(getMap())); in copy()
DGeneratedMessageLite.java1576 <K, V> MapFieldLite<K, V> visitMap(MapFieldLite<K, V> mine, MapFieldLite<K, V> other); in visitMap()
1830 public <K, V> MapFieldLite<K, V> visitMap(MapFieldLite<K, V> mine, MapFieldLite<K, V> other) { in visitMap()
2036 public <K, V> MapFieldLite<K, V> visitMap(MapFieldLite<K, V> mine, MapFieldLite<K, V> other) { in visitMap()
2270 public <K, V> MapFieldLite<K, V> visitMap(MapFieldLite<K, V> mine, MapFieldLite<K, V> other) { in visitMap()
DAbstractMessage.java225 return MapFieldLite.equals(ma, mb); in compareMapField()
286 return MapFieldLite.calculateHashCodeForMap(convertMapEntryListToMap((List) value)); in hashMapField()
DMapEntryLite.java199 MapFieldLite<K, V> map, CodedInputStream input, ExtensionRegistryLite extensionRegistry) in parseInto()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/
DMakefile.am231 java/core/src/main/java/com/google/protobuf/MapFieldLite.java \