HomeSort by relevance Sort by last modified time
    Searched refs:sheet (Results 1 - 25 of 77) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSHostRule.h 32 static PassRefPtr<CSSHostRule> create(StyleRuleHost* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSHostRule(rule, sheet)); }
CSSRegionRule.h 42 static PassRefPtr<CSSRegionRule> create(StyleRuleRegion* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSRegionRule(rule, sheet)); }
CSSSupportsRule.h 41 static PassRefPtr<CSSSupportsRule> create(StyleRuleSupports* rule, CSSStyleSheet* sheet)
43 return adoptRef(new CSSSupportsRule(rule, sheet));
CSSMediaRule.h 35 static PassRefPtr<CSSMediaRule> create(StyleRuleMedia* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSMediaRule(rule, sheet)); }
StyleRuleImport.h 43 void setParentStyleSheet(StyleSheetContents* sheet) { ASSERT(sheet); m_parentStyleSheet = sheet; }
61 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet)
63 m_ownerRule->setCSSStyleSheet(href, baseURL, charset, sheet);
CSSFilterRule.h 43 static PassRefPtr<CSSFilterRule> create(StyleRuleFilter* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSFilterRule(rule, sheet)); }
CSSFontFaceRule.h 35 static PassRefPtr<CSSFontFaceRule> create(StyleRuleFontFace* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSFontFaceRule(rule, sheet)); }
CSSImportRule.h 36 static PassRefPtr<CSSImportRule> create(StyleRuleImport* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSImportRule(rule, sheet)); }
CSSPageRule.h 36 static PassRefPtr<CSSPageRule> create(StyleRulePage* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSPageRule(rule, sheet)); }
CSSStyleRule.h 35 static PassRefPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSStyleRule(rule, sheet)); }
CSSViewportRule.h 44 static PassRefPtr<CSSViewportRule> create(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet)
46 return adoptRef(new CSSViewportRule(viewportRule, sheet));
StyleRuleImport.cpp 110 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;
123 // if the import rule is issued dynamically, the sheet may be
124 // removed from the pending sheet count, so let the doc know
125 // the sheet being imported is pending
    [all...]
CSSViewportRule.cpp 41 CSSViewportRule::CSSViewportRule(StyleRuleViewport* viewportRule, CSSStyleSheet* sheet)
42 : CSSRule(sheet)
  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_sheet_controller.h 17 // 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...]
constrained_window_sheet_info.h 14 // 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.
constrained_window_mac.h 34 id<ConstrainedWindowSheet> sheet);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ProcessingInstruction.idl 29 readonly attribute StyleSheet sheet;
StyleSheetCollection.cpp 98 StyleSheet* sheet = 0; local
111 sheet = pi->sheet();
112 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
113 activeSheet = static_cast<CSSStyleSheet*>(sheet);
123 // it is loading but we should still decide which style sheet set to use
134 sheet = linkElement->sheet();
    [all...]
ProcessingInstruction.cpp 138 // to kick off import/include loads that can hang off some parent sheet.
197 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CSSStyleSheetResource* sheet)
217 // getting the sheet text in "strict" mode. This enforces a valid CSS MIME
219 parseStyleSheet(sheet->sheetText(true));
222 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
226 parseStyleSheet(sheet);
229 void ProcessingInstruction::parseStyleSheet(const String& sheet)
232 static_cast<CSSStyleSheet*>(m_sheet.get())->contents()->parseString(sheet);
234 static_cast<XSLStyleSheet*>(m_sheet.get())->parseString(sheet);
248 void ProcessingInstruction::setCSSStyleSheet(PassRefPtr<CSSStyleSheet> sheet)
    [all...]
ProcessingInstruction.h 48 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::FINAL
72 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
78 void parseStyleSheet(const String& sheet);
StyleElement.h 42 CSSStyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::StyleElement
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.idl 28 readonly attribute StyleSheet sheet;
  /external/chromium/chrome/browser/ui/cocoa/
constrained_window_mac.h 31 // 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/loader/cache/
XSLStyleSheetResource.h 40 const String& sheet() const { return m_sheet; } function in class:WebCore::XSLStyleSheetResource
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessorLibxslt.cpp 171 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
181 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
260 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
267 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
284 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); local
285 if (!sheet) {
292 xmlChar* origMethod = sheet->method;
294 sheet->method = (xmlChar*)"html";
301 sheet->omitXmlDeclaration = true;
303 xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDoc)
    [all...]

Completed in 692 milliseconds

1 2 3 4