Home
last modified time | relevance | path

Searched refs:map_val (Results 1 – 11 of 11) sorted by relevance

/third_party/protobuf/src/google/protobuf/
Dmap_test_util.h71 const MapKey& map_key, MapValueRef* map_val);
497 MapValueRef map_val; in SetMapFieldsViaMapReflection() local
503 map_key, &map_val)); in SetMapFieldsViaMapReflection()
504 map_val.SetInt32Value(0); in SetMapFieldsViaMapReflection()
508 map_key, &map_val)); in SetMapFieldsViaMapReflection()
509 map_val.SetInt64Value(0); in SetMapFieldsViaMapReflection()
513 message, F("map_uint32_uint32"), map_key, &map_val)); in SetMapFieldsViaMapReflection()
514 map_val.SetUInt32Value(0); in SetMapFieldsViaMapReflection()
518 message, F("map_uint64_uint64"), map_key, &map_val)); in SetMapFieldsViaMapReflection()
519 map_val.SetUInt64Value(0); in SetMapFieldsViaMapReflection()
[all …]
Dmap_field.cc198 void DynamicMapField::AllocateMapValue(MapValueRef* map_val) { in AllocateMapValue() argument
200 map_val->SetType(val_des->cpp_type()); in AllocateMapValue()
207 map_val->SetValue(value); \ in AllocateMapValue()
224 map_val->SetValue(value); in AllocateMapValue()
237 MapValueRef& map_val = map_[map_key]; in InsertOrLookupMapValue() local
238 AllocateMapValue(&map_val); in InsertOrLookupMapValue()
239 val->CopyFrom(map_val); in InsertOrLookupMapValue()
292 MapValueRef* map_val; in MergeFrom() local
294 map_val = &map_[other_it->first]; in MergeFrom()
295 AllocateMapValue(map_val); in MergeFrom()
[all …]
Dmap_field.h571 void AllocateMapValue(MapValueRef* map_val);
Dmap_test.cc2902 MapValueRef map_val; in TEST_F() local
2905 message.get(), "map_int32_foreign_message", map_key, &map_val); in TEST_F()
2906 Message* submsg = map_val.MutableMessageValue(); in TEST_F()
/third_party/protobuf/php/ext/google/protobuf/
Dmessage.c255 msgval.map_val = MapField_GetUpbMap(val, f, arena); in Message_write_property()
256 if (!msgval.map_val) goto error; in Message_write_property()
424 msgval.map_val = MapField_GetUpbMap(val, f, arena); in Message_InitFromPhp()
425 if (!msgval.map_val) return false; in Message_InitFromPhp()
Dphp-upb.c5808 if (upb_map_size(test.map_val) == 0) continue; in upb_msg_next()
5839 upb_map *map = (upb_map*)val.map_val; in _upb_msg_discardunknown()
5845 upb_msgval map_val = upb_mapiter_value(map, iter); in _upb_msg_discardunknown() local
5846 if (!_upb_msg_discardunknown((upb_msg*)map_val.msg_val, val_m, depth)) { in _upb_msg_discardunknown()
7807 const upb_map *fields = upb_msg_get(msg, fields_f).map_val; in jsonenc_struct()
8041 jsonenc_map(e, val.map_val, f); in jsonenc_fieldval()
Dphp-upb.h3649 const upb_map* map_val; member
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecs/
Dgstvp9statefulparser.c1126 guint8 map_val; in read_interpolation_filter() local
1128 VP9_READ_UINT8 (map_val, 2); in read_interpolation_filter()
1129 header->interpolation_filter = filter_map[map_val]; in read_interpolation_filter()
/third_party/protobuf/ruby/ext/google/protobuf_c/
Dupb.h3415 const upb_map* map_val; member
Dupb.c5305 if (upb_map_size(test.map_val) == 0) continue; in upb_msg_next()
/third_party/rust/crates/memchr/bench/data/code/
Drust-library.rs37113 fn map_val<'new>(v: BTreeMap<(), &'static str>) -> BTreeMap<(), &'new str> {