Home | History | Annotate | Download | only in shapes

Lines Matching defs:InfoMap

79         InfoMap& infoMap = ShapeOutsideInfo::infoMap();
80 if (ShapeOutsideInfo* info = infoMap.get(&key))
82 InfoMap::AddResult result = infoMap.add(&key, ShapeOutsideInfo::createInfo(key));
85 static void removeInfo(const RenderBox& key) { infoMap().remove(&key); }
86 static ShapeOutsideInfo* info(const RenderBox& key) { return infoMap().get(&key); }
109 typedef HashMap<const RenderBox*, OwnPtr<ShapeOutsideInfo> > InfoMap;
110 static InfoMap& infoMap()
112 DEFINE_STATIC_LOCAL(InfoMap, staticInfoMap, ());