Searched defs:sheet (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DStyleElement.h44 CSSStyleSheet* sheet() const { return m_sheet.get(); } function in class:blink::StyleElement
H A DDocumentStyleSheetCollection.cpp67 // it is loading but we should still decide which style sheet set to use
73 StyleSheet* sheet = candidate.sheet(); local
74 if (!sheet)
79 collector.appendSheetForList(sheet);
81 collector.appendActiveStyleSheet(toCSSStyleSheet(sheet));
H A DStyleSheetCandidate.cpp83 ASSERT(isEnabledAndLoading() || sheet());
89 StyleSheet* sheet = this->sheet(); local
90 if (!sheet || sheet->disabled() || !sheet->isCSSStyleSheet())
123 StyleSheet* StyleSheetCandidate::sheet() const function in class:blink::StyleSheetCandidate
127 return toHTMLLinkElement(node()).sheet();
129 return toHTMLStyleElement(node()).sheet();
131 return toSVGStyleElement(node()).sheet();
[all...]
H A DStyleSheetCollection.cpp60 void StyleSheetCollection::appendActiveStyleSheet(CSSStyleSheet* sheet) argument
62 m_activeAuthorStyleSheets.append(sheet);
65 void StyleSheetCollection::appendSheetForList(StyleSheet* sheet) argument
67 m_styleSheetsForStyleSheetList.append(sheet);
H A DDocumentStyleSheetCollector.cpp52 void DocumentStyleSheetCollector::appendActiveStyleSheet(CSSStyleSheet* sheet) argument
54 m_activeAuthorStyleSheets.append(sheet);
57 void DocumentStyleSheetCollector::appendSheetForList(StyleSheet* sheet) argument
59 m_styleSheetsForStyleSheetList.append(sheet);
H A DShadowTreeStyleSheetCollection.cpp53 StyleSheet* sheet = 0; local
63 sheet = element->sheet();
64 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
65 activeSheet = toCSSStyleSheet(sheet);
70 if (!enabledViaScript && sheet && !title.isEmpty()) {
83 if (sheet)
84 collection.appendSheetForList(sheet);
[all...]
H A DProcessingInstruction.h47 StyleSheet* sheet() const { return m_sheet.get(); } function in class:blink::FINAL
70 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) OVERRIDE;
74 void parseStyleSheet(const String& sheet);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DXSLStyleSheetResource.h41 const String& sheet() const { return m_sheet; } function in class:blink::FINAL
H A DCSSStyleSheetResource.cpp96 // Decode the data to find out the encoding and keep the sheet text around during checkNotify()
169 void CSSStyleSheetResource::saveParsedStyleSheet(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet) argument
171 ASSERT(sheet && sheet->isCacheable());
175 m_parsedStyleSheetCache = sheet;
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
H A Dconstrained_window_sheet_info.h14 // Information about a single sheet managed by
25 @property(nonatomic, readonly) id<ConstrainedWindowSheet> sheet; variable
30 // Initializes a info object with for the given |sheet| and associated
32 - (id)initWithSheet:(id<ConstrainedWindowSheet>)sheet
36 // Hides the sheet and the associated overlay window. Hiding is done in such
40 // Shows the sheet and the associated overlay window.
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFilterRule.h44 static PassRefPtrWillBeRawPtr<CSSFilterRule> create(StyleRuleFilter* rule, CSSStyleSheet* sheet) argument
46 return adoptRefWillBeNoop(new CSSFilterRule(rule, sheet));
H A DCSSImportRule.h35 static PassRefPtrWillBeRawPtr<CSSImportRule> create(StyleRuleImport* rule, CSSStyleSheet* sheet) argument
37 return adoptRefWillBeNoop(new CSSImportRule(rule, sheet));
H A DCSSMediaRule.h35 static PassRefPtrWillBeRawPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet) argument
37 return adoptRefWillBeNoop(new CSSMediaRule(rule, sheet));
H A DCSSPageRule.h37 static PassRefPtrWillBeRawPtr<CSSPageRule> create(StyleRulePage* rule, CSSStyleSheet* sheet) argument
39 return adoptRefWillBeNoop(new CSSPageRule(rule, sheet));
H A DCSSSupportsRule.h40 static PassRefPtrWillBeRawPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet) argument
42 return adoptRefWillBeNoop(new CSSSupportsRule(rule, sheet));
H A DCSSViewportRule.h45 static PassRefPtrWillBeRawPtr<CSSViewportRule> create(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet) argument
47 return adoptRefWillBeNoop(new CSSViewportRule(viewportRule, sheet));
H A DCSSFontFaceRule.h36 static PassRefPtrWillBeRawPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet) argument
38 return adoptRefWillBeNoop(new CSSFontFaceRule(rule, sheet));
H A DCSSStyleRule.h36 static PassRefPtrWillBeRawPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet) argument
38 return adoptRefWillBeNoop(new CSSStyleRule(rule, sheet));
H A DCSSViewportRule.cpp41 CSSViewportRule::CSSViewportRule(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet) argument
42 : CSSRule(sheet)
H A DTreeBoundaryCrossingRules.h55 static PassOwnPtrWillBeRawPtr<RuleSubSet> create(CSSStyleSheet* sheet, unsigned index, PassOwnPtrWillBeRawPtr<RuleSet> rules) argument
57 return adoptPtrWillBeNoop(new RuleSubSet(sheet, index, rules));
67 RuleSubSet(CSSStyleSheet* sheet, unsigned index, PassOwnPtrWillBeRawPtr<RuleSet> rules) argument
68 : parentStyleSheet(sheet)
H A DCSSDefaultStyleSheets.cpp67 RefPtrWillBeRawPtr<StyleSheetContents> sheet = StyleSheetContents::create(CSSParserContext(UASheetMode, 0)); local
68 sheet->parseString(str);
71 WTF_ANNOTATE_LEAKING_OBJECT_PTR(sheet.get());
72 return sheet.release();
155 // FIXME: We should assert that the sheet only styles SVG elements.
163 // FIXME: We should assert that the sheet only styles MathML elements.
172 // FIXME: We should assert that this sheet only contains rules for <video> and <audio>.
181 // FIXME: This only works because we Force recalc the entire document so the new sheet
H A DCSSKeyframesRule.h77 static PassRefPtrWillBeRawPtr<CSSKeyframesRule> create(StyleRuleKeyframes* rule, CSSStyleSheet* sheet) argument
79 return adoptRefWillBeNoop(new CSSKeyframesRule(rule, sheet));
H A DStyleRuleImport.h44 void setParentStyleSheet(StyleSheetContents* sheet) { ASSERT(sheet); m_parentStyleSheet = sheet; } argument
65 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) OVERRIDE
67 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
H A DCSSStyleSheet.h149 inline CSSStyleSheet::RuleMutationScope::RuleMutationScope(CSSStyleSheet* sheet) argument
150 : m_styleSheet(sheet)
169 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sheet.isCSSStyleSheet());
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.cpp50 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
61 m_styleSheet->parseString(sheet);

Completed in 218 milliseconds

12