HomeSort by relevance Sort by last modified time
    Searched defs:MapFieldLite (Results 1 - 2 of 2) sorted by null

  /external/protobuf/src/google/protobuf/
map_field_lite.h 48 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()
109 MapFieldLite<Key, T, key_wire_type, value_wire_type,
110 default_enum_value>::MapFieldLite(Arena* arena
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
MapFieldLite.java 49 public final class MapFieldLite<K, V> implements MutabilityOracle {
53 private MapFieldLite(Map<K, V> mapData) {
59 private static final MapFieldLite EMPTY_MAP_FIELD =
60 new MapFieldLite(Collections.emptyMap());
65 /** Returns an singleton immutable empty MapFieldLite instance. */
67 public static <K, V> MapFieldLite<K, V> emptyMapField() {
68 return (MapFieldLite<K, V>) EMPTY_MAP_FIELD;
71 /** Creates a new MapFieldLite instance. */
72 public static <K, V> MapFieldLite<K, V> newMapField() {
73 return new MapFieldLite<K, V>(new LinkedHashMap<K, V>())
    [all...]

Completed in 1838 milliseconds