Searched refs:m_styleSheet (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.cpp43 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...]
H A DXSLImportRule.h48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
63 RefPtr<XSLStyleSheet> m_styleSheet; member in class:WebCore::XSLImportRule
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleRuleImport.cpp54 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());
H A DCSSStyleSheet.h99 CSSStyleSheet* m_styleSheet; member in class:WebCore::CSSStyleSheet::RuleMutationScope
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();
H A DStyleRuleImport.h47 StyleSheetContents* styleSheet() const { return m_styleSheet.get(); }
79 RefPtr<StyleSheetContents> m_styleSheet; member in class:WebCore::StyleRuleImport
H A DCSSStyleSheet.cpp47 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; member in class:WebCore::StyleSheetCSSRuleList
H A DCSSGrammar.y491 if (parser->m_styleSheet)
492 parser->m_styleSheet->parserSetEncodingFromCharsetRule($3);
501 if ($2 && parser->m_styleSheet)
502 parser->m_styleSheet->parserAppendRule($2);
1760 if (parser->m_styleSheet)
1761 parser->m_styleSheet->parserSetUsesRemUnits(true);
H A DCSSParser.h383 StyleSheetContents* m_styleSheet; member in class:WebCore::CSSParser
493 void setStyleSheet(StyleSheetContents* styleSheet) { m_styleSheet = styleSheet; }
H A DCSSParser-in.cpp191 , m_styleSheet(0)
9725 PageConsole& console = m_styleSheet->singleOwnerDocument()->page()->console();
9734 console.addMessage(CSSMessageSource, WarningMessageLevel, message, m_styleSheet->baseURL().string(), lineNumberInStyleSheet + m_startPosition.m_line.zeroBasedInt() + 1, columnNumber + 1);
9789 if (m_styleSheet)
9790 m_styleSheet->setHasFontFaceRule(true);
9796 if (!m_styleSheet || !m_allowNamespaceDeclarations)
9799 m_styleSheet->parserAddNamespace(prefix, uri);
9806 if (!m_styleSheet)
9808 return QualifiedName(prefix, localName, m_styleSheet->determineNamespace(prefix));
9824 AtomicString determinedNamespace = namespacePrefix != nullAtom && m_styleSheet
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp260 , m_styleSheet(styleSheet)
265 RefPtr<InspectorStyleSheet> m_styleSheet; member in class:WebCore::InspectorCSSAgent::StyleSheetAction
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
[all...]

Completed in 347 milliseconds