Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGElement.cpp63 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap, const Qual… in mapAttributeToCSSProperty() argument
70 propertyNameToIdMap->set(attrName.localName().impl(), propertyId); in mapAttributeToCSSProperty()
396 static HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap = 0; in cssPropertyIdForSVGAttributeName() local
397 if (!propertyNameToIdMap) { in cssPropertyIdForSVGAttributeName()
398 propertyNameToIdMap = new HashMap<StringImpl*, CSSPropertyID>; in cssPropertyIdForSVGAttributeName()
400 mapAttributeToCSSProperty(propertyNameToIdMap, alignment_baselineAttr); in cssPropertyIdForSVGAttributeName()
401 mapAttributeToCSSProperty(propertyNameToIdMap, baseline_shiftAttr); in cssPropertyIdForSVGAttributeName()
402 mapAttributeToCSSProperty(propertyNameToIdMap, buffered_renderingAttr); in cssPropertyIdForSVGAttributeName()
403 mapAttributeToCSSProperty(propertyNameToIdMap, clipAttr); in cssPropertyIdForSVGAttributeName()
404 mapAttributeToCSSProperty(propertyNameToIdMap, clip_pathAttr); in cssPropertyIdForSVGAttributeName()
[all …]
DSVGFontFaceElement.cpp68 static HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap = 0; in cssPropertyIdForFontFaceAttributeName() local
69 if (!propertyNameToIdMap) { in cssPropertyIdForFontFaceAttributeName()
70 propertyNameToIdMap = new HashMap<StringImpl*, CSSPropertyID>; in cssPropertyIdForFontFaceAttributeName()
79 mapAttributeToCSSProperty(propertyNameToIdMap, font_familyAttr); in cssPropertyIdForFontFaceAttributeName()
80 mapAttributeToCSSProperty(propertyNameToIdMap, font_sizeAttr); in cssPropertyIdForFontFaceAttributeName()
81 mapAttributeToCSSProperty(propertyNameToIdMap, font_stretchAttr); in cssPropertyIdForFontFaceAttributeName()
82 mapAttributeToCSSProperty(propertyNameToIdMap, font_styleAttr); in cssPropertyIdForFontFaceAttributeName()
83 mapAttributeToCSSProperty(propertyNameToIdMap, font_variantAttr); in cssPropertyIdForFontFaceAttributeName()
84 mapAttributeToCSSProperty(propertyNameToIdMap, font_weightAttr); in cssPropertyIdForFontFaceAttributeName()
108 return propertyNameToIdMap->get(attrName.localName().impl()); in cssPropertyIdForFontFaceAttributeName()
DSVGElement.h46 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap, const Qual…