/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...] |
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...] |
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.cpp | 37 String StyleBuilderConverter::convertFragmentIdentifier(StyleResolverState& state, CSSValue* value) 45 Length StyleBuilderConverter::convertLength(StyleResolverState& state, CSSValue* value) 54 Length StyleBuilderConverter::convertLengthOrAuto(StyleResolverState& state, CSSValue* value) 63 Length StyleBuilderConverter::convertLengthSizing(StyleResolverState& state, CSSValue* value) 89 Length StyleBuilderConverter::convertLengthMaxSizing(StyleResolverState& state, CSSValue* value) 97 LengthPoint StyleBuilderConverter::convertLengthPoint(StyleResolverState& state, CSSValue* value) 106 float StyleBuilderConverter::convertNumberOrPercentage(StyleResolverState& state, CSSValue* value) 115 LengthSize StyleBuilderConverter::convertRadius(StyleResolverState& state, CSSValue* value) 129 PassRefPtr<ShadowList> StyleBuilderConverter::convertShadow(StyleResolverState& state, CSSValue* value) 159 float StyleBuilderConverter::convertSpacing(StyleResolverState& state, CSSValue* value [all...] |
CSSToStyleMap.cpp | 55 PassRefPtr<StyleImage> CSSToStyleMap::styleImage(CSSPropertyID propertyId, CSSValue* value) 60 void CSSToStyleMap::mapFillAttachment(CSSPropertyID, FillLayer* layer, CSSValue* value) const 86 void CSSToStyleMap::mapFillClip(CSSPropertyID, FillLayer* layer, CSSValue* value) const 100 void CSSToStyleMap::mapFillComposite(CSSPropertyID, FillLayer* layer, CSSValue* value) const 114 void CSSToStyleMap::mapFillBlendMode(CSSPropertyID, FillLayer* layer, CSSValue* value) const 128 void CSSToStyleMap::mapFillOrigin(CSSPropertyID, FillLayer* layer, CSSValue* value) const 143 void CSSToStyleMap::mapFillImage(CSSPropertyID property, FillLayer* layer, CSSValue* value) 153 void CSSToStyleMap::mapFillRepeatX(CSSPropertyID, FillLayer* layer, CSSValue* value) const 167 void CSSToStyleMap::mapFillRepeatY(CSSPropertyID, FillLayer* layer, CSSValue* value) const 181 void CSSToStyleMap::mapFillSize(CSSPropertyID, FillLayer* layer, CSSValue* value) cons [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
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...] |
CSSParser.h | 56 class CSSValue; 117 void addPropertyWithPrefixingVariant(CSSPropertyID, PassRefPtr<CSSValue>, bool important, bool implicit = false); 118 void addProperty(CSSPropertyID, PassRefPtr<CSSValue>, bool important, bool implicit = false); 121 void addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtr<CSSValue>, bool); 133 PassRefPtr<CSSValue> parseAttr(CSSParserValueList* args); 135 PassRefPtr<CSSValue> parseBackgroundColor(); 137 bool parseFillImage(CSSParserValueList*, RefPtr<CSSValue>&); 142 PassRefPtr<CSSValue> parseFillPositionX(CSSParserValueList*); 143 PassRefPtr<CSSValue> parseFillPositionY(CSSParserValueList*); 144 void parse2ValuesFillPosition(CSSParserValueList*, RefPtr<CSSValue>&, RefPtr<CSSValue>&) [all...] |
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...] |
CSSBorderImage.cpp | 25 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice, 26 PassRefPtr<CSSValue> outset, PassRefPtr<CSSValue> repeat)
|
CSSBorderImage.h | 29 PassRefPtr<CSSValueList> createBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<CSSValue> imageSlice, PassRefPtr<CSSValue> borderSlice, 30 PassRefPtr<CSSValue> outset, PassRefPtr<CSSValue> repeat);
|
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;
|
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...] |
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...] |
PropertySetCSSStyleDeclaration.h | 37 class CSSValue; 58 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName) OVERRIDE; 67 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) OVERRIDE; 78 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const OVERRIDE; 81 CSSValue* cloneAndCacheForCSSOM(CSSValue*); 89 OwnPtr<HashMap<CSSValue*, RefPtr<CSSValue> > > m_cssomCSSValueClones;
|
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;
|
CSSFontValue.h | 24 #include "core/css/CSSValue.h" 33 class CSSFontValue : public CSSValue { 53 : CSSValue(FontClass)
|
CSSInheritedValue.h | 24 #include "core/css/CSSValue.h" 29 class CSSInheritedValue : public CSSValue { 42 : CSSValue(InheritedClass)
|
CSSInitialValue.h | 24 #include "core/css/CSSValue.h" 29 class CSSInitialValue : public CSSValue { 48 : CSSValue(InitialClass)
|
MediaQueryEvaluator.cpp | 61 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix); 170 static bool compareAspectRatioValue(CSSValue* value, int width, int height, MediaFeaturePrefix op) 180 static bool numberValue(CSSValue* value, float& result) 190 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op) 200 static bool colorIndexMediaFeatureEval(CSSValue* value, RenderStyle*, Frame*, MediaFeaturePrefix op) 212 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op) 230 static bool orientationMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix) 246 static bool aspectRatioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op) 258 static bool deviceAspectRatioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op) 270 static bool evalResolution(CSSValue* value, Frame* frame, MediaFeaturePrefix op [all...] |
CSSTimingFunctionValue.h | 29 #include "core/css/CSSValue.h" 34 class CSSCubicBezierTimingFunctionValue : public CSSValue { 52 : CSSValue(CubicBezierTimingFunctionClass) 68 class CSSStepsTimingFunctionValue : public CSSValue { 84 : CSSValue(StepsTimingFunctionClass)
|
CSSValue.cpp | 28 #include "core/css/CSSValue.h" 70 COMPILE_ASSERT(sizeof(CSSValue) <= sizeof(SameSizeAsCSSValue), CSS_value_should_stay_small); 72 class TextCloneCSSValue : public CSSValue { 80 : CSSValue(classType, /*isCSSOMSafe*/ true) 91 bool CSSValue::isImplicitInitialValue() const 96 CSSValue::Type CSSValue::cssValueType() const 109 void CSSValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const StyleSheetContents* styleSheet) const 124 bool CSSValue::hasFailedOrCanceledSubresources() const 144 inline static bool compareCSSValues(const CSSValue& first, const CSSValue& second [all...] |
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimatableUnknownTest.cpp | 47 cssValue = CSSArrayFunctionValue::create(); 48 animatableUnknown = AnimatableUnknown::create(cssValue); 54 RefPtr<CSSValue> cssValue; 57 RefPtr<CSSValue> otherCSSValue; 68 EXPECT_EQ(cssValue, toAnimatableUnknown(animatableUnknown.get())->toCSSValue()); 73 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0).get())->toCSSValue()); 74 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0.4).get())->toCSSValue()); 81 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown.get(), 0.5).get())->toCSSValue()); 82 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown. (…) [all...] |
AnimatableNeutralTest.cpp | 50 RefPtr<CSSValue> cssValue = CSSArrayFunctionValue::create(); 51 RefPtr<AnimatableValue> animatableUnknown = AnimatableUnknown::create(cssValue); 53 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::add(animatableUnknown.get(), AnimatableValue::neutralValue()).get())->toCSSValue()); 54 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::add(AnimatableValue::neutralValue(), animatableUnknown.get()).get())->toCSSValue());
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
StyleBuilderFunctions.h.tmpl | 11 class CSSValue; 21 static void applyValue{{property_id}}(StyleResolverState&, CSSValue*);
|