HomeSort by relevance Sort by last modified time
    Searched refs:MapType (Results 1 - 23 of 23) sorted by null

  /external/webkit/Source/WebKit2/Shared/
ImmutableDictionary.cpp 38 ImmutableDictionary::ImmutableDictionary(MapType& map)
55 MapType::const_iterator::Keys it = m_map.begin().keys();
56 MapType::const_iterator::Keys end = m_map.end().keys();
ImmutableDictionary.h 45 typedef HashMap<String, RefPtr<APIObject> > MapType;
51 static PassRefPtr<ImmutableDictionary> adopt(MapType& map)
82 const MapType& map() { return m_map; }
86 ImmutableDictionary(MapType& map);
90 MapType m_map;
MutableDictionary.cpp 41 std::pair<MapType::iterator, bool> result = m_map.add(key, item);
47 std::pair<MapType::iterator, bool> result = m_map.set(key, item);
WebPreferencesStore.cpp 163 template<typename MapType>
164 static typename MapType::MappedType valueForKey(const MapType& map, const typename MapType::KeyType& key)
166 typename MapType::const_iterator it = map.find(key);
170 return defaultValueForKey<typename MapType::MappedType>(key);
173 template<typename MapType>
174 static bool setValueForKey(MapType& map, const typename MapType::KeyType& key, const typename MapType::MappedType& value
    [all...]
UserMessageCoders.h 82 const ImmutableDictionary::MapType& map = dictionary->map();
85 ImmutableDictionary::MapType::const_iterator it = map.begin();
86 ImmutableDictionary::MapType::const_iterator end = map.end();
219 ImmutableDictionary::MapType map;
230 std::pair<ImmutableDictionary::MapType::iterator, bool> result = map.set(key, element.release());
  /external/eigen/doc/snippets/
Tutorial_Map_using.cpp 2 typedef Map<MatrixType> MapType;
10 MapType m2map(p,m2.size()); // m2map shares data with m2
  /external/llvm/include/llvm/ADT/
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);
95 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
106 typename MapType::const_iterator Pos = Map.find(Key);
111 typename MapType::const_iterator Pos = Map.find(Key);
117 typename MapType::const_iterator Pos = Map.find(Key);
124 typename MapType::iterator Pos = Map.find(Vector.back().first);
  /external/openfst/src/script/
map.cc 24 FstClass *Map(const FstClass& ifst, MapType map_type,
  /external/clang/include/clang/AST/
CXXInheritance.h 275 typedef llvm::MapVector<unsigned, ValuesT> MapType;
276 MapType Overrides;
280 typedef MapType::iterator iterator;
281 typedef MapType::const_iterator const_iterator;
  /external/openfst/src/include/fst/script/
map.h 47 enum MapType { ARC_SUM_MAPPER, IDENTITY_MAPPER, INVERT_MAPPER, PLUS_MAPPER,
51 typedef args::Package<const FstClass&, MapType, float,
58 MapType map_type = args->args.arg2;
116 FstClass *Map(const FstClass& f, MapType map_type,
  /external/webkit/Source/WebKit2/UIProcess/
WebFormClient.cpp 41 ImmutableDictionary::MapType map;
WebUIClient.cpp 50 ImmutableDictionary::MapType map;
  /external/llvm/lib/IR/
PassRegistry.cpp 47 typedef DenseMap<const void*, const PassInfo*> MapType;
48 MapType PassInfoMap;
89 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI);
125 PassRegistryImpl::MapType::iterator I =
137 for (PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.begin(),
  /external/webkit/Source/JavaScriptCore/runtime/
WeakGCMap.h 54 typedef HashMap<KeyType, HandleSlot, HashArg, KeyTraitsArg> MapType;
56 typedef typename MapType::iterator map_iterator;
126 pair<typename MapType::iterator, bool> iter = m_map.add(key, 0);
147 pair<typename MapType::iterator, bool> iter = m_map.add(key, 0);
186 MapType m_map;
  /external/clang/lib/Serialization/
Module.cpp 67 typedef ContinuousRangeMap<Key, Offset, InitialCapacity> MapType;
69 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
ASTReader.cpp     [all...]
  /external/openfst/src/bin/
fstmap.cc 63 s::MapType mt;
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageFormClient.cpp 93 ImmutableDictionary::MapType map;
  /external/eigen/Eigen/src/Core/
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); }
    [all...]
  /external/chromium/chrome/browser/chromeos/input_method/
input_method_util.cc 322 typedef std::map<std::pair<std::string, std::string>, int> MapType;
323 static MapType* english_and_input_method_id_to_resource_id = NULL;
326 english_and_input_method_id_to_resource_id = new MapType;
347 MapType::const_iterator iter2 =
  /external/chromium/net/socket/
client_socket_pool_manager.cc 46 template <class MapType>
48 const MapType& socket_pools,
51 for (typename MapType::const_iterator it = socket_pools.begin();
  /frameworks/base/tools/aidl/
Type.cpp 87 MAP_TYPE = new MapType();
817 MapType::MapType()
823 MapType::WriteToParcel(StatementBlock* addTo, Variable* v, Variable* parcel, int flags)
841 MapType::CreateFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, Variable** cl)
848 MapType::ReadFromParcel(StatementBlock* addTo, Variable* v, Variable* parcel, Variable** cl)
    [all...]
Type.h 321 class MapType : public Type
324 MapType();

Completed in 468 milliseconds