HomeSort by relevance Sort by last modified time
    Searched full:cssvalue (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/webkit/Source/WebCore/css/
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;
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...]
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;
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...]
MediaQueryEvaluator.cpp 61 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix);
173 static bool parseAspectRatio(CSSValue* value, int& h, int& v)
178 CSSValue* i0 = valueList->itemWithoutBoundsCheck(0);
179 CSSValue* i1 = valueList->itemWithoutBoundsCheck(1);
180 CSSValue* i2 = valueList->itemWithoutBoundsCheck(2);
210 static bool numberValue(CSSValue* value, float& result)
220 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
230 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op)
243 static bool orientationMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix)
257 static bool aspect_ratioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op
    [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;
CSSValueList.cpp 49 CSSValue* CSSValueList::item(unsigned index)
61 void CSSValueList::append(PassRefPtr<CSSValue> val)
66 void CSSValueList::prepend(PassRefPtr<CSSValue> val)
71 bool CSSValueList::removeAll(CSSValue* val)
74 // FIXME: we should be implementing operator== to CSSValue and its derived classes
86 bool CSSValueList::hasValue(CSSValue* val)
88 // FIXME: we should be implementing operator== to CSSValue and its derived classes
CSSProperty.h 24 #include "CSSValue.h"
35 CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, bool implicit = false)
60 CSSValue* value() const { return m_value.get(); }
74 RefPtr<CSSValue> m_value;
CSSFunctionValue.h 29 #include "CSSValue.h"
36 class CSSFunctionValue : public CSSValue {
CSSInheritedValue.h 24 #include "CSSValue.h"
29 class CSSInheritedValue : public CSSValue {
CSSInitialValue.h 24 #include "CSSValue.h"
29 class CSSInitialValue : public CSSValue {
CSSValueList.idl 31 ] CSSValueList : CSSValue {
33 CSSValue item(in unsigned long index);
FontValue.h 24 #include "CSSValue.h"
33 class FontValue : public CSSValue {
CSSStyleApplyProperty.h 35 class CSSValue;
44 virtual void applyValue(CSSStyleSelector*, CSSValue*) const = 0;
64 void applyValue(CSSPropertyID property, CSSStyleSelector* selector, CSSValue* value) const
CSSStyleDeclaration.h 32 class CSSValue;
50 PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName);
56 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const = 0;
CSSValue.h 34 class CSSValue : public RefCounted<CSSValue> {
45 virtual ~CSSValue() { }
MediaQueryExp.h 32 #include "CSSValue.h"
49 CSSValue* value() const { return m_value.get(); }
77 RefPtr<CSSValue> m_value;
CSSLineBoxContainValue.h 29 #include "CSSValue.h"
42 class CSSLineBoxContainValue : public CSSValue {
CSSUnicodeRangeValue.h 29 #include "CSSValue.h"
35 class CSSUnicodeRangeValue : public CSSValue {
  /external/webkit/Source/WebCore/rendering/style/
StyleGeneratedImage.h 31 class CSSValue;
45 virtual PassRefPtr<CSSValue> cssValue() const;
StyleImage.h 27 #include "CSSValue.h"
36 class CSSValue;
50 virtual PassRefPtr<CSSValue> cssValue() const = 0;
  /external/webkit/Source/WebCore/svg/
SVGStylable.h 30 class CSSValue;
38 virtual PassRefPtr<CSSValue> getPresentationAttribute(const String&) = 0;
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8WebKitCSSMatrixConstructor.cpp 56 String cssValue;
58 cssValue = toWebCoreString(args[0]);
61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec);
V8CSSStyleDeclarationCustom.cpp 36 #include "CSSValue.h"
171 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValue(propInfo->propID);
172 if (cssValue) {
174 cssValue->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) {
176 cssValue.get())->getFloatValue(CSSPrimitiveValue::CSS_PX));
178 return v8StringOrNull(cssValue->cssText());

Completed in 491 milliseconds

1 2 3 4