Home
last modified time | relevance | path

Searched refs:MapEntry (Results 1 - 24 of 24) sorted by relevance

/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DMapEntry.java42 * Implements MapEntry messages.
45 * accessed as a message. This MapEntry class is used to represent these map entry messages in
50 public final class MapEntry<K, V> extends AbstractMessage { class
55 public final Parser<MapEntry<K, V>> parser;
59 MapEntry<K, V> defaultInstance, in Metadata()
65 new AbstractParser<MapEntry<K, V>>() { in Metadata()
68 public MapEntry<K, V> parsePartialFrom( in Metadata()
71 return new MapEntry<K, V>(Metadata.this, input, extensionRegistry); in Metadata()
81 /** Create a default MapEntry instance. */
82 private MapEntry( in MapEntry() method in MapEntry
95 private MapEntry(Metadata metadata, K key, V value) { MapEntry() method in MapEntry
102 private MapEntry( MapEntry() method in MapEntry
[all...]
H A DMapFieldSchemaFull.java60 return MapField.newMapField((MapEntry<?, ?>) mapDefaultEntry); in newMapField()
65 return ((MapEntry<?, ?>) mapDefaultEntry).getMetadata(); in forMapMetadata()
98 MapEntry<K, V> defaultEntry = (MapEntry<K, V>) defaultEntryObject; in getSerializedSizeFull()
H A DMapField.java101 private final MapEntry<K, V> defaultEntry;
103 public ImmutableMessageConverter(MapEntry<K, V> defaultEntry) { in ImmutableMessageConverter()
115 MapEntry<K, V> entry = (MapEntry<K, V>) message; in convertMessageToKeyAndValue()
136 private MapField(MapEntry<K, V> defaultEntry, StorageMode mode, Map<K, V> mapData) { in MapField()
142 public static <K, V> MapField<K, V> emptyMapField(MapEntry<K, V> defaultEntry) { in emptyMapField()
148 public static <K, V> MapField<K, V> newMapField(MapEntry<K, V> defaultEntry) { in newMapField()
H A DGeneratedMessageV3.java3108 MapEntry<Integer, V> defaultEntry, in serializeIntegerMapTo()
3135 MapEntry<Long, V> defaultEntry, in serializeLongMapTo()
3162 MapEntry<String, V> defaultEntry, in serializeStringMapTo()
3188 MapEntry<Boolean, V> defaultEntry, in serializeBooleanMapTo()
3203 MapEntry<Boolean, V> defaultEntry, in maybeSerializeBooleanEntryTo()
3220 MapEntry<K, V> defaultEntry, in serializeMapTo()
H A DTextFormat.java445 * An adapter class that can take a MapEntry or a MutableMapEntry and returns its key and entry.
447 * duplicated logic by having a separate comparator for MapEntry and MutableMapEntry.
453 private MapEntry mapEntry;
459 if (entry instanceof MapEntry) { in MapEntryAdapter()
460 this.mapEntry = (MapEntry) entry; in MapEntryAdapter()
/third_party/protobuf/src/google/protobuf/
H A Dmap_entry.h64 // MapEntry is the returned google::protobuf::Message when calling AddMessage of
72 // of MapEntry accessors, it's named MapEntry accessor type.
77 // MapEntry accessor type: type used in MapEntry getters/mutators to access the
80 // cpp type | proto type | in-memory type | MapEntry accessor type
94 class MapEntry class
98 MapEntry() : _internal_metadata_(NULL) {} in MapEntry() function in google::protobuf::internal::MapEntry
99 explicit MapEntry(Arena* arena) in MapEntry() function in google::protobuf::internal::MapEntry
103 ~MapEntry() { in ~MapEntry()
[all...]
H A Dmap_entry_lite.h59 class MapEntry;
524 friend class internal::MapEntry;
H A Dstruct.pb.h109 class Struct_FieldsEntry_DoNotUse : public ::PROTOBUF_NAMESPACE_ID::internal::MapEntry<Struct_FieldsEntry_DoNotUse,
115 typedef ::PROTOBUF_NAMESPACE_ID::internal::MapEntry<Struct_FieldsEntry_DoNotUse,
H A Dmap_field.h540 struct MapEntryToMapField<MapEntry<T, Key, Value, kKeyFieldType,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp43 auto &MapEntry = getEntryImpl(Asm, Str); in getEntry() local
44 return EntryRef(MapEntry, false); in getEntry()
49 auto &MapEntry = getEntryImpl(Asm, Str); in getIndexedEntry() local
50 if (!MapEntry.getValue().isIndexed()) in getIndexedEntry()
51 MapEntry.getValue().Index = NumIndexedStrings++; in getIndexedEntry()
52 return EntryRef(MapEntry, true); in getIndexedEntry()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
H A DMsgPackDocument.cpp66 DocNode *MapEntry; member
135 if (!Stack.back().MapEntry) { in readFromBlob()
137 Stack.back().MapEntry = &Map[Node]; in readFromBlob()
140 *Stack.back().MapEntry = Node; in readFromBlob()
141 Stack.back().MapEntry = nullptr; in readFromBlob()
161 if (Stack.back().MapEntry || in readFromBlob()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/
H A DConstantHoisting.h136 for (auto MapEntry : ConstGEPCandMap) in cleanup()
137 MapEntry.second.clear(); in cleanup()
140 for (auto MapEntry : ConstGEPInfoMap) in cleanup()
141 MapEntry.second.clear(); in cleanup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringSet.h51 insert(const StringMapEntry<ValueTy> &MapEntry) { in insert() argument
52 return insert(MapEntry.getKey()); in insert()
H A DStringMap.h386 size_type count(const StringMapEntry<InputTy> &MapEntry) const { in count()
387 return count(MapEntry.getKey()); in count()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp280 for (const auto &MapEntry : CacheMap) { in fixCacheAfterWrite()
283 if (Offset + Data.size() < MapEntry.first) in fixCacheAfterWrite()
285 for (const auto &Alloc : MapEntry.second) { in fixCacheAfterWrite()
288 if (MapEntry.first + Alloc.size() < Offset) in fixCacheAfterWrite()
294 std::make_pair(MapEntry.first, MapEntry.first + Alloc.size()); in fixCacheAfterWrite()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp949 for (auto &MapEntry : ConstGEPCandMap) in runImpl()
950 if (!MapEntry.second.empty()) in runImpl()
951 findBaseConstants(MapEntry.first); in runImpl()
958 for (auto MapEntry : ConstGEPInfoMap) in runImpl()
959 if (!MapEntry.second.empty()) in runImpl()
960 MadeChange |= emitBaseConstants(MapEntry.first); in runImpl()
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DMapEntry.php38 class MapEntry extends Message class
45 // For MapEntry, getValue should always return a valid value. Thus, we
H A DMessage.php45 use Google\Protobuf\Internal\MapEntry;
71 // MapEntry message is shared by all types of map fields, whose
74 if ($this instanceof MapEntry) {
425 $value = new MapEntry($field->getMessageType());
1399 $map_entry = new MapEntry($field->getMessageType());
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
H A DMCAsmStreamer.cpp1883 uint8_t MapEntry = FixupMap[i * 8 + 0];
1885 if (FixupMap[i * 8 + j] == MapEntry)
1888 MapEntry = uint8_t(~0U);
1892 if (MapEntry != uint8_t(~0U)) {
1893 if (MapEntry == 0) {
1899 << char('A' + MapEntry - 1) << '\'';
1901 OS << char('A' + MapEntry - 1);
1915 if (uint8_t MapEntry = FixupMap[FixupBit]) {
1917 OS << char('A' + MapEntry - 1);
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DFieldDescriptor.cs223 public bool IsMap => fieldType == FieldType.Message && messageType.Proto.Options != null && messageType.Proto.Options.MapEntry;
H A DDescriptor.cs177 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.Reflection.MessageOptions), global::Google.Protobuf.Reflection.MessageOptions.Parser, new[]{ "MessageSetWireFormat", "NoStandardDescriptorAccessor", "Deprecated", "MapEntry", "UninterpretedOption" }, null, null, null, null), in DescriptorReflection()
6183 public bool MapEntry { property in Google.Protobuf.Reflection.MessageOptions
6230 if (MapEntry != other.MapEntry) return false; in Equals()
6244 if (HasMapEntry) hash ^= MapEntry.GetHashCode(); in GetHashCode()
6279 output.WriteBool(MapEntry); in WriteTo()
6308 output.WriteBool(MapEntry); in IBufferMessage.InternalWriteTo()
6360 MapEntry = other.MapEntry; in MergeFrom()
6393 MapEntry in MergeFrom()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
H A DVPlan.h1388 for (auto &MapEntry : Value2VPValue)
1389 if (MapEntry.second != BackedgeTakenCount)
1390 delete MapEntry.second;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DMetadata.cpp456 auto &MapEntry = I.first->getValue(); in get() local
458 return &MapEntry; in get()
459 MapEntry.Entry = &*I.first; in get()
460 return &MapEntry; in get()
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMap.java37 import com.google.protobuf.MapEntry;

Completed in 57 milliseconds