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

1 2 3

  /external/webkit/Source/WebCore/css/
CSSValueList.idl 31 ] CSSValueList : CSSValue {
33 CSSValue item(in unsigned long index);
CSSValueList.h 24 #include "CSSValue.h"
32 class CSSValueList : public CSSValue {
50 CSSValue* item(unsigned);
51 CSSValue* itemWithoutBoundsCheck(unsigned index) { return m_values[index].get(); }
53 void append(PassRefPtr<CSSValue>);
54 void prepend(PassRefPtr<CSSValue>);
55 bool removeAll(CSSValue*);
56 bool hasValue(CSSValue*);
72 Vector<RefPtr<CSSValue> > m_values;
CSSBorderImageValue.h 24 #include "CSSValue.h"
32 class CSSBorderImageValue : public CSSValue {
34 static PassRefPtr<CSSBorderImageValue> create(PassRefPtr<CSSValue> image, PassRefPtr<Rect> sliceRect, int horizontalRule, int verticalRule)
42 CSSValue* imageValue() const { return m_image.get(); }
47 RefPtr<CSSValue> m_image;
58 CSSBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<Rect> sliceRect, int horizontalRule, int verticalRule);
CSSReflectValue.h 30 #include "CSSValue.h"
38 class CSSReflectValue : public CSSValue {
41 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
48 CSSValue* mask() const { return m_mask.get(); }
56 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
67 RefPtr<CSSValue> m_mask;
CSSParser.h 48 class CSSValue;
77 void addProperty(int propId, PassRefPtr<CSSValue>, bool important);
87 PassRefPtr<CSSValue> parseAttr(CSSParserValueList* args);
89 PassRefPtr<CSSValue> parseBackgroundColor();
91 bool parseFillImage(RefPtr<CSSValue>&);
94 PassRefPtr<CSSValue> parseFillPositionComponent(CSSParserValueList*, unsigned& cumulativeFlags, FillPositionFlag& individualFlag);
95 PassRefPtr<CSSValue> parseFillPositionX(CSSParserValueList*);
96 PassRefPtr<CSSValue> parseFillPositionY(CSSParserValueList*);
97 void parseFillPosition(CSSParserValueList*, RefPtr<CSSValue>&, RefPtr<CSSValue>&)
    [all...]
CSSValue.h 34 class CSSValue : public RefCounted<CSSValue> {
45 virtual ~CSSValue() { }
CSSInheritedValue.h 24 #include "CSSValue.h"
29 class CSSInheritedValue : public CSSValue {
CSSStyleSelector.h 51 class CSSValue;
159 void applyPropertyToStyle(int id, CSSValue*, RenderStyle*);
186 static bool createTransformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperations& outOperations);
289 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*);
290 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*);
291 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*);
292 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*);
293 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
294 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*);
295 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*);
    [all...]
CSSComputedStyleDeclaration.h 50 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const;
59 PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID, EUpdateLayout) const;
60 PassRefPtr<CSSValue> getFontSizeCSSValuePreferringKeyword() const;
63 PassRefPtr<CSSValue> getSVGPropertyCSSValue(int propertyID, EUpdateLayout) const;
77 PassRefPtr<CSSValue> valueForShadow(const ShadowData*, int, RenderStyle*) const;