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

  /external/webkit/WebCore/bindings/objc/
DOMObject.h 47 @property(readonly, retain) DOMStyleSheet *sheet; variable
49 - (DOMStyleSheet *)sheet;
  /external/webkit/WebCore/bindings/js/
JSStyleSheetCustom.cpp 59 StyleSheet* sheet = impl(); local
62 unsigned length = sheet->length();
64 markDOMObjectWrapper(markStack, globalData, sheet->item(i));
66 // This prevents us from having a style sheet with a dangling ownerNode pointer.
67 // A better solution would be to handle this on the DOM side -- if the style sheet
69 // be to make ref/deref on the style sheet ref/deref the node instead, but there's
71 if (Node* ownerNode = sheet->ownerNode())
  /external/webkit/WebCore/loader/
CachedXSLStyleSheet.h 42 const String& sheet() const { return m_sheet; } function in class:WebCore::CachedXSLStyleSheet
  /external/webkit/WebCore/svg/
SVGStyleElement.cpp 93 StyleElement::sheet(this);
120 StyleSheet* SVGStyleElement::sheet() function in class:WebCore::SVGStyleElement
122 return StyleElement::sheet(this);
  /external/webkit/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 737 CSSStyleSheet* sheet = static_cast<CSSStyleSheet*>(stylesheet()); local
740 m_properties[i].value()->addSubresourceStyleURLs(urls, sheet);
    [all...]
CSSStyleSelector.cpp 451 // FIXME: This sucks! The user sheet is reparsed every time!
472 StyleSheet* sheet = styleSheets->item(i); local
473 if (sheet->isCSSStyleSheet() && !sheet->disabled())
474 m_authorStyle->addRulesFromSheet(static_cast<CSSStyleSheet*>(sheet), *m_medium, this);
509 CSSStyleSheet* sheet = CSSStyleSheet::create().releaseRef(); // leak the sheet on purpose local
510 sheet->parseString(str);
511 return sheet;
558 // No need to initialize quirks sheet yet as there are no quirk rules for elements allowed in simple default style
    [all...]
  /external/webkit/WebCore/dom/
ProcessingInstruction.h 48 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::ProcessingInstruction
81 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
89 void parseStyleSheet(const String& sheet);
StyleElement.cpp 36 StyleSheet* StyleElement::sheet(Element* e) function in class:WebCore::StyleElement
50 // If we're in document teardown, then we don't need to do any notification of our sheet's removal.
97 // If type is empty or CSS, this is a CSS style sheet.
DOMImplementation.cpp 270 RefPtr<CSSStyleSheet> sheet = CSSStyleSheet::create(); local
271 sheet->setMedia(MediaList::createAllowingDescriptionSyntax(sheet.get(), media));
272 return sheet.release();
Document.cpp 2106 const UserStyleSheet* sheet = sheets->at(i).get(); local
2646 StyleSheet* sheet = 0; local
    [all...]
  /external/webkit/WebCore/html/
HTMLStyleElement.cpp 57 StyleElement::sheet(this);
85 StyleSheet* HTMLStyleElement::sheet() function in class:WebCore::HTMLStyleElement
87 return StyleElement::sheet(this);
142 if (StyleSheet* styleSheet = const_cast<HTMLStyleElement*>(this)->sheet())
HTMLLinkElement.cpp 81 // If we change the disabled state while the sheet is still loading, then we have to
84 // Check #1: If the sheet becomes disabled while it was loading, and if it was either
85 // a main sheet or a sheet that was previously enabled via script, then we need
90 // Check #2: An alternate sheet becomes enabled while it is still loading.
94 // Check #3: A main sheet becomes enabled while it was still loading and
102 // If the sheet is already loading just bail.
106 // Load the sheet, since it's never been loaded before.
114 StyleSheet* HTMLLinkElement::sheet() const function in class:WebCore::HTMLLinkElement
241 // Add ourselves as a pending sheet, but only if we aren't an alternate
    [all...]
  /external/webkit/WebCore/xml/
XSLTProcessorLibxslt.cpp 56 SOFT_LINK(libxslt, xsltFreeStylesheet, void, (xsltStylesheetPtr sheet), (sheet))
170 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
180 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
256 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
263 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
280 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); local
281 if (!sheet) {
287 xmlChar* origMethod = sheet->method;
289 sheet->method = (xmlChar*)"html"
    [all...]
  /dalvik/libcore/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...]

Completed in 245 milliseconds