Searched refs:MapType (Results 1 – 13 of 13) sorted by relevance
/external/webkit/Source/WebKit2/Shared/ |
D | WebPreferencesStore.cpp | 163 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()
|
D | ImmutableDictionary.h | 45 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;
|
D | ImmutableDictionary.cpp | 38 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()
|
D | MutableDictionary.cpp | 41 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()
|
D | UserMessageCoders.h | 82 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/ |
D | WeakGCMap.h | 54 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/ |
D | PassRegistry.cpp | 46 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/ |
D | WebFormClient.cpp | 41 ImmutableDictionary::MapType map; in willSubmitForm()
|
D | WebUIClient.cpp | 50 ImmutableDictionary::MapType map; in createNewPage()
|
/external/chromium/chrome/browser/chromeos/input_method/ |
D | input_method_util.cc | 322 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/ |
D | client_socket_pool_manager.cc | 46 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/ |
D | InjectedBundlePageFormClient.cpp | 93 ImmutableDictionary::MapType map; in willSubmitForm()
|
/external/valgrind/tsan/ |
D | thread_sanitizer.cc | 2396 template <class MapType> 2397 static SSID GetIdOrZeroFromMap(MapType *map, SegmentSet *ss) { in GetIdOrZeroFromMap() 2398 typename MapType::iterator it = map->find(ss); in GetIdOrZeroFromMap()
|