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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheet.cpp 21 #include "core/css/StyleSheet.h"
25 StyleSheet::~StyleSheet()
StyleSheet.h 34 class StyleSheet;
36 class StyleSheet : public RefCounted<StyleSheet> {
38 virtual ~StyleSheet();
43 virtual StyleSheet* parentStyleSheet() const { return 0; }
StyleSheetList.h 34 class StyleSheet;
42 StyleSheet* item(unsigned index);
53 const Vector<RefPtr<StyleSheet> >& styleSheets();
56 Vector<RefPtr<StyleSheet> > m_detachedStyleSheets;
StyleSheet.idl 25 ] interface StyleSheet {
29 readonly attribute StyleSheet parentStyleSheet;
StyleSheetList.idl 26 getter StyleSheet item(unsigned long index);
StyleSheetList.cpp 43 inline const Vector<RefPtr<StyleSheet> >& StyleSheetList::styleSheets()
61 StyleSheet* StyleSheetList::item(unsigned index)
63 const Vector<RefPtr<StyleSheet> >& sheets = styleSheets();
72 // IE also supports retrieving a stylesheet by name, using the name/id of the <style> tag
76 // But unicity of stylesheet ids is good practice anyway ;)
CSSStyleSheet.idl 24 ] interface CSSStyleSheet : StyleSheet {
CSSStyleSheet.h 25 #include "core/css/StyleSheet.h"
49 class CSSStyleSheet : public StyleSheet {
166 DEFINE_TYPE_CASTS(CSSStyleSheet, StyleSheet, sheet, sheet->isCSSStyleSheet(), sheet.isCSSStyleSheet());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ProcessingInstruction.idl 28 readonly attribute StyleSheet sheet;
DocumentStyleSheetCollection.h 36 class StyleSheet;
ShadowTreeStyleSheetCollection.h 37 class StyleSheet;
StyleSheetCollection.h 48 class StyleSheet;
63 Vector<RefPtr<StyleSheet> >& styleSheetsForStyleSheetList() { return m_styleSheetsForStyleSheetList; }
65 const Vector<RefPtr<StyleSheet> >& styleSheetsForStyleSheetList() const { return m_styleSheetsForStyleSheetList; }
70 void appendSheetForList(StyleSheet*);
73 Vector<RefPtr<StyleSheet> > m_styleSheetsForStyleSheetList;
ProcessingInstruction.h 32 class StyleSheet;
47 StyleSheet* sheet() const { return m_sheet.get(); }
80 RefPtr<StyleSheet> m_sheet;
StyleEngine.h 51 class StyleSheet;
91 const Vector<RefPtr<StyleSheet> >& styleSheetsForStyleSheetList(TreeScope&);
97 void modifiedStyleSheet(StyleSheet*);
ShadowTreeStyleSheetCollection.cpp 54 StyleSheet* sheet = 0;
106 // We should not destroy StyleResolver when we find any stylesheet update in a shadow tree.
DocumentStyleSheetCollection.cpp 61 StyleSheet* sheet = 0;
StyleElement.cpp 72 RefPtr<StyleSheet> removedSheet = m_sheet;
StyleEngine.cpp 153 const Vector<RefPtr<StyleSheet> >& StyleEngine::styleSheetsForStyleSheetList(TreeScope& treeScope)
246 // This method is called whenever a top-level stylesheet has finished loading.
280 void StyleEngine::modifiedStyleSheet(StyleSheet* sheet)
432 Vector<RefPtr<StyleSheet> > activeStyleSheets;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLStyleElement.idl 28 readonly attribute StyleSheet sheet;
HTMLLinkElement.idl 35 readonly attribute StyleSheet sheet;
HTMLStyleElement.h 32 class StyleSheet;
HTMLLinkElement.cpp 220 RefPtr<StyleSheet> removedSheet = sheet();
356 // Walk the URLs linked by the linked-to stylesheet.
357 if (CSSStyleSheet* styleSheet = const_cast<HTMLLinkElement*>(this)->sheet())
358 styleSheet->contents()->addSubresourceStyleURLs(urls);
420 RefPtr<StyleSheetContents> styleSheet = StyleSheetContents::create(href, parserContext);
424 m_sheet = CSSStyleSheet::create(styleSheet, m_owner);
428 styleSheet->parseAuthorStyleSheet(cachedStyleSheet, m_owner->document().securityOrigin());
431 styleSheet->notifyLoadedSheet(cachedStyleSheet);
432 styleSheet->checkLoaded();
434 if (styleSheet->isCacheable()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8StyleSheetCustom.cpp 40 v8::Handle<v8::Object> wrap(StyleSheet* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLStyleSheet.h 27 #include "core/css/StyleSheet.h"
39 class XSLStyleSheet : public StyleSheet {
58 // XSLTProcessor ensures that the stylesheet doesn't outlive its parent, in part by not exposing it to JavaScript.
123 DEFINE_TYPE_CASTS(XSLStyleSheet, StyleSheet, sheet, !sheet->isCSSStyleSheet(), !sheet.isCSSStyleSheet());
  /external/chromium-trace/trace-viewer/build/
parse_deps.py 75 class StyleSheet(object):
76 """Represents a stylesheet resource referenced by a module via the
84 return "StyleSheet(%s)" % self.name
167 - style_sheets: StyleSheet objects that this module relies on for styling
252 raise DepsException("Could not find a file for stylesheet %s" % name)
254 style_sheet = StyleSheet(name, filename, contents)
334 base.requireStylesheet(stylesheet);

Completed in 114 milliseconds

1 2 3