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

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToStyleMap.h 33 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*) const
    [all...]
CSSBorderImage.h 29 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice,
30 PassRefPtr<CSSValue> outset, PassRefPtr<CSSValue> repeat);
CSSValueList.idl 28 ] interface CSSValueList : CSSValue {
30 getter CSSValue item([Default=Undefined] optional unsigned long index);
BasicShapeFunctions.h 39 class CSSValue;
42 PassRefPtr<CSSValue> valueForBasicShape(const BasicShape*);
CSSInheritedValue.h 24 #include "core/css/CSSValue.h"
29 class CSSInheritedValue : public CSSValue {
42 : CSSValue(InheritedClass)
CSSValueList.h 24 #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&) const
    [all...]
CSSReflectValue.h 29 #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;
CSSInitialValue.h 24 #include "core/css/CSSValue.h"
29 class CSSInitialValue : public CSSValue {
48 : CSSValue(InitialClass)
CSSBorderImage.cpp 25 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice,
26 PassRefPtr<CSSValue> outset, PassRefPtr<CSSValue> repeat)
MediaQueryExp.h 32 #include "core/css/CSSValue.h"
49 CSSValue* value() const { return m_value.get(); }
65 MediaQueryExp(const AtomicString& mediaFeature, PassRefPtr<CSSValue>);
68 RefPtr<CSSValue> m_value;
CSSCursorImageValue.h 33 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;
CSSVariableValue.h 34 #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)
FontFeatureValue.cpp 34 : CSSValue(FontFeatureClass)
CSSAspectRatioValue.h 32 #include "core/css/CSSValue.h"
36 class CSSAspectRatioValue : public CSSValue {
52 : CSSValue(AspectRatioClass)
CSSUnicodeRangeValue.h 29 #include "core/css/CSSValue.h"
34 class CSSUnicodeRangeValue : public CSSValue {
50 : CSSValue(UnicodeRangeClass)
FontValue.h 24 #include "core/css/CSSValue.h"
33 class FontValue : public CSSValue {
53 : CSSValue(FontClass)
CSSCrossfadeValue.h 46 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;
CSSTimingFunctionValue.h 29 #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)
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilder.h 38 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);
FilterOperationResolver.h 30 class CSSValue;
37 static bool createFilterOperations(CSSValue* inValue, const RenderStyle* inStyle, const RenderStyle* rootStyle, FilterOperations& outOperations, StyleResolverState&);
TransformBuilder.h 39 class CSSValue;
48 static bool createTransformOperations(CSSValue* inValue, const RenderStyle* inStyle, const RenderStyle* rootStyle, TransformOperations& outOperations);
StyleBuilderCustom.h 30 #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...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleShader.h 38 class CSSValue;
47 virtual PassRefPtr<CSSValue> cssValue() const = 0;
StyleFetchedShader.cpp 46 PassRefPtr<CSSValue> StyleFetchedShader::cssValue() const
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableUnknown.h 42 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;

Completed in 2794 milliseconds

1 2 3 4 5 6