Searched refs:CSSValue (Results 1 - 25 of 145) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBorderImage.h29 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice,
30 PassRefPtr<CSSValue> outset, PassRefPtr<CSSValue> repeat);
H A DCSSToStyleMap.h33 class CSSValue;
42 // CSSValue objects into their RenderStyle equivalents.
49 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const;
50 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const;
51 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const;
52 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const;
53 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const;
54 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
55 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const;
56 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) cons
[all...]
H A DCSSValueList.idl28 ] interface CSSValueList : CSSValue {
30 getter CSSValue item([Default=Undefined] optional unsigned long index);
H A DCSSValueList.h24 #include "core/css/CSSValue.h"
32 class CSSValueList : public CSSValue {
52 CSSValue* item(size_t index) { return index < m_values.size() ? m_values[index].get() : 0; }
53 const CSSValue* item(size_t index) const { return index < m_values.size() ? m_values[index].get() : 0; }
54 CSSValue* itemWithoutBoundsCheck(size_t index) { return m_values[index].get(); }
56 void append(PassRefPtr<CSSValue> value) { m_values.append(value); }
57 void prepend(PassRefPtr<CSSValue> value) { m_values.prepend(value); }
58 bool removeAll(CSSValue*);
59 bool hasValue(CSSValue*) const;
64 bool equals(const CSSValue
[all...]
H A DBasicShapeFunctions.h39 class CSSValue;
42 PassRefPtr<CSSValue> valueForBasicShape(const BasicShape*);
H A DCSSInheritedValue.h24 #include "core/css/CSSValue.h"
29 class CSSInheritedValue : public CSSValue {
42 : CSSValue(InheritedClass)
H A DCSSBorderImage.cpp25 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice,
26 PassRefPtr<CSSValue> outset, PassRefPtr<CSSValue> repeat)
H A DCSSCursorImageValue.h33 class CSSCursorImageValue : public CSSValue {
35 static PassRefPtr<CSSCursorImageValue> create(PassRefPtr<CSSValue> imageValue, bool hasHotSpot, const IntPoint& hotSpot)
62 CSSCursorImageValue(PassRefPtr<CSSValue> imageValue, bool hasHotSpot, const IntPoint& hotSpot);
68 RefPtr<CSSValue> m_imageValue;
H A DCSSVariableValue.h34 #include "core/css/CSSValue.h"
38 class CSSVariableValue : public CSSValue {
52 : CSSValue(VariableClass)
62 inline CSSVariableValue* toCSSVariableValue(CSSValue* value)
68 inline const CSSVariableValue* toCSSVariableValue(const CSSValue* value)
H A DFontFeatureValue.cpp34 : CSSValue(FontFeatureClass)
H A DCSSAspectRatioValue.h32 #include "core/css/CSSValue.h"
36 class CSSAspectRatioValue : public CSSValue {
52 : CSSValue(AspectRatioClass)
H A DCSSInitialValue.h24 #include "core/css/CSSValue.h"
29 class CSSInitialValue : public CSSValue {
48 : CSSValue(InitialClass)
H A DCSSCrossfadeValue.h46 static PassRefPtr<CSSCrossfadeValue> create(PassRefPtr<CSSValue> fromValue, PassRefPtr<CSSValue> toValue)
71 CSSCrossfadeValue(PassRefPtr<CSSValue> fromValue, PassRefPtr<CSSValue> toValue)
95 RefPtr<CSSValue> m_fromValue;
96 RefPtr<CSSValue> m_toValue;
H A DCSSReflectValue.h29 #include "core/css/CSSValue.h"
37 class CSSReflectValue : public CSSValue {
40 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
47 CSSValue* mask() const { return m_mask.get(); }
57 CSSReflectValue(PassRefPtr<CSSPrimitiveValue> direction, PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
58 : CSSValue(ReflectClass)
67 RefPtr<CSSValue> m_mask;
H A DCSSTimingFunctionValue.h29 #include "core/css/CSSValue.h"
34 class CSSLinearTimingFunctionValue : public CSSValue {
47 : CSSValue(LinearTimingFunctionClass)
52 class CSSCubicBezierTimingFunctionValue : public CSSValue {
70 : CSSValue(CubicBezierTimingFunctionClass)
84 class CSSStepsTimingFunctionValue : public CSSValue {
100 : CSSValue(StepsTimingFunctionClass)
H A DCSSGridTemplateValue.h34 #include "core/css/CSSValue.h"
40 class CSSGridTemplateValue : public CSSValue {
59 inline CSSGridTemplateValue* toCSSGridTemplateValue(CSSValue* value)
65 inline const CSSGridTemplateValue* toCSSGridTemplateValue(const CSSValue* value)
H A DMediaQueryEvaluator.cpp60 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix);
174 static bool compareAspectRatioValue(CSSValue* value, int width, int height, MediaFeaturePrefix op)
184 static bool numberValue(CSSValue* value, float& result)
194 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
204 static bool colorIndexMediaFeatureEval(CSSValue* value, RenderStyle*, Frame*, MediaFeaturePrefix op)
215 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op)
233 static bool orientationMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix)
249 static bool aspectRatioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
261 static bool deviceAspectRatioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
273 static bool evalResolution(CSSValue* valu
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilder.h38 class CSSValue;
45 static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*);
50 static void oldApplyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
53 static bool applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
H A DStyleBuilderCustom.h30 #include "core/css/CSSValue.h"
37 // Note that we assume the parser only allows valid CSSValue types.
41 template <typename T> static T convertComputedLength(StyleResolverState&, CSSValue*);
42 template <typename T> static T convertLineWidth(StyleResolverState&, CSSValue*);
43 static Length convertLength(StyleResolverState&, CSSValue*);
44 static Length convertLengthOrAuto(StyleResolverState&, CSSValue*);
45 static Length convertLengthSizing(StyleResolverState&, CSSValue*);
46 static Length convertLengthMaxSizing(StyleResolverState&, CSSValue*);
47 static LengthSize convertRadius(StyleResolverState&, CSSValue*);
48 static float convertSpacing(StyleResolverState&, CSSValue*);
[all...]
H A DFilterOperationResolver.h30 class CSSValue;
37 static bool createFilterOperations(CSSValue* inValue, const RenderStyle* inStyle, const RenderStyle* rootStyle, FilterOperations& outOperations, StyleResolverState&);
H A DTransformBuilder.h39 class CSSValue;
48 static bool createTransformOperations(CSSValue* inValue, const RenderStyle* inStyle, const RenderStyle* rootStyle, TransformOperations& outOperations);
H A DFontBuilder.h33 class CSSValue;
57 void setFontFamilyValue(CSSValue*, float effectiveZoom);
61 void setFontSizeValue(CSSValue*, RenderStyle* parentStyle, const RenderStyle* rootElementStyle, float effectiveZoom);
69 void setFontVariantLigaturesValue(CSSValue*);
72 void setFeatureSettingsValue(CSSValue*);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableUnknown.h42 static PassRefPtr<AnimatableUnknown> create(PassRefPtr<CSSValue> value)
47 PassRefPtr<CSSValue> toCSSValue() const { return m_value; }
61 explicit AnimatableUnknown(PassRefPtr<CSSValue> value)
68 const RefPtr<CSSValue> m_value;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleFetchedShader.cpp46 PassRefPtr<CSSValue> StyleFetchedShader::cssValue() const
H A DStyleShader.h38 class CSSValue;
47 virtual PassRefPtr<CSSValue> cssValue() const = 0;

Completed in 244 milliseconds

123456