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

1 2 3 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
CSSToStyleMap.h 37 class CSSValue;
46 // CSSValue objects into their RenderStyle equivalents.
53 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const;
54 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const;
55 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const;
56 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const;
57 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const;
58 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
59 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const;
60 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) const
    [all...]
StyleBuilder.h 39 class CSSValue;
47 static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*);
50 static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
TransformBuilder.h 41 class CSSValue;
46 static bool createTransformOperations(CSSValue* inValue, const CSSToLengthConversionData&, TransformOperations& outOperations);
StyleBuilderConverter.h 30 #include "core/css/CSSValue.h"
41 // Note that we assume the parser only allows valid CSSValue types.
45 static PassRefPtr<StyleReflection> convertBoxReflect(StyleResolverState&, CSSValue*);
46 static AtomicString convertFragmentIdentifier(StyleResolverState&, CSSValue*);
47 template <typename T> static T convertComputedLength(StyleResolverState&, CSSValue*);
48 static EGlyphOrientation convertGlyphOrientation(StyleResolverState&, CSSValue*);
49 static GridPosition convertGridPosition(StyleResolverState&, CSSValue*);
50 static GridTrackSize convertGridTrackSize(StyleResolverState&, CSSValue*);
51 template <typename T> static T convertLineWidth(StyleResolverState&, CSSValue*);
52 static Length convertLength(StyleResolverState&, CSSValue*);
    [all...]
FilterOperationResolver.h 32 class CSSValue;
37 static bool createFilterOperations(CSSValue* inValue, const CSSToLengthConversionData&, FilterOperations& outOperations, StyleResolverState&);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBorderImage.h 29 PassRefPtrWillBeRawPtr<CSSValueList> createBorderImageValue(PassRefPtrWillBeRawPtr<CSSValue> image, PassRefPtrWillBeRawPtr<CSSValue> imageSlice, PassRefPtrWillBeRawPtr<CSSValue> borderSlice,
30 PassRefPtrWillBeRawPtr<CSSValue> outset, PassRefPtrWillBeRawPtr<CSSValue> repeat);
CSSValueList.idl 28 ] interface CSSValueList : CSSValue {
30 getter CSSValue item(unsigned long index);
CSSInheritedValue.h 24 #include "core/css/CSSValue.h"
29 class CSSInheritedValue : public CSSValue {
40 void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
44 : CSSValue(InheritedClass)
CSSValueTestHelper.h 40 #include "core/css/CSSValue.h"
52 char(&IsNullLiteralHelper(const WebCore::CSSValue&))[2];
59 inline bool operator==(const CSSValue& a, const CSSValue& b)
64 inline void PrintTo(const CSSValue& cssValue, ::std::ostream* os, const char* typeName = "CSSValue")
66 *os << typeName << "(" << cssValue.cssText().utf8().data() << ")";
69 inline void PrintTo(const CSSPrimitiveValue& cssValue, ::std::ostream* os, const char* typeName = "CSSPrimitiveValue")
71 PrintTo(*static_cast<const CSSValue*>(&cssValue), os, typeName)
    [all...]
CSSReflectValue.h 29 #include "core/css/CSSValue.h"
37 class CSSReflectValue : public CSSValue {
40 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> offset, PassRefPtrWillBeRawPtr<CSSValue> mask)
47 CSSValue* mask() const { return m_mask.get(); }
56 CSSReflectValue(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> direction, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> offset, PassRefPtrWillBeRawPtr<CSSValue> mask)
57 : CSSValue(ReflectClass)
66 RefPtrWillBeMember<CSSValue> m_mask;
CSSInitialValue.h 24 #include "core/css/CSSValue.h"
29 class CSSInitialValue : public CSSValue {
46 void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
50 : CSSValue(InitialClass)
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(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.append(value); }
57 void prepend(PassRefPtrWillBeRawPtr<CSSValue> value) { m_values.prepend(value); }
58 bool removeAll(CSSValue*);
59 bool hasValue(CSSValue*) const;
64 bool equals(const CSSValue&) const
    [all...]
BasicShapeFunctions.h 41 class CSSValue;
46 PassRefPtrWillBeRawPtr<CSSValue> valueForBasicShape(const RenderStyle&, const BasicShape*);
CSSBorderImage.cpp 25 PassRefPtrWillBeRawPtr<CSSValueList> createBorderImageValue(PassRefPtrWillBeRawPtr<CSSValue> image, PassRefPtrWillBeRawPtr<CSSValue> imageSlice,
26 PassRefPtrWillBeRawPtr<CSSValue> borderSlice, PassRefPtrWillBeRawPtr<CSSValue> outset, PassRefPtrWillBeRawPtr<CSSValue> repeat)
CSSAspectRatioValue.h 32 #include "core/css/CSSValue.h"
36 class CSSAspectRatioValue : public CSSValue {
50 void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
54 : CSSValue(AspectRatioClass)
CSSUnicodeRangeValue.h 29 #include "core/css/CSSValue.h"
34 class CSSUnicodeRangeValue : public CSSValue {
48 void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
52 : CSSValue(UnicodeRangeClass)
CSSCursorImageValue.h 33 class CSSCursorImageValue : public CSSValue {
35 static PassRefPtrWillBeRawPtr<CSSCursorImageValue> create(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hasHotSpot, const IntPoint& hotSpot)
66 CSSCursorImageValue(PassRefPtrWillBeRawPtr<CSSValue> imageValue, bool hasHotSpot, const IntPoint& hotSpot);
72 RefPtrWillBeMember<CSSValue> m_imageValue;
CSSFontFeatureValue.cpp 34 : CSSValue(FontFeatureClass)
CSSFontFeatureValue.h 29 #include "core/css/CSSValue.h"
34 class CSSFontFeatureValue : public CSSValue {
47 void traceAfterDispatch(Visitor* visitor) { CSSValue::traceAfterDispatch(visitor); }
CSSCrossfadeValue.h 46 static PassRefPtrWillBeRawPtr<CSSCrossfadeValue> create(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue)
73 CSSCrossfadeValue(PassRefPtrWillBeRawPtr<CSSValue> fromValue, PassRefPtrWillBeRawPtr<CSSValue> toValue)
97 RefPtrWillBeMember<CSSValue> m_fromValue;
98 RefPtrWillBeMember<CSSValue> m_toValue;
  /external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
DeferredLegacyStyleInterpolation.h 9 #include "core/css/CSSValue.h"
22 static PassRefPtrWillBeRawPtr<DeferredLegacyStyleInterpolation> create(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id)
31 static bool interpolationRequiresStyleResolve(const CSSValue&);
40 DeferredLegacyStyleInterpolation(PassRefPtrWillBeRawPtr<CSSValue> start, PassRefPtrWillBeRawPtr<CSSValue> end, CSSPropertyID id)
47 RefPtrWillBeMember<CSSValue> m_startCSSValue;
48 RefPtrWillBeMember<CSSValue> m_endCSSValue;
DefaultStyleInterpolation.h 15 static PassRefPtrWillBeRawPtr<DefaultStyleInterpolation> create(CSSValue* start, CSSValue* end, CSSPropertyID id)
33 DefaultStyleInterpolation(CSSValue* start, CSSValue* end, CSSPropertyID id)
40 RefPtrWillBeMember<CSSValue> m_startCSSValue;
41 RefPtrWillBeMember<CSSValue> m_endCSSValue;
LengthStyleInterpolation.h 15 static PassRefPtrWillBeRawPtr<LengthStyleInterpolation> create(CSSValue* start, CSSValue* end, CSSPropertyID id, ValueRange range)
20 static bool canCreateFrom(const CSSValue&);
32 static PassOwnPtrWillBeRawPtr<InterpolableValue> lengthToInterpolableValue(CSSValue*);
33 static PassRefPtrWillBeRawPtr<CSSValue> interpolableValueToLength(InterpolableValue*, ValueRange);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.h 49 class CSSValue;
91 void addPropertyWithPrefixingVariant(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
92 void addProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
95 void addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue>, bool);
104 PassRefPtrWillBeRawPtr<CSSValue> parseAttr(CSSParserValueList* args);
106 PassRefPtrWillBeRawPtr<CSSValue> parseBackgroundColor();
108 bool parseFillImage(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&);
113 PassRefPtrWillBeRawPtr<CSSValue> parseFillPositionX(CSSParserValueList*);
114 PassRefPtrWillBeRawPtr<CSSValue> parseFillPositionY(CSSParserValueList*);
115 void parse2ValuesFillPosition(CSSParserValueList*, RefPtrWillBeRawPtr<CSSValue>&, RefPtrWillBeRawPtr<CSSValue>&)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableImage.h 43 static PassRefPtrWillBeRawPtr<AnimatableImage> create(PassRefPtrWillBeRawPtr<CSSValue> value)
47 CSSValue* toCSSValue() const { return m_value.get(); }
60 AnimatableImage(PassRefPtrWillBeRawPtr<CSSValue> value)
68 const RefPtrWillBeMember<CSSValue> m_value;

Completed in 220 milliseconds

1 2 3 4 5 6 7 8