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

123

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentStyleSheetCollection.cpp61 StyleSheet* sheet = 0; local
74 sheet = pi->sheet();
75 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
76 activeSheet = toCSSStyleSheet(sheet);
86 // it is loading but we should still decide which style sheet set to use
97 sheet = linkElement->sheet();
[all...]
H A DProcessingInstruction.idl28 readonly attribute StyleSheet sheet;
H A DShadowTreeStyleSheetCollection.cpp54 StyleSheet* sheet = 0; local
64 sheet = toHTMLStyleElement(node)->sheet();
65 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
66 activeSheet = toCSSStyleSheet(sheet);
72 if (!enabledViaScript && sheet && !title.isEmpty()) {
86 if (sheet)
87 collection.appendSheetForList(sheet);
[all...]
H A DProcessingInstruction.cpp115 // to kick off import/include loads that can hang off some parent sheet.
167 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) argument
187 // getting the sheet text in "strict" mode. This enforces a valid CSS MIME
189 parseStyleSheet(sheet->sheetText(true));
192 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
196 parseStyleSheet(sheet);
199 void ProcessingInstruction::parseStyleSheet(const String& sheet) argument
202 toCSSStyleSheet(m_sheet.get())->contents()->parseString(sheet);
204 toXSLStyleSheet(m_sheet.get())->parseString(sheet);
215 void ProcessingInstruction::setCSSStyleSheet(PassRefPtr<CSSStyleSheet> sheet) argument
[all...]
H A DProcessingInstruction.h47 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::FINAL
68 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
74 void parseStyleSheet(const String& 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.
H A Dconstrained_window_mac.h34 id<ConstrainedWindowSheet> sheet);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSRegionRule.h42 static PassRefPtr<CSSRegionRule> create(StyleRuleRegion* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSRegionRule(rule, sheet)); } argument
H A DStyleRuleImport.h43 void setParentStyleSheet(StyleSheetContents* sheet) { ASSERT(sheet); m_parentStyleSheet = sheet; } argument
61 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet) argument
63 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
H A DCSSMediaRule.h35 static PassRefPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSMediaRule(rule, sheet)); } argument
H A DCSSSupportsRule.h41 static PassRefPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet) argument
43 return adoptRef(new CSSSupportsRule(rule, sheet));
H A DStyleRuleImport.cpp110 for (StyleSheetContents* sheet = m_parentStyleSheet; sheet; sheet = sheet->parentStyleSheet()) {
111 if (equalIgnoringFragmentIdentifier(absURL, sheet->baseURL())
112 || equalIgnoringFragmentIdentifier(absURL, document->completeURL(sheet->originalURL())))
114 rootSheet = sheet;
120 // if the import rule is issued dynamically, the sheet may be
121 // removed from the pending sheet count, so let the doc know
122 // the sheet bein
[all...]
H A DCSSFilterRule.h43 static PassRefPtr<CSSFilterRule> create(StyleRuleFilter* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSFilterRule(rule, sheet)); } argument
H A DCSSFontFaceRule.h35 static PassRefPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSFontFaceRule(rule, sheet)); } argument
H A DCSSImportRule.h36 static PassRefPtr<CSSImportRule> create(StyleRuleImport* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSImportRule(rule, sheet)); } argument
H A DCSSPageRule.h36 static PassRefPtr<CSSPageRule> create(StyleRulePage* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSPageRule(rule, sheet)); } argument
H A DCSSStyleRule.h35 static PassRefPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSStyleRule(rule, sheet)); } argument
H A DCSSViewportRule.cpp41 CSSViewportRule::CSSViewportRule(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet) argument
42 : CSSRule(sheet)
H A DCSSViewportRule.h44 static PassRefPtr<CSSViewportRule> create(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet) argument
46 return adoptRef(new CSSViewportRule(viewportRule, sheet));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLStyleElement.idl28 readonly attribute StyleSheet sheet;
/external/chromium/chrome/browser/ui/cocoa/
H A Dconstrained_window_mac.h31 // itself later. Note that you MUST close the sheet belonging to your delegate
40 // Returns true if this delegate's sheet is currently showing.
49 // Subclass this for a dialog delegate that displays a system sheet such as
58 void set_sheet(id sheet);
59 id sheet() { return systemSheet_; } function in class:ConstrainedWindowMacDelegateSystemSheet
62 // Array's contents should be the arguments passed to the system sheet's
67 // Subclasses may override this if they show a system sheet which takes
79 // Subclass this for a dialog delegate that displays a custom sheet, e.g. loaded
90 void init(NSWindow* sheet, id delegate, SEL didEndSelector);
91 void set_sheet(NSWindow* sheet);
92 NSWindow* sheet() { return customSheet_; } function in class:ConstrainedWindowMacDelegateCustomSheet
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DScopedStyleResolver.cpp45 ContainerNode* ScopedStyleResolver::scopingNodeFor(Document& document, const CSSStyleSheet* sheet) argument
47 ASSERT(sheet);
49 Document* sheetDocument = sheet->ownerDocument();
52 Node* ownerNode = sheet->ownerNode();
70 void ScopedStyleResolver::addRulesFromSheet(StyleSheetContents* sheet, const MediaQueryEvaluator& medium, StyleResolver* resolver) argument
72 m_authorStyleSheets.append(sheet);
74 AddRuleFlags addRuleFlags = resolver->document().securityOrigin()->canRequest(sheet->baseURL()) ? RuleHasDocumentSecurityOrigin : RuleHasNoSpecialState;
75 const RuleSet& ruleSet = sheet->ensureRuleSet(medium, addRuleFlags);
77 resolver->processScopedRules(ruleSet, sheet->baseURL(), &m_scopingNode);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DXSLStyleSheetResource.h41 const String& sheet() const { return m_sheet; } function in class:WebCore::XSLStyleSheetResource
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTProcessorLibxslt.cpp167 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString) argument
177 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
256 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet) argument
263 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
280 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); local
281 if (!sheet) {
288 xmlChar* origMethod = sheet->method;
290 sheet->method = (xmlChar*)"html";
297 sheet->omitXmlDeclaration = true;
299 xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDo
[all...]

Completed in 330 milliseconds

123