/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/llvm/include/llvm/ADT/ |
D | MapVector.h | 31 typename MapType = llvm::DenseMap<KeyT, unsigned>, 36 MapType Map; 79 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); 89 typename MapType::const_iterator Pos = Map.find(Key); in lookup() 95 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert() 106 typename MapType::const_iterator Pos = Map.find(Key); in count() 111 typename MapType::const_iterator Pos = Map.find(Key); in find() 117 typename MapType::const_iterator Pos = Map.find(Key); in find() 124 typename MapType::iterator Pos = Map.find(Vector.back().first); in pop_back()
|
/external/llvm/lib/IR/ |
D | PassRegistry.cpp | 47 typedef DenseMap<const void*, const PassInfo*> MapType; typedef 48 MapType PassInfoMap; 89 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI); in getPassInfo() 125 PassRegistryImpl::MapType::iterator I = in unregisterPass() 137 for (PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.begin(), in enumerateWith()
|
/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/clang/include/clang/AST/ |
D | CXXInheritance.h | 275 typedef llvm::MapVector<unsigned, ValuesT> MapType; typedef 276 MapType Overrides; 280 typedef MapType::iterator iterator; 281 typedef MapType::const_iterator const_iterator;
|
/external/openfst/src/include/fst/script/ |
D | map.h | 47 enum MapType { ARC_SUM_MAPPER, IDENTITY_MAPPER, INVERT_MAPPER, PLUS_MAPPER, enum 51 typedef args::Package<const FstClass&, MapType, float, 58 MapType map_type = args->args.arg2; in Map() 116 FstClass *Map(const FstClass& f, MapType map_type,
|
/external/eigen/doc/snippets/ |
D | Tutorial_Map_using.cpp | 2 typedef Map<MatrixType> MapType; typedef 10 MapType m2map(p,m2.size()); // m2map shares data with m2
|
/external/clang/lib/Serialization/ |
D | Module.cpp | 67 typedef ContinuousRangeMap<Key, Offset, InitialCapacity> MapType; in dumpLocalRemap() typedef 69 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end(); in dumpLocalRemap()
|
D | ASTReader.cpp | 5770 typedef ContinuousRangeMap<Key, ModuleFile *, InitialCapacity> MapType; in dumpModuleIDMap() typedef 5772 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end(); in dumpModuleIDMap()
|
/external/openfst/src/script/ |
D | map.cc | 24 FstClass *Map(const FstClass& ifst, MapType map_type, in Map()
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | WebFormClient.cpp | 41 ImmutableDictionary::MapType map; in willSubmitForm()
|
D | WebUIClient.cpp | 50 ImmutableDictionary::MapType map; in createNewPage()
|
/external/eigen/Eigen/src/Core/ |
D | PlainObjectBase.h | 97 typedef Eigen::Map<Derived, Unaligned> MapType; 456 static inline MapType Map(Scalar* data) 457 { return MapType(data); } 460 static inline MapType Map(Scalar* data, Index size) 461 { return MapType(data, size); } 464 static inline MapType Map(Scalar* data, Index rows, Index cols) 465 { return MapType(data, rows, cols); }
|
/external/openfst/src/bin/ |
D | fstmap.cc | 63 s::MapType mt; in main()
|
/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()
|