/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
H A D | MessageOptions.php | 62 * option map_entry = true; 67 * Implementations may choose not to generate the map_entry=true message, but 75 * Generated from protobuf field <code>optional bool map_entry = 7;</code> 77 protected $map_entry = null; variable 116 * @type bool $map_entry 123 * option map_entry = true; 128 * Implementations may choose not to generate the map_entry=true message, but 297 * option map_entry = true; 302 * Implementations may choose not to generate the map_entry=true message, but 310 * Generated from protobuf field <code>optional bool map_entry 355 $this->map_entry = $var; global() variable [all...] |
H A D | GPBJsonWire.php | 65 $map_entry = $field->getMessageType(); variable 66 $key_field = $map_entry->getFieldByNumber(1); 67 $value_field = $map_entry->getFieldByNumber(2);
|
H A D | Message.php | 1399 $map_entry = new MapEntry($field->getMessageType()); variable 1400 $map_entry->setKey($key); 1401 $map_entry->setValue($value); 1403 $map_entry, 1856 $map_entry = $field->getMessageType(); variable 1857 $key_field = $map_entry->getFieldByNumber(1); 1858 $value_field = $map_entry->getFieldByNumber(2);
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_split_per_member_structs.c | 37 struct hash_entry *map_entry = in find_var_member() local 39 if (map_entry == NULL) in find_var_member() 42 nir_variable **members = map_entry->data; in find_var_member()
|
/third_party/skia/experimental/skrive/src/reader/ |
H A D | JsonReader.cpp | 44 const auto* map_entry = std::lower_bound(std::begin(gTypeMap), in block_type() local 51 return (map_entry != std::end(gTypeMap) && !strcmp(map_entry->name, key.name)) in block_type() 52 ? map_entry->block_type in block_type()
|
/third_party/libwebsockets/lib/misc/ |
H A D | lws-struct-lejp.c | 562 map = &j->map[j->map_entry]; in lws_struct_json_serialize() 685 j->map_entry = 0; in lws_struct_json_serialize() 710 j->map_entry = 0; in lws_struct_json_serialize() 741 j->map_entry = 0; in lws_struct_json_serialize() 820 if (++j->map_entry < j->map_entries) in lws_struct_json_serialize() 835 map = &j->map[j->map_entry]; in lws_struct_json_serialize() 870 j->map_entry = 0; in lws_struct_json_serialize() 871 map = &j->map[j->map_entry]; in lws_struct_json_serialize()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | generated_message_table_driven.h | 311 Entry map_entry(*it); 313 output->WriteVarint32(map_entry._cached_size_); 314 SerializeInternal(reinterpret_cast<const uint8*>(&map_entry),
|
H A D | wire_format.cc | 1043 if (descriptor->options().map_entry()) { in _InternalSerialize() 1264 } else if (field->containing_type()->options().map_entry()) { in InternalSerializeField() 1457 if (descriptor->options().map_entry()) { in ByteSize() 1504 } else if (field->containing_type()->options().map_entry()) { in FieldByteSize() 1637 } else if (field->containing_type()->options().map_entry()) { in FieldDataOnlyByteSize()
|
H A D | reflection_ops.cc | 213 if (PROTOBUF_PREDICT_FALSE(message_type->options().map_entry())) { in IsInitialized()
|
H A D | descriptor.cc | 1710 if (!options().map_entry()) return nullptr; in map_key() 1716 if (!options().map_entry()) return nullptr; in map_value() 1978 return message_type_->options().map_entry(); in is_map_message_type() 2553 if (options().map_entry()) { in DebugString() 6146 "map_entry should not be set explicitly. Use map<KeyType, " in ValidateFieldOptions() 6308 if (result.first->second->options().map_entry() || in DetectMapConflicts() 6309 nested->options().map_entry()) { in DetectMapConflicts() 6324 if (iter != seen_types.end() && iter->second->options().map_entry()) { in DetectMapConflicts() 6336 if (iter != seen_types.end() && iter->second->options().map_entry()) { in DetectMapConflicts() 6348 if (iter != seen_types.end() && iter->second->options().map_entry()) { in DetectMapConflicts() [all...] |
/third_party/node/deps/v8/src/profiler/ |
H A D | profile-generator.cc | 378 auto map_entry = children_.find({entry, line_number}); in FindChild() local 379 return map_entry != children_.end() ? map_entry->second : nullptr; in FindChild() 383 auto map_entry = children_.find({entry, line_number}); in FindOrAddChild() local 384 if (map_entry == children_.end()) { in FindOrAddChild() 390 return map_entry->second; in FindOrAddChild() 399 auto map_entry = line_ticks_.find(src_line); in IncrementLineTicks() 400 if (map_entry == line_ticks_.end()) { in IncrementLineTicks()
|
/third_party/node/deps/v8/src/snapshot/ |
H A D | mksnapshot.cc | 207 auto map_entry = counter_map_->find(name); in MaybeSetCounterFunction() 208 if (map_entry == counter_map_->end()) { in MaybeSetCounterFunction()
|
/third_party/protobuf/src/google/protobuf/compiler/csharp/ |
H A D | csharp_helpers.h | 123 return descriptor->options().map_entry(); in IsMapEntryMessage()
|
/third_party/protobuf/src/google/protobuf/compiler/java/ |
H A D | java_map_field.cc | 49 GOOGLE_CHECK(message->options().map_entry()); in KeyField() 56 GOOGLE_CHECK(message->options().map_entry()); in ValueField()
|
H A D | java_map_field_lite.cc | 49 GOOGLE_CHECK(message->options().map_entry()); in KeyField() 56 GOOGLE_CHECK(message->options().map_entry()); in ValueField()
|
H A D | java_helpers.h | 405 return descriptor->options().map_entry(); in IsMapEntry()
|
/third_party/protobuf/src/google/protobuf/compiler/ruby/ |
H A D | ruby_generator.cc | 251 if (message->options().map_entry()) { in GenerateMessage() 369 if (message->options().map_entry()) { in GenerateMessageAssignment()
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | python_message.py | 279 field.message_type.GetOptions().map_entry) 402 raise ValueError('map_entry set on non-repeated field %s' % ( 1070 if descriptor.GetOptions().map_entry: 1118 if descriptor.GetOptions().map_entry: 1251 field.message_type.GetOptions().map_entry):
|
/third_party/libwebsockets/include/libwebsockets/ |
H A D | lws-struct.h | 215 size_t map_entry; member
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-inspector-impl.cc | 249 for (const auto& map_entry : *contextsIt->second) in resetContextGroup() 250 m_uniqueIdToContextId.erase(map_entry.second->uniqueId().pair()); in resetContextGroup()
|
/third_party/protobuf/src/google/protobuf/compiler/php/ |
H A D | php_generator.cc | 721 const Descriptor* map_entry = field->message_type(); in GenerateFieldAccessor() local 722 const FieldDescriptor* key = map_entry->FindFieldByName("key"); in GenerateFieldAccessor() 723 const FieldDescriptor* value = map_entry->FindFieldByName("value"); in GenerateFieldAccessor() 851 if (message->options().map_entry()) { in GenerateMessageToPool() 1378 if (message->options().map_entry()) { in GenerateMessageFile()
|
/third_party/protobuf/src/google/protobuf/compiler/objectivec/ |
H A D | objectivec_helpers.h | 135 return descriptor->options().map_entry(); in IsMapEntryMessage()
|
/third_party/protobuf/conformance/ |
H A D | binary_json_conformance_suite.cc | 266 const Descriptor* map_entry = f->message_type(); in GetFieldForMapType() local 267 const FieldDescriptor* key = map_entry->field(0); in GetFieldForMapType() 268 const FieldDescriptor* value = map_entry->field(1); in GetFieldForMapType()
|
/third_party/protobuf/python/google/protobuf/ |
H A D | json_format.py | 181 field.message_type.GetOptions().map_entry)
|
/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
H A D | cpp_helpers.h | 418 return descriptor->options().map_entry(); in IsMapEntryMessage()
|