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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementRareData.h 36 class SVGElementRareData {
37 WTF_MAKE_NONCOPYABLE(SVGElementRareData); WTF_MAKE_FAST_ALLOCATED;
39 SVGElementRareData()
49 typedef HashMap<const SVGElement*, SVGElementRareData*> SVGElementRareDataMap;
57 static SVGElementRareData* rareDataFromMap(const SVGElement* element)
SVGElement.h 43 class SVGElementRareData;
172 SVGElementRareData* svgRareData() const;
173 SVGElementRareData* ensureSVGRareData();
SVGElement.cpp 44 #include "core/svg/SVGElementRareData.h"
99 ASSERT(!SVGElementRareData::rareDataMap().contains(this));
101 SVGElementRareData::SVGElementRareDataMap& rareDataMap = SVGElementRareData::rareDataMap();
102 SVGElementRareData::SVGElementRareDataMap::iterator it = rareDataMap.find(this);
105 SVGElementRareData* rareData = it->value;
179 SVGElementRareData* SVGElement::svgRareData() const
182 return SVGElementRareData::rareDataFromMap(this);
185 SVGElementRareData* SVGElement::ensureSVGRareData()
190 ASSERT(!SVGElementRareData::rareDataMap().contains(this))
    [all...]

Completed in 66 milliseconds