OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:styleDeclaration
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSVariablesMap.h
45
static PassRefPtr<CSSVariablesMap> create(CSSStyleDeclaration*
styleDeclaration
)
47
return adoptRef(new CSSVariablesMap(
styleDeclaration
));
62
explicit CSSVariablesMap(CSSStyleDeclaration*
styleDeclaration
)
63
: m_styleDeclaration(
styleDeclaration
)
CSSMatrix.cpp
60
RefPtr<MutableStylePropertySet>
styleDeclaration
= MutableStylePropertySet::create();
61
if (CSSParser::parseValue(
styleDeclaration
.get(), CSSPropertyWebkitTransform, string, true, HTMLStandardMode, 0)) {
64
RefPtr<CSSValue> value =
styleDeclaration
->getPropertyCSSValue(CSSPropertyWebkitTransform);
StylePropertySet.h
221
void parseDeclaration(const String&
styleDeclaration
, StyleSheetContents* contextStyleSheet);
StylePropertySet.cpp
334
void MutableStylePropertySet::parseDeclaration(const String&
styleDeclaration
, StyleSheetContents* contextStyleSheet)
345
parser.parseDeclaration(this,
styleDeclaration
, 0, contextStyleSheet);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.h
116
void setRawTextFromStyleDeclaration(const String&
styleDeclaration
)
121
ASSERT(end <=
styleDeclaration
.length());
122
rawText =
styleDeclaration
.substring(start, end - start);
InspectorStyleSheet.cpp
666
String
styleDeclaration
;
667
bool isStyleTextKnown = styleText(&
styleDeclaration
);
672
p.setRawTextFromStyleDeclaration(
styleDeclaration
);
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp
334
void PageSerializer::retrieveResourcesForProperties(const StylePropertySet*
styleDeclaration
, Document* document)
336
if (!
styleDeclaration
)
342
unsigned propertyCount =
styleDeclaration
->propertyCount();
344
RefPtr<CSSValue> cssValue =
styleDeclaration
->propertyAt(i).value();
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceElement.cpp
54
RefPtr<MutableStylePropertySet>
styleDeclaration
= MutableStylePropertySet::create(HTMLStandardMode);
55
m_fontFaceRule->setProperties(
styleDeclaration
.release());
Completed in 57 milliseconds