Home
last modified time | relevance | path

Searched refs:propertyNameToIdMap (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/svg/
DSVGStyledElement.cpp55 void mapAttributeToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const Qualifie… in mapAttributeToCSSProperty() argument
59 propertyNameToIdMap->set(attrName.localName().impl(), propertyId); in mapAttributeToCSSProperty()
136 static HashMap<AtomicStringImpl*, int>* propertyNameToIdMap = 0; in cssPropertyIdForSVGAttributeName() local
137 if (!propertyNameToIdMap) { in cssPropertyIdForSVGAttributeName()
138 propertyNameToIdMap = new HashMap<AtomicStringImpl*, int>; in cssPropertyIdForSVGAttributeName()
140 mapAttributeToCSSProperty(propertyNameToIdMap, alignment_baselineAttr); in cssPropertyIdForSVGAttributeName()
141 mapAttributeToCSSProperty(propertyNameToIdMap, baseline_shiftAttr); in cssPropertyIdForSVGAttributeName()
142 mapAttributeToCSSProperty(propertyNameToIdMap, clipAttr); in cssPropertyIdForSVGAttributeName()
143 mapAttributeToCSSProperty(propertyNameToIdMap, clip_pathAttr); in cssPropertyIdForSVGAttributeName()
144 mapAttributeToCSSProperty(propertyNameToIdMap, clip_ruleAttr); in cssPropertyIdForSVGAttributeName()
[all …]
DSVGFontFaceElement.cpp69 static HashMap<AtomicStringImpl*, int>* propertyNameToIdMap = 0; in cssPropertyIdForSVGAttributeName() local
70 if (!propertyNameToIdMap) { in cssPropertyIdForSVGAttributeName()
71 propertyNameToIdMap = new HashMap<AtomicStringImpl*, int>; in cssPropertyIdForSVGAttributeName()
80 mapAttributeToCSSProperty(propertyNameToIdMap, font_familyAttr); in cssPropertyIdForSVGAttributeName()
81 mapAttributeToCSSProperty(propertyNameToIdMap, font_sizeAttr); in cssPropertyIdForSVGAttributeName()
82 mapAttributeToCSSProperty(propertyNameToIdMap, font_stretchAttr); in cssPropertyIdForSVGAttributeName()
83 mapAttributeToCSSProperty(propertyNameToIdMap, font_styleAttr); in cssPropertyIdForSVGAttributeName()
84 mapAttributeToCSSProperty(propertyNameToIdMap, font_variantAttr); in cssPropertyIdForSVGAttributeName()
85 mapAttributeToCSSProperty(propertyNameToIdMap, font_weightAttr); in cssPropertyIdForSVGAttributeName()
109 return propertyNameToIdMap->get(attrName.localName().impl()); in cssPropertyIdForSVGAttributeName()
DSVGStyledElement.h32 void mapAttributeToCSSProperty(HashMap<AtomicStringImpl*, int>* propertyNameToIdMap, const Qualifie…