OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_styleSheet
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.cpp
43
if (
m_styleSheet
)
44
m_styleSheet
->setParentStyleSheet(0);
52
if (
m_styleSheet
)
53
m_styleSheet
->setParentStyleSheet(0);
55
m_styleSheet
= XSLStyleSheet::create(this, href, baseURL);
59
m_styleSheet
->setParentStyleSheet(parent);
61
m_styleSheet
->parseString(sheet);
70
return (m_loading || (
m_styleSheet
&&
m_styleSheet
->isLoading()));
110
if (!
m_styleSheet
)
[
all
...]
XSLImportRule.h
48
XSLStyleSheet* styleSheet() const { return
m_styleSheet
.get(); }
63
RefPtr<XSLStyleSheet>
m_styleSheet
;
/external/chromium_org/third_party/WebKit/Source/core/css/
StyleRuleImport.cpp
54
if (
m_styleSheet
)
55
m_styleSheet
->clearOwnerRule();
62
if (
m_styleSheet
)
63
m_styleSheet
->clearOwnerRule();
70
m_styleSheet
= StyleSheetContents::create(this, href, context);
73
m_styleSheet
->parseAuthorStyleSheet(cachedStyleSheet, document ? document->securityOrigin() : 0);
85
return m_loading || (
m_styleSheet
&&
m_styleSheet
->isLoading());
CSSStyleSheet.h
99
CSSStyleSheet*
m_styleSheet
;
147
:
m_styleSheet
(sheet)
149
if (
m_styleSheet
)
150
m_styleSheet
->willMutateRules();
154
:
m_styleSheet
(rule ? rule->parentStyleSheet() : 0)
156
if (
m_styleSheet
)
157
m_styleSheet
->willMutateRules();
162
if (
m_styleSheet
)
163
m_styleSheet
->didMutateRules();
StyleRuleImport.h
47
StyleSheetContents* styleSheet() const { return
m_styleSheet
.get(); }
79
RefPtr<StyleSheetContents>
m_styleSheet
;
CSSStyleSheet.cpp
47
StyleSheetCSSRuleList(CSSStyleSheet* sheet) :
m_styleSheet
(sheet) { }
50
virtual void ref() {
m_styleSheet
->ref(); }
51
virtual void deref() {
m_styleSheet
->deref(); }
53
virtual unsigned length() const { return
m_styleSheet
->length(); }
54
virtual CSSRule* item(unsigned index) const { return
m_styleSheet
->item(index); }
56
virtual CSSStyleSheet* styleSheet() const { return
m_styleSheet
; }
58
CSSStyleSheet*
m_styleSheet
;
CSSGrammar.y
491
if (parser->
m_styleSheet
)
492
parser->
m_styleSheet
->parserSetEncodingFromCharsetRule($3);
501
if ($2 && parser->
m_styleSheet
)
502
parser->
m_styleSheet
->parserAppendRule($2);
[
all
...]
CSSParser.h
383
StyleSheetContents*
m_styleSheet
;
493
void setStyleSheet(StyleSheetContents* styleSheet) {
m_styleSheet
= styleSheet; }
CSSParser-in.cpp
191
,
m_styleSheet
(0)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp
260
,
m_styleSheet
(styleSheet)
265
RefPtr<InspectorStyleSheet>
m_styleSheet
;
320
if (!
m_styleSheet
->getText(&m_oldText))
327
if (
m_styleSheet
->setText(m_oldText, exceptionState)) {
328
m_styleSheet
->reparseStyleSheet(m_oldText);
336
if (
m_styleSheet
->setText(m_text, exceptionState)) {
337
m_styleSheet
->reparseStyleSheet(m_text);
345
return String::format("SetStyleSheetText %s",
m_styleSheet
->id().utf8().data());
384
return
m_styleSheet
->setStyleText(m_cssId, m_oldText, &placeholder, exceptionState);
389
return
m_styleSheet
->setStyleText(m_cssId, m_text, &m_oldText, exceptionState)
[
all
...]
Completed in 848 milliseconds