Searched refs:sheet (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DProcessingInstruction.idl28 readonly attribute StyleSheet 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 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 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 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 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 DProcessingInstruction.cpp140 // can hang off some parent sheet.
187 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) argument
207 // getting the sheet text in "strict" mode. This enforces a valid CSS MIME
209 parseStyleSheet(sheet->sheetText(true));
212 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
222 parseStyleSheet(sheet);
225 void ProcessingInstruction::parseStyleSheet(const String& sheet) argument
228 toCSSStyleSheet(m_sheet.get())->contents()->parseString(sheet);
230 toXSLStyleSheet(m_sheet.get())->parseString(sheet);
241 void ProcessingInstruction::setCSSStyleSheet(PassRefPtrWillBeRawPtr<CSSStyleSheet> sheet) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLStyleElement.idl27 readonly attribute StyleSheet sheet;
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
H A Dconstrained_window_sheet_controller.h17 // tab can have a single sheet and only the active tab's sheet will be visible.
26 // Returns a sheet controller for |parentWindow|. If a sheet controller does not
31 // Find a controller that's managing the given sheet. If no such controller
34 controllerForSheet:(id<ConstrainedWindowSheet>)sheet;
36 // Find the sheet attached to the given overlay window.
39 // Shows the given sheet over |parentView|. If |parentView| is not the active
40 // view then the sheet is not shown until the |parentView| becomes active.
41 - (void)showSheet:(id<ConstrainedWindowSheet>)sheet
[all...]
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/svg/
H A DSVGStyleElement.idl34 readonly attribute StyleSheet sheet;
/external/chromium_org/third_party/WebKit/Source/core/css/
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 DCSSSupportsRule.h40 static PassRefPtrWillBeRawPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet) argument
42 return adoptRefWillBeNoop(new CSSSupportsRule(rule, 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 DStyleRuleImport.cpp123 for (StyleSheetContents* sheet = m_parentStyleSheet; sheet; sheet = sheet->parentStyleSheet()) {
124 if (equalIgnoringFragmentIdentifier(absURL, sheet->baseURL())
125 || equalIgnoringFragmentIdentifier(absURL, document->completeURL(sheet->originalURL())))
127 rootSheet = sheet;
133 // if the import rule is issued dynamically, the sheet may be
134 // removed from the pending sheet count, so let the doc know
135 // the sheet bein
[all...]
H A DCSSFilterRule.h44 static PassRefPtrWillBeRawPtr<CSSFilterRule> create(StyleRuleFilter* rule, CSSStyleSheet* sheet) argument
46 return adoptRefWillBeNoop(new CSSFilterRule(rule, sheet));
H A DCSSFontFaceRule.h36 static PassRefPtrWillBeRawPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet) argument
38 return adoptRefWillBeNoop(new CSSFontFaceRule(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 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 DCSSViewportRule.h45 static PassRefPtrWillBeRawPtr<CSSViewportRule> create(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet) argument
47 return adoptRefWillBeNoop(new CSSViewportRule(viewportRule, 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
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessorLibxslt.cpp165 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString) argument
175 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
259 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet) argument
266 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
283 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_document.get(), m_stylesheet, m_stylesheetRootNode.get()); local
284 if (!sheet) {
291 xmlChar* origMethod = sheet->method;
293 sheet->method = (xmlChar*)"html";
301 sheet->omitXmlDeclaration = true;
303 xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDo
[all...]

Completed in 660 milliseconds

123