Home
last modified time | relevance | path

Searched refs:MapType (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
DWebPreferencesStore.cpp163 template<typename MapType>
164 static typename MapType::MappedType valueForKey(const MapType& map, const typename MapType::KeyType… in valueForKey()
166 typename MapType::const_iterator it = map.find(key); in valueForKey()
170 return defaultValueForKey<typename MapType::MappedType>(key); in valueForKey()
173 template<typename MapType>
174 static bool setValueForKey(MapType& map, const typename MapType::KeyType& key, const typename MapTy… in setValueForKey()
176 typename MapType::MappedType existingValue = valueForKey(map, key); in setValueForKey()
DImmutableDictionary.h45 typedef HashMap<String, RefPtr<APIObject> > MapType; typedef
51 static PassRefPtr<ImmutableDictionary> adopt(MapType& map) in adopt()
82 const MapType& map() { return m_map; } in map()
86 ImmutableDictionary(MapType& map);
90 MapType m_map;
DImmutableDictionary.cpp38 ImmutableDictionary::ImmutableDictionary(MapType& map) in ImmutableDictionary()
55 MapType::const_iterator::Keys it = m_map.begin().keys(); in keys()
56 MapType::const_iterator::Keys end = m_map.end().keys(); in keys()
DMutableDictionary.cpp41 std::pair<MapType::iterator, bool> result = m_map.add(key, item); in add()
47 std::pair<MapType::iterator, bool> result = m_map.set(key, item); in set()
DUserMessageCoders.h82 const ImmutableDictionary::MapType& map = dictionary->map(); in baseEncode()
85 ImmutableDictionary::MapType::const_iterator it = map.begin(); in baseEncode()
86 ImmutableDictionary::MapType::const_iterator end = map.end(); in baseEncode()
219 ImmutableDictionary::MapType map; in baseDecode()
230 … std::pair<ImmutableDictionary::MapType::iterator, bool> result = map.set(key, element.release()); in baseDecode()
/external/webkit/Source/JavaScriptCore/runtime/
DWeakGCMap.h54 typedef HashMap<KeyType, HandleSlot, HashArg, KeyTraitsArg> MapType; typedef
56 typedef typename MapType::iterator map_iterator;
126 pair<typename MapType::iterator, bool> iter = m_map.add(key, 0); in add()
147 pair<typename MapType::iterator, bool> iter = m_map.add(key, 0); in set()
186 MapType m_map;
/external/llvm/lib/VMCore/
DPassRegistry.cpp46 typedef DenseMap<const void*, const PassInfo*> MapType; typedef
47 MapType PassInfoMap;
88 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI); in getPassInfo()
124 PassRegistryImpl::MapType::iterator I = in unregisterPass()
136 for (PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.begin(), in enumerateWith()
/external/webkit/Source/WebKit2/UIProcess/
DWebFormClient.cpp41 ImmutableDictionary::MapType map; in willSubmitForm()
DWebUIClient.cpp50 ImmutableDictionary::MapType map; in createNewPage()
/external/chromium/chrome/browser/chromeos/input_method/
Dinput_method_util.cc322 typedef std::map<std::pair<std::string, std::string>, int> MapType; in GetLocalizedString() typedef
323 static MapType* english_and_input_method_id_to_resource_id = NULL; in GetLocalizedString()
326 english_and_input_method_id_to_resource_id = new MapType; in GetLocalizedString()
347 MapType::const_iterator iter2 = in GetLocalizedString()
/external/chromium/net/socket/
Dclient_socket_pool_manager.cc46 template <class MapType>
48 const MapType& socket_pools, in AddSocketPoolsToList()
51 for (typename MapType::const_iterator it = socket_pools.begin(); in AddSocketPoolsToList()
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundlePageFormClient.cpp93 ImmutableDictionary::MapType map; in willSubmitForm()
/external/valgrind/tsan/
Dthread_sanitizer.cc2396 template <class MapType>
2397 static SSID GetIdOrZeroFromMap(MapType *map, SegmentSet *ss) { in GetIdOrZeroFromMap()
2398 typename MapType::iterator it = map->find(ss); in GetIdOrZeroFromMap()