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

  /external/chromium_org/ui/gfx/image/
image_family.h 32 struct MapKey : std::pair<float, int> {
33 MapKey(float aspect, int width)
95 const std::map<MapKey, gfx::Image>::const_iterator& other);
97 std::map<MapKey, gfx::Image>::const_iterator map_iterator_;
153 std::map<MapKey, gfx::Image> map_;
image_family.cc 21 const std::map<MapKey, gfx::Image>::const_iterator& other)
32 map_[MapKey(1.0f, 0)] = image;
36 map_[MapKey(aspect, size.width())] = image;
72 std::map<MapKey, gfx::Image>::const_iterator greater_or_equal =
73 map_.lower_bound(MapKey(desired_aspect, 0));
84 std::map<MapKey, gfx::Image>::const_iterator less_than =
113 std::map<MapKey, gfx::Image>::const_iterator greater_or_equal =
114 map_.lower_bound(MapKey(aspect, width));
122 std::map<MapKey, gfx::Image>::const_iterator less_than = greater_or_equal;
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.h 188 static std::string MapKey(const std::string& map_id, const std::string& key);
session_storage_database.cc 598 std::string key = MapKey(map_id, base::UTF16ToUTF8(it->first));
660 batch->Delete(MapKey(map_id, base::UTF16ToUTF8(it->first)));
720 std::string SessionStorageDatabase::MapKey(const std::string& map_id,
  /external/llvm/lib/IR/
ConstantsContext.h 509 typedef std::pair<TypeClass*, ValType> MapKey;
510 typedef std::map<MapKey, ConstantClass *> MapTy;
541 typename MapTy::iterator InsertOrGetItem(std::pair<MapKey, ConstantClass *>
560 Map.find(MapKey(static_cast<TypeClass*>(CP->getType()),
577 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
589 MapKey Lookup(Ty, V);

Completed in 103 milliseconds