Searched refs:MapIterator (Results 1 – 13 of 13) sorted by relevance
/external/protobuf/src/google/protobuf/ |
D | map_field.h | 93 virtual bool EqualIterator(const MapIterator& a, 94 const MapIterator& b) const = 0; 95 virtual void MapBegin(MapIterator* map_iter) const = 0; 96 virtual void MapEnd(MapIterator* map_iter) const = 0; 164 friend class ::google::protobuf::MapIterator; 166 virtual void InitializeIterator(MapIterator* map_iter) const = 0; 170 virtual void DeleteIterator(MapIterator* map_iter) const = 0; 174 virtual void CopyIterator(MapIterator* this_iterator, 175 const MapIterator& other_iterator) const = 0; 179 virtual void IncreaseIterator(MapIterator* map_iter) const = 0; [all …]
|
D | map_field_test.cc | 87 bool EqualIterator(const MapIterator& a, const MapIterator& b) const { in EqualIterator() 91 void MapBegin(MapIterator* map_iter) const {} in MapBegin() 92 void MapEnd(MapIterator* map_iter) const {} in MapEnd() 93 void InitializeIterator(MapIterator* map_iter) const {} in InitializeIterator() 94 void DeleteIterator(MapIterator* map_iter) const {} in DeleteIterator() 95 void CopyIterator(MapIterator* this_iterator, in CopyIterator() 96 const MapIterator& other_iterator) const {} in CopyIterator() 97 void IncreaseIterator(MapIterator* map_iter) const {} in IncreaseIterator()
|
D | map_field_inl.h | 106 const MapIterator* map_iter) const { in InternalGetIterator() 112 void TypeDefinedMapFieldBase<Key, T>::MapBegin(MapIterator* map_iter) const { in MapBegin() 118 void TypeDefinedMapFieldBase<Key, T>::MapEnd(MapIterator* map_iter) const { in MapEnd() 123 bool TypeDefinedMapFieldBase<Key, T>::EqualIterator(const MapIterator& a, in EqualIterator() 124 const MapIterator& b) in EqualIterator() 130 void TypeDefinedMapFieldBase<Key, T>::IncreaseIterator(MapIterator* map_iter) in IncreaseIterator() 138 MapIterator* map_iter) const { in InitializeIterator() 144 void TypeDefinedMapFieldBase<Key, T>::DeleteIterator(MapIterator* map_iter) in DeleteIterator() 152 MapIterator* this_iter, in CopyIterator() 153 const MapIterator& that_iter) const { in CopyIterator() [all …]
|
D | message.cc | 262 MapIterator Reflection::MapBegin( in MapBegin() 266 MapIterator iter(message, field); in MapBegin() 270 MapIterator Reflection::MapEnd( in MapEnd() 274 MapIterator iter(message, field); in MapEnd()
|
D | map_test_util.cc | 1335 for (MapIterator iter = reflection->MapBegin(message, F("map_int32_int32")); in ExpectMapFieldsSetViaReflectionIterator() 1353 for (MapIterator iter = reflection->MapBegin(message, F("map_int64_int64")); in ExpectMapFieldsSetViaReflectionIterator() 1363 for (MapIterator iter = reflection->MapBegin( in ExpectMapFieldsSetViaReflectionIterator() 1375 for (MapIterator iter = reflection->MapBegin( in ExpectMapFieldsSetViaReflectionIterator() 1387 for (MapIterator iter = reflection->MapBegin( in ExpectMapFieldsSetViaReflectionIterator() 1399 for (MapIterator iter = reflection->MapBegin( in ExpectMapFieldsSetViaReflectionIterator() 1410 for (MapIterator iter = reflection->MapBegin( in ExpectMapFieldsSetViaReflectionIterator() 1422 for (MapIterator iter = reflection->MapBegin( in ExpectMapFieldsSetViaReflectionIterator() 1434 for (MapIterator iter = reflection->MapBegin( in ExpectMapFieldsSetViaReflectionIterator() 1446 for (MapIterator iter = reflection->MapBegin(message, F("map_int32_float")); in ExpectMapFieldsSetViaReflectionIterator() [all …]
|
D | message.h | 139 class MapIterator; variable 977 virtual MapIterator MapBegin( 984 virtual MapIterator MapEnd( 996 friend class MapIterator; variable
|
D | generated_message_reflection.h | 277 MapIterator MapBegin( 280 MapIterator MapEnd(
|
D | generated_message_reflection.cc | 1812 MapIterator GeneratedMessageReflection::MapBegin( in MapBegin() 1818 MapIterator iter(message, field); in MapBegin() 1823 MapIterator GeneratedMessageReflection::MapEnd( in MapEnd() 1829 MapIterator iter(message, field); in MapEnd()
|
D | map.h | 59 class MapIterator; variable 268 friend class MapIterator; variable 414 friend class MapIterator; variable
|
D | map_field.cc | 253 void DynamicMapField::SetMapIteratorValue(MapIterator* map_iter) const { in SetMapIteratorValue()
|
/external/google-breakpad/src/processor/ |
D | contained_range_map-inl.h | 75 MapIterator iterator_base = map_->lower_bound(base); in StoreRange() 76 MapIterator iterator_high = map_->lower_bound(high); in StoreRange() 77 MapIterator iterator_end = map_->end(); in StoreRange()
|
D | contained_range_map.h | 115 typedef typename AddressToRangeMap::iterator MapIterator; typedef
|
/external/protobuf/python/google/protobuf/pyext/ |
D | map_container.cc | 75 struct MapIterator { struct 78 google::protobuf::scoped_ptr< ::google::protobuf::MapIterator> iter; argument 861 static MapIterator* GetIter(PyObject* obj) { in GetIter() 862 return reinterpret_cast<MapIterator*>(obj); in GetIter() 873 MapIterator* iter = GetIter(obj.get()); in GetIterator() 884 iter->iter.reset(new ::google::protobuf::MapIterator( in GetIterator() 892 MapIterator* self = GetIter(_self); in IterNext() 922 MapIterator* self = GetIter(_self); in DeallocMapIterator() 932 sizeof(MapIterator), // tp_basicsize
|