Searched refs:m_styleSheet (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XSLImportRule.cpp | 43 if (m_styleSheet) in ~XSLImportRule() 44 m_styleSheet->setParentStyleSheet(0); in ~XSLImportRule() 52 if (m_styleSheet) in setXSLStyleSheet() 53 m_styleSheet->setParentStyleSheet(0); in setXSLStyleSheet() 55 m_styleSheet = XSLStyleSheet::create(this, href, baseURL); in setXSLStyleSheet() 59 m_styleSheet->setParentStyleSheet(parent); in setXSLStyleSheet() 61 m_styleSheet->parseString(sheet); in setXSLStyleSheet() 70 return (m_loading || (m_styleSheet && m_styleSheet->isLoading())); in isLoading() 110 if (!m_styleSheet) in loadSheet()
|
D | XSLImportRule.h | 48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); } in styleSheet() 63 RefPtr<XSLStyleSheet> m_styleSheet; variable
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | StyleRuleImport.cpp | 54 if (m_styleSheet) in ~StyleRuleImport() 55 m_styleSheet->clearOwnerRule(); in ~StyleRuleImport() 62 if (m_styleSheet) in setCSSStyleSheet() 63 m_styleSheet->clearOwnerRule(); in setCSSStyleSheet() 70 m_styleSheet = StyleSheetContents::create(this, href, context); in setCSSStyleSheet() 73 … m_styleSheet->parseAuthorStyleSheet(cachedStyleSheet, document ? document->securityOrigin() : 0); in setCSSStyleSheet() 85 return m_loading || (m_styleSheet && m_styleSheet->isLoading()); in isLoading()
|
D | CSSStyleSheet.h | 99 CSSStyleSheet* m_styleSheet; 147 : m_styleSheet(sheet) in RuleMutationScope() 149 if (m_styleSheet) in RuleMutationScope() 150 m_styleSheet->willMutateRules(); in RuleMutationScope() 154 : m_styleSheet(rule ? rule->parentStyleSheet() : 0) in RuleMutationScope() 156 if (m_styleSheet) in RuleMutationScope() 157 m_styleSheet->willMutateRules(); in RuleMutationScope() 162 if (m_styleSheet) in ~RuleMutationScope() 163 m_styleSheet->didMutateRules(); in ~RuleMutationScope()
|
D | CSSStyleSheet.cpp | 47 StyleSheetCSSRuleList(CSSStyleSheet* sheet) : m_styleSheet(sheet) { } in StyleSheetCSSRuleList() 50 virtual void ref() { m_styleSheet->ref(); } in ref() 51 virtual void deref() { m_styleSheet->deref(); } in deref() 53 virtual unsigned length() const { return m_styleSheet->length(); } in length() 54 virtual CSSRule* item(unsigned index) const { return m_styleSheet->item(index); } in item() 56 virtual CSSStyleSheet* styleSheet() const { return m_styleSheet; } in styleSheet() 58 CSSStyleSheet* m_styleSheet; member in WebCore::StyleSheetCSSRuleList
|
D | StyleRuleImport.h | 47 StyleSheetContents* styleSheet() const { return m_styleSheet.get(); } in styleSheet() 79 RefPtr<StyleSheetContents> m_styleSheet; variable
|
D | 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); 1760 if (parser->m_styleSheet) 1761 parser->m_styleSheet->parserSetUsesRemUnits(true);
|
D | CSSParser.h | 383 StyleSheetContents* m_styleSheet; variable 493 void setStyleSheet(StyleSheetContents* styleSheet) { m_styleSheet = styleSheet; } in setStyleSheet()
|
D | CSSParser-in.cpp | 191 , m_styleSheet(0) in CSSParser() 9725 PageConsole& console = m_styleSheet->singleOwnerDocument()->page()->console(); in logError() 9734 …console.addMessage(CSSMessageSource, WarningMessageLevel, message, m_styleSheet->baseURL().string(… in logError() 9789 if (m_styleSheet) in createFontFaceRule() 9790 m_styleSheet->setHasFontFaceRule(true); in createFontFaceRule() 9796 if (!m_styleSheet || !m_allowNamespaceDeclarations) in addNamespace() 9799 m_styleSheet->parserAddNamespace(prefix, uri); in addNamespace() 9806 if (!m_styleSheet) in determineNameInNamespace() 9808 return QualifiedName(prefix, localName, m_styleSheet->determineNamespace(prefix)); in determineNameInNamespace() 9824 …AtomicString determinedNamespace = namespacePrefix != nullAtom && m_styleSheet ? m_styleSheet->det… in rewriteSpecifiersWithElementName() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorCSSAgent.cpp | 260 , m_styleSheet(styleSheet) in StyleSheetAction() 265 RefPtr<InspectorStyleSheet> m_styleSheet; member in WebCore::InspectorCSSAgent::StyleSheetAction 320 if (!m_styleSheet->getText(&m_oldText)) in perform() 327 if (m_styleSheet->setText(m_oldText, exceptionState)) { in undo() 328 m_styleSheet->reparseStyleSheet(m_oldText); in undo() 336 if (m_styleSheet->setText(m_text, exceptionState)) { in redo() 337 m_styleSheet->reparseStyleSheet(m_text); in redo() 345 return String::format("SetStyleSheetText %s", m_styleSheet->id().utf8().data()); in mergeId() 384 return m_styleSheet->setStyleText(m_cssId, m_oldText, &placeholder, exceptionState); in undo() 389 return m_styleSheet->setStyleText(m_cssId, m_text, &m_oldText, exceptionState); in redo() [all …]
|