Home
last modified time | relevance | path

Searched refs:StyleBase (Results 1 – 25 of 42) sorted by relevance

12

/external/webkit/Source/WebCore/css/
DStyleBase.h39 class StyleBase : public RefCounted<StyleBase> {
41 virtual ~StyleBase() { } in ~StyleBase()
43 StyleBase* parent() const { return m_parent; } in parent()
44 void setParent(StyleBase* parent) { m_parent = parent; } in setParent()
76 StyleBase(StyleBase* parent) in StyleBase() function
82 StyleBase* m_parent;
DStyleList.h33 class StyleList : public StyleBase {
36 StyleBase* item(unsigned num) { return num < length() ? m_children[num].get() : 0; } in item()
38 void append(PassRefPtr<StyleBase>);
39 void insert(unsigned position, PassRefPtr<StyleBase>);
43 StyleList(StyleBase* parent) : StyleBase(parent) { } in StyleList()
45 Vector<RefPtr<StyleBase> > m_children;
DStyleBase.cpp32 String StyleBase::cssText() const in cssText()
37 void StyleBase::checkLoaded() in checkLoaded()
43 StyleSheet* StyleBase::stylesheet() in stylesheet()
45 StyleBase *b = this; in stylesheet()
51 KURL StyleBase::baseURL() const in baseURL()
56 StyleSheet* sheet = const_cast<StyleBase*>(this)->stylesheet(); in baseURL()
DStyleList.cpp31 void StyleList::append(PassRefPtr<StyleBase> child) in append()
33 StyleBase* c = child.get(); in append()
38 void StyleList::insert(unsigned position, PassRefPtr<StyleBase> child) in insert()
40 StyleBase* c = child.get(); in insert()
DCSSStyleSheet.cpp212 StyleBase* rule = item(i); in isLoading()
235 StyleBase* styleObject = this; in document()
253 StyleBase* root = this; in styleSheetChanged()
254 while (StyleBase* parent = root->parent()) in styleSheetChanged()
286 StyleBase* styleBase = styleSheet->item(i); in addSubresourceStyleURLs()
DMediaList.cpp61 : StyleBase(parentSheet) in MediaList()
67 : StyleBase(parentSheet) in MediaList()
85 : StyleBase(parentRule) in MediaList()
251 for (StyleBase* p = parent(); p; p = p->parent()) { in notifyChanged()
DCSSRule.h38 class CSSRule : public StyleBase {
67 : StyleBase(parent) in CSSRule()
DCSSRuleList.cpp43 StyleBase* style = list->item(i); in CSSRuleList()
62 StyleBase* rule = m_list->item(index); in item()
DCSSImportRule.cpp129 StyleBase* root = this; in insertedIntoParent()
130 for (StyleBase* curr = parent(); curr; curr = curr->parent()) { in insertedIntoParent()
DCSSRule.cpp31 StyleBase* curr = parent(); in parentStyleSheet()
DStyleSheet.cpp46 StyleSheet::StyleSheet(StyleBase* owner, const String& originalURL, const KURL& finalURL) in StyleSheet()
DStyleSheet.h71 StyleSheet(StyleBase* owner, const String& href, const KURL& finalURL);
DCSSStyleDeclaration.h36 class CSSStyleDeclaration : public StyleBase {
DMediaList.h37 class MediaList : public StyleBase {
DCSSStyleDeclaration.cpp37 : StyleBase(parent) in CSSStyleDeclaration()
DCSSParser.h53 class StyleBase; variable
323 Vector<RefPtr<StyleBase> > m_parsedStyleObjects;
DCSSMutableStyleDeclaration.cpp510 StyleBase* root = this; in setNeedsStyleRecalc()
511 while (StyleBase* parent = root->parent()) in setNeedsStyleRecalc()
/external/webkit/Source/WebCore/xml/
DXSLImportRule.cpp34 : StyleBase(parent) in XSLImportRule()
81 StyleBase* root = this; in loadSheet()
82 StyleBase* parent; in loadSheet()
DXSLStyleSheetLibxslt.cpp87 StyleBase* rule = item(i); in isLoading()
119 StyleBase* rule = item(i); in clearDocuments()
276 StyleBase* rule = item(i); in locateStylesheetSubResource()
DXSLImportRule.h37 class XSLImportRule : public StyleBase, private CachedResourceClient {
/external/webkit/Source/WebCore/inspector/
DInspectorCSSAgent.h50 class StyleBase; variable
57 static CSSStyleSheet* parentStyleSheet(StyleBase*);
58 static CSSStyleRule* asCSSStyleRule(StyleBase*);
DInspectorCSSAgent.cpp133 CSSStyleSheet* InspectorCSSAgent::parentStyleSheet(StyleBase* styleBase) in parentStyleSheet()
146 CSSStyleRule* InspectorCSSAgent::asCSSStyleRule(StyleBase* styleBase) in asCSSStyleRule()
DInspectorStyleSheet.cpp113 static PassRefPtr<CSSRuleList> asCSSRuleList(StyleBase* styleBase) in asCSSRuleList()
/external/webkit/Source/WebCore/bindings/v8/
DV8GCController.cpp289 static GroupId calculateGroupId(StyleBase* styleBase) in calculateGroupId()
292 StyleBase* current = styleBase; in calculateGroupId()
310 StyleBase* parent = current->parent(); in calculateGroupId()
354 … m_grouper.append(GrouperItem(calculateGroupId(static_cast<StyleBase*>(object)), wrapper)); in visitDOMWrapper()
/external/webkit/Source/WebCore/
DAndroid.mk95 css/StyleBase.cpp \

12