HomeSort by relevance Sort by last modified time
    Searched defs:sheet (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/bindings/objc/
DOMObject.h 47 @property(readonly, retain) DOMStyleSheet *sheet; variable
49 - (DOMStyleSheet *)sheet;
  /external/webkit/Source/WebCore/bindings/js/
JSStyleSheetCustom.cpp 59 StyleSheet* sheet = impl(); local
62 unsigned length = sheet->length();
64 markDOMObjectWrapper(markStack, globalData, sheet->item(i));
  /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...]
CSSMutableStyleDeclaration.cpp 772 CSSStyleSheet* sheet = static_cast<CSSStyleSheet*>(stylesheet()); local
775 m_properties[i].value()->addSubresourceStyleURLs(urls, sheet);
    [all...]
CSSStyleSelector.cpp 475 // FIXME: This sucks! The user sheet is reparsed every time!
499 StyleSheet* sheet = styleSheets->item(i); local
500 if (sheet->isCSSStyleSheet() && !sheet->disabled())
501 m_authorStyle->addRulesFromSheet(static_cast<CSSStyleSheet*>(sheet), *m_medium, this);
506 // Usually there are no sibling rules in the default style but the MathML sheet has some.
547 CSSStyleSheet* sheet = CSSStyleSheet::create().releaseRef(); // leak the sheet on purpose local
548 sheet->parseString(str);
549 return sheet;
    [all...]
  /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/dom/
StyleElement.h 40 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::StyleElement
DOMImplementation.cpp 285 RefPtr<CSSStyleSheet> sheet = CSSStyleSheet::create(); local
286 sheet->setMedia(MediaList::createAllowingDescriptionSyntax(sheet.get(), media));
287 return sheet.release();
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);
Document.cpp 2448 const UserStyleSheet* sheet = sheets->at(i).get(); local
3055 StyleSheet* sheet = 0; local
    [all...]
  /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/libxslt/libxslt/
functions.c 597 xsltStylesheetPtr sheet; local
605 sheet = tctxt->style;
606 if (sheet == NULL)
608 formatValues = sheet->decimalFormat;
614 formatValues = xsltDecimalFormatGetByName(sheet, decimalObj->stringval);
747 xsltStylesheetPtr sheet; local
756 sheet = tctxt->style;
758 sheet = NULL;
759 if ((sheet != NULL) && (sheet->doc != NULL) &
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLLinkElement.cpp 92 // If we change the disabled state while the sheet is still loading, then we have to
95 // Check #1: The sheet becomes disabled while loading.
99 // Check #2: An alternate sheet becomes enabled while it is still loading.
103 // Check #3: A main sheet becomes enabled while it was still loading and
111 // If the sheet is already loading just bail.
115 // Load the sheet, since it's never been loaded before.
123 StyleSheet* HTMLLinkElement::sheet() const function in class:WebCore::HTMLLinkElement
360 void HTMLLinkElement::setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet* sheet)
388 String sheetText = sheet->sheetText(enforceMIMEType, &validMIMEType);
503 if (StyleSheet* styleSheet = const_cast<HTMLLinkElement*>(this)->sheet())
    [all...]
  /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...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTemplateElement.java 727 Stylesheet sheet=getStylesheet(); local
728 return (sheet==null) ? null : sheet.getHref();
    [all...]
Stylesheet.java 1318 Stylesheet sheet = this; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 

Completed in 2063 milliseconds