Home
last modified time | relevance | path

Searched refs:styleDeclaration (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSVariablesMap.h45 static PassRefPtr<CSSVariablesMap> create(CSSStyleDeclaration* styleDeclaration) in create() argument
47 return adoptRef(new CSSVariablesMap(styleDeclaration)); in create()
62 explicit CSSVariablesMap(CSSStyleDeclaration* styleDeclaration) in CSSVariablesMap() argument
63 : m_styleDeclaration(styleDeclaration) in CSSVariablesMap()
DCSSMatrix.cpp60 RefPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(); in setMatrixValue() local
61 …if (CSSParser::parseValue(styleDeclaration.get(), CSSPropertyWebkitTransform, string, true, HTMLSt… in setMatrixValue()
64 RefPtr<CSSValue> value = styleDeclaration->getPropertyCSSValue(CSSPropertyWebkitTransform); in setMatrixValue()
DStylePropertySet.cpp334 void MutableStylePropertySet::parseDeclaration(const String& styleDeclaration, StyleSheetContents* … in parseDeclaration() argument
345 parser.parseDeclaration(this, styleDeclaration, 0, contextStyleSheet); in parseDeclaration()
DStylePropertySet.h221 void parseDeclaration(const String& styleDeclaration, StyleSheetContents* contextStyleSheet);
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageSerializer.cpp334 void PageSerializer::retrieveResourcesForProperties(const StylePropertySet* styleDeclaration, Docum… in retrieveResourcesForProperties() argument
336 if (!styleDeclaration) in retrieveResourcesForProperties()
342 unsigned propertyCount = styleDeclaration->propertyCount(); in retrieveResourcesForProperties()
344 RefPtr<CSSValue> cssValue = styleDeclaration->propertyAt(i).value(); in retrieveResourcesForProperties()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.h116 void setRawTextFromStyleDeclaration(const String& styleDeclaration) in setRawTextFromStyleDeclaration()
121 ASSERT(end <= styleDeclaration.length()); in setRawTextFromStyleDeclaration()
122 rawText = styleDeclaration.substring(start, end - start); in setRawTextFromStyleDeclaration()
DInspectorStyleSheet.cpp666 String styleDeclaration; in populateAllProperties() local
667 bool isStyleTextKnown = styleText(&styleDeclaration); in populateAllProperties()
672 p.setRawTextFromStyleDeclaration(styleDeclaration); in populateAllProperties()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGFontFaceElement.cpp54 …RefPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(HTMLStandardMod… in SVGFontFaceElement() local
55 m_fontFaceRule->setProperties(styleDeclaration.release()); in SVGFontFaceElement()