Lines Matching refs:other_it
284 for (Map<MapKey, MapValueRef>::const_iterator other_it = in MergeFrom() local
286 other_it != other_field.map_.end(); ++other_it) { in MergeFrom()
287 Map<MapKey, MapValueRef>::iterator iter = map->find(other_it->first); in MergeFrom()
290 map_val = &map_[other_it->first]; in MergeFrom()
301 map_val->SetInt32Value(other_it->second.GetInt32Value()); in MergeFrom()
305 map_val->SetInt64Value(other_it->second.GetInt64Value()); in MergeFrom()
309 map_val->SetUInt32Value(other_it->second.GetUInt32Value()); in MergeFrom()
313 map_val->SetUInt64Value(other_it->second.GetUInt64Value()); in MergeFrom()
317 map_val->SetFloatValue(other_it->second.GetFloatValue()); in MergeFrom()
321 map_val->SetDoubleValue(other_it->second.GetDoubleValue()); in MergeFrom()
325 map_val->SetBoolValue(other_it->second.GetBoolValue()); in MergeFrom()
329 map_val->SetStringValue(other_it->second.GetStringValue()); in MergeFrom()
333 map_val->SetEnumValue(other_it->second.GetEnumValue()); in MergeFrom()
338 other_it->second.GetMessageValue()); in MergeFrom()