Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSMatrix.cpp61 … RefPtrWillBeRawPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(); in setMatrixValue() local
62 …if (BisonCSSParser::parseValue(styleDeclaration.get(), CSSPropertyWebkitTransform, string, true, H… in setMatrixValue()
65 …RefPtrWillBeRawPtr<CSSValue> value = styleDeclaration->getPropertyCSSValue(CSSPropertyWebkitTransf… in setMatrixValue()
DStylePropertySet.cpp340 void MutableStylePropertySet::parseDeclaration(const String& styleDeclaration, StyleSheetContents* … in parseDeclaration() argument
351 parser.parseDeclaration(this, styleDeclaration, 0, contextStyleSheet); in parseDeclaration()
DStylePropertySet.h227 void parseDeclaration(const String& styleDeclaration, StyleSheetContents* contextStyleSheet);
/external/chromium_org/third_party/WebKit/Source/core/page/
DPageSerializer.cpp342 void PageSerializer::retrieveResourcesForProperties(const StylePropertySet* styleDeclaration, Docum… in retrieveResourcesForProperties() argument
344 if (!styleDeclaration) in retrieveResourcesForProperties()
350 unsigned propertyCount = styleDeclaration->propertyCount(); in retrieveResourcesForProperties()
352 RefPtrWillBeRawPtr<CSSValue> cssValue = styleDeclaration->propertyAt(i).value(); in retrieveResourcesForProperties()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.h96 void setRawTextFromStyleDeclaration(const String& styleDeclaration) in setRawTextFromStyleDeclaration()
101 ASSERT(end <= styleDeclaration.length()); in setRawTextFromStyleDeclaration()
102 rawText = styleDeclaration.substring(start, end - start); in setRawTextFromStyleDeclaration()
DInspectorStyleSheet.cpp641 String styleDeclaration; in populateAllProperties() local
642 bool isStyleTextKnown = styleText(&styleDeclaration); in populateAllProperties()
647 p.setRawTextFromStyleDeclaration(styleDeclaration); in populateAllProperties()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGFontFaceElement.cpp56 …RefPtrWillBeRawPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(HTM… in SVGFontFaceElement() local
57 m_fontFaceRule->setProperties(styleDeclaration.release()); in SVGFontFaceElement()