/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
CSSToStyleMap.h | 34 class CSSValue; 43 // CSSValue objects into their RenderStyle equivalents. 50 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const; 51 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const; 52 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const; 53 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const; 54 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const; 55 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*); 56 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const; 57 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) const [all...] |
FilterOperationResolver.h | 31 class CSSValue; 37 static bool createFilterOperations(CSSValue* inValue, const CSSToLengthConversionData&, FilterOperations& outOperations, StyleResolverState&);
|
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);
|
StyleBuilderConverter.h | 30 #include "core/css/CSSValue.h" 39 // Note that we assume the parser only allows valid CSSValue types. 43 static String convertFragmentIdentifier(StyleResolverState&, CSSValue*); 44 template <typename T> static T convertComputedLength(StyleResolverState&, CSSValue*); 45 template <typename T> static T convertLineWidth(StyleResolverState&, CSSValue*); 46 static Length convertLength(StyleResolverState&, CSSValue*); 47 static Length convertLengthOrAuto(StyleResolverState&, CSSValue*); 48 static Length convertLengthSizing(StyleResolverState&, CSSValue*); 49 static Length convertLengthMaxSizing(StyleResolverState&, CSSValue*); 50 static LengthPoint convertLengthPoint(StyleResolverState&, CSSValue*); [all...] |
TransformBuilder.h | 40 class CSSValue; 48 static bool createTransformOperations(CSSValue* inValue, const CSSToLengthConversionData&, TransformOperations& outOperations);
|
FontBuilder.h | 33 class CSSValue; 56 void setFontFamilyValue(CSSValue*, float effectiveZoom); 60 void setFontSizeValue(CSSValue*, RenderStyle* parentStyle, const RenderStyle* rootElementStyle, float effectiveZoom); 68 void setFontVariantLigaturesValue(CSSValue*); 71 void setFeatureSettingsValue(CSSValue*);
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
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(unsigned long index);
|
BasicShapeFunctions.h | 39 class CSSValue; 43 PassRefPtr<CSSValue> valueForBasicShape(const RenderStyle&, const BasicShape*);
|
CSSInheritedValue.h | 24 #include "core/css/CSSValue.h" 29 class CSSInheritedValue : public CSSValue { 42 : 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 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;
|
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...] |
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)
|
FontFace.h | 36 #include "core/css/CSSValue.h" 90 FontFace(PassRefPtr<CSSValue> source); 94 bool setPropertyValue(PassRefPtr<CSSValue>, CSSPropertyID); 99 RefPtr<CSSValue> m_src; 100 RefPtr<CSSValue> m_style; 101 RefPtr<CSSValue> m_weight; 102 RefPtr<CSSValue> m_stretch; 103 RefPtr<CSSValue> m_unicodeRange; 104 RefPtr<CSSValue> m_variant; 105 RefPtr<CSSValue> m_featureSettings [all...] |
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;
|
CSSFontFeatureValue.cpp | 34 : CSSValue(FontFeatureClass)
|
CSSAspectRatioValue.h | 32 #include "core/css/CSSValue.h" 36 class CSSAspectRatioValue : public CSSValue { 52 : CSSValue(AspectRatioClass)
|
CSSFontValue.h | 24 #include "core/css/CSSValue.h" 33 class CSSFontValue : 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;
|
CSSValueList.cpp | 30 : CSSValue(classType) 36 : CSSValue(ValueListClass) 42 : CSSValue(ValueListClass) 52 bool CSSValueList::removeAll(CSSValue* val) 56 RefPtr<CSSValue>& value = m_values.at(index); 66 bool CSSValueList::hasValue(CSSValue* val) const 69 const RefPtr<CSSValue>& value = m_values.at(index); 132 return m_valueListSeparator == other.m_valueListSeparator && compareCSSValueVector<CSSValue>(Vector<RefPtr<CSSValue> >(m_values), Vector<RefPtr<CSSValue> >(other.m_values)) [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
|