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

1 2 3

  /external/webkit/Source/WebCore/css/
StyleBase.cpp 53 // 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->ownerNode()->document()->baseURL()
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLLinkElementCustom.cpp 39 if (StyleSheet* sheet = static_cast<HTMLLinkElement*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSHTMLStyleElementCustom.cpp 39 if (StyleSheet* sheet = static_cast<HTMLStyleElement*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSProcessingInstructionCustom.cpp 39 if (StyleSheet* sheet = static_cast<ProcessingInstruction*>(impl())->sheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSCSSImportRuleCustom.cpp 39 if (CSSStyleSheet* sheet = static_cast<CSSImportRule*>(impl())->styleSheet())
40 markDOMObjectWrapper(markStack, *Heap::heap(this)->globalData(), sheet);
JSStyleSheetCustom.cpp 59 StyleSheet* sheet = impl(); local
62 unsigned length = sheet->length();
64 markDOMObjectWrapper(markStack, globalData, sheet->item(i));
JSNodeCustom.cpp 129 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))
  /external/webkit/Source/WebCore/bindings/objc/
DOMObject.h 47 @property(readonly, retain) DOMStyleSheet *sheet; variable
49 - (DOMStyleSheet *)sheet;
DOMObject.mm 70 - (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/
HTMLStyleElement.idl 29 readonly attribute StyleSheet sheet;
HTMLStyleElement.cpp 104 if (StyleSheet* styleSheet = const_cast<HTMLStyleElement*>(this)->sheet())
110 StyleSheet* styleSheet = sheet();
119 if (StyleSheet* styleSheet = sheet())
HTMLStyleElement.h 40 using StyleElement::sheet;
HTMLLinkElement.idl 35 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/webkit/Source/WebCore/dom/
ProcessingInstruction.idl 32 readonly attribute StyleSheet sheet;
ProcessingInstruction.h 48 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);
ProcessingInstruction.cpp 144 // 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)
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)
229 parseStyleSheet(sheet);
233 void ProcessingInstruction::parseStyleSheet(const String& sheet)
235 m_sheet->parseString(sheet, true);
244 void ProcessingInstruction::setCSSStyleSheet(PassRefPtr<CSSStyleSheet> sheet)
248 m_sheet = sheet;
    [all...]
StyleElement.h 40 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::StyleElement
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8StyleSheetListCustom.cpp 49 // Search style sheet.
55 return toV8(item->sheet());
  /external/webkit/Source/WebCore/loader/cache/
CachedXSLStyleSheet.h 42 const String& sheet() const { return m_sheet; } function in class:WebCore::CachedXSLStyleSheet
  /external/webkit/Source/WebCore/xml/
XSLTProcessorLibxslt.cpp 57 SOFT_LINK(libxslt, xsltFreeStylesheet, void, (xsltStylesheetPtr sheet), (sheet))
192 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
202 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
281 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
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->method = (xmlChar*)"html"
    [all...]
XSLImportRule.h 61 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
XSLImportRule.cpp 55 void XSLImportRule::setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet)
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/svg/
SVGStyleElement.h 38 using StyleElement::sheet;
  /external/chromium/chrome/browser/ui/login/
login_prompt_mac.h 13 // Controller of the sheet used by LoginHandlerMac. Interface Builder wants
27 - (void)sheetDidEnd:(NSWindow*)sheet

Completed in 162 milliseconds

1 2 3