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

12

/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLLinkElementCustom.cpp39 if (StyleSheet* sheet = static_cast<HTMLLinkElement*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
H A DJSHTMLStyleElementCustom.cpp39 if (StyleSheet* sheet = static_cast<HTMLStyleElement*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
H A DJSProcessingInstructionCustom.cpp39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
H A DJSCSSImportRuleCustom.cpp39 if (CSSStyleSheet* sheet = static_cast<CSSImportRule*>(impl())->styleSheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
H A DJSStyleSheetCustom.cpp59 StyleSheet* sheet = impl(); local
62 unsigned length = sheet->length();
64 markDOMObjectWrapper(markStack, globalData, sheet->item(i));
H A DJSNodeCustom.cpp129 if (StyleSheet* sheet = static_cast<HTMLLinkElement*>(node)->sheet()) {
130 if (world->m_wrappers.get(sheet))
134 if (StyleSheet* sheet = static_cast<HTMLStyleElement*>(node)->sheet()) {
135 if (world->m_wrappers.get(sheet))
140 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(node)->sheet()) {
141 if (world->m_wrappers.get(sheet))
H A DJSStyleSheetListCustom.cpp60 return toJS(exec, element->sheet());
/external/webkit/Source/WebCore/css/
H A DStyleBase.cpp53 // Try to find the style sheet. If found look for its URL.
54 // If it has none, get the URL from the parent sheet or the parent node.
56 StyleSheet* sheet = const_cast<StyleBase*>(this)->stylesheet(); local
57 if (!sheet)
59 if (!sheet->finalURL().isNull())
60 return sheet->finalURL();
61 if (sheet->parent())
62 return sheet->parent()->baseURL();
63 if (!sheet->ownerNode())
65 return sheet
[all...]
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMObject.h47 @property(readonly, retain) DOMStyleSheet *sheet; variable
49 - (DOMStyleSheet *)sheet;
H A DDOMObject.mm70 - (DOMStyleSheet *)sheet
75 styleSheet = core(static_cast<DOMProcessingInstruction *>(self))->sheet();
77 styleSheet = core(static_cast<DOMHTMLLinkElement *>(self))->sheet();
79 styleSheet = core(static_cast<DOMHTMLStyleElement *>(self))->sheet();
/external/webkit/Source/WebCore/html/
H A DHTMLStyleElement.idl29 readonly attribute StyleSheet sheet;
H A DHTMLStyleElement.cpp104 if (StyleSheet* styleSheet = const_cast<HTMLStyleElement*>(this)->sheet())
110 StyleSheet* styleSheet = sheet();
119 if (StyleSheet* styleSheet = sheet())
H A DHTMLLinkElement.idl35 readonly attribute StyleSheet sheet;
H A DHTMLStyleElement.h40 using StyleElement::sheet;
/external/webkit/Source/WebCore/dom/
H A DProcessingInstruction.idl32 readonly attribute StyleSheet sheet;
H A DProcessingInstruction.cpp144 // to kick off import/include loads that can hang off some parent sheet.
205 void ProcessingInstruction::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet* sheet) argument
216 // getting the sheet text in "strict" mode. This enforces a valid CSS MIME
218 parseStyleSheet(sheet->sheetText(true));
225 void ProcessingInstruction::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
229 parseStyleSheet(sheet);
233 void ProcessingInstruction::parseStyleSheet(const String& sheet) argument
235 m_sheet->parseString(sheet, true);
244 void ProcessingInstruction::setCSSStyleSheet(PassRefPtr<CSSStyleSheet> sheet) argument
248 m_sheet = sheet;
[all...]
H A DProcessingInstruction.h48 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::ProcessingInstruction
74 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
82 void parseStyleSheet(const String& sheet);
H A DStyleElement.h40 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::StyleElement
/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/webkit/Source/WebCore/bindings/v8/custom/
H A DV8StyleSheetListCustom.cpp49 // Search style sheet.
55 return toV8(item->sheet());
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessorLibxslt.cpp57 SOFT_LINK(libxslt, xsltFreeStylesheet, void, (xsltStylesheetPtr sheet), (sheet))
192 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString) argument
202 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
281 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet) argument
288 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
305 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); local
306 if (!sheet) {
312 xmlChar* origMethod = sheet->method;
314 sheet
[all...]
H A DXSLImportRule.cpp55 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) argument
66 m_styleSheet->parseString(sheet);
106 // If the imported sheet is in the cache, then setXSLStyleSheet gets called,
107 // and the sheet even gets parsed (via parseString). In this case we have
/external/webkit/Source/WebCore/loader/cache/
H A DCachedXSLStyleSheet.h42 const String& sheet() const { return m_sheet; } function in class:WebCore::CachedXSLStyleSheet
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt_mac.h13 // Controller of the sheet used by LoginHandlerMac. Interface Builder wants
27 - (void)sheetDidEnd:(NSWindow*)sheet
/external/webkit/Source/WebCore/svg/
H A DSVGStyleElement.h38 using StyleElement::sheet;

Completed in 312 milliseconds

12