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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/animation/
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());
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...]
AnimatableNumberTest.cpp 70 bool testToCSSValue(CSSValue* cssValue)
72 return testToCSSValue(cssValue, cssValue);
74 bool testToCSSValue(CSSValue* cssValueExpected, CSSValue* cssValue)
76 return AnimatableNumber::create(cssValue)->toCSSValue()->equals(*cssValueExpected);
78 bool testInterpolate(CSSValue* cssValueExpected, AnimatableNumber* numberA, AnimatableNumber* numberB, double fraction)
82 bool testAdd(CSSValue* cssValueExpected, AnimatableNumber* numberA, AnimatableNumber* numberB
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleFetchedShader.cpp 46 PassRefPtr<CSSValue> StyleFetchedShader::cssValue() const
StyleFetchedShader.h 45 virtual PassRefPtr<CSSValue> cssValue() const;
StylePendingShader.h 34 #include "core/css/CSSValue.h"
46 virtual PassRefPtr<CSSValue> cssValue() const { return m_value; }
StyleShader.h 38 class CSSValue;
47 virtual PassRefPtr<CSSValue> cssValue() const = 0;
StyleFetchedImage.h 43 virtual PassRefPtr<CSSValue> cssValue() const;
StyleGeneratedImage.h 31 class CSSValue;
43 virtual PassRefPtr<CSSValue> cssValue() const;
StyleFetchedImage.cpp 44 PassRefPtr<CSSValue> StyleFetchedImage::cssValue() const
StyleFetchedImageSet.cpp 50 PassRefPtr<CSSValue> StyleFetchedImageSet::cssValue() const
StyleFetchedImageSet.h 50 virtual PassRefPtr<CSSValue> cssValue() const;
StyleGeneratedImage.cpp 40 PassRefPtr<CSSValue> StyleGeneratedImage::cssValue() const
StyleImage.h 27 #include "core/css/CSSValue.h"
38 class CSSValue;
52 virtual PassRefPtr<CSSValue> cssValue() const = 0;
StylePendingImage.h 44 static PassRefPtr<StylePendingImage> create(CSSValue* value) { return adoptRef(new StylePendingImage(value)); }
48 virtual PassRefPtr<CSSValue> cssValue() const { return m_value; }
70 StylePendingImage(CSSValue* value)
76 CSSValue* m_value; // Not retained; it owns us.
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryExp.cpp 198 MediaQueryExp::MediaQueryExp(const AtomicString& mediaFeature, PassRefPtr<CSSValue> value)
206 RefPtr<CSSValue> cssValue;
216 cssValue = CSSPrimitiveValue::createIdentifier(value->id);
217 if (!featureWithValidIdent(mediaFeature, toCSSPrimitiveValue(cssValue.get())->getValueID()))
218 cssValue.clear();
221 cssValue = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit);
224 cssValue = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit);
227 cssValue = CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER);
230 cssValue = CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER)
    [all...]
MediaList.cpp 283 CSSValue* cssValue = exp->value();
284 if (cssValue && cssValue->isPrimitiveValue()) {
285 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssValue);
WebKitCSSMatrix.idl 28 Constructor([Default=NullString] optional DOMString cssValue),
CSSComputedStyleDeclaration.cpp 505 static PassRefPtr<CSSValue> valueForNinePieceImageRepeat(const NinePieceImage& image)
518 static PassRefPtr<CSSValue> valueForNinePieceImage(const NinePieceImage& image)
524 RefPtr<CSSValue> imageValue;
526 imageValue = image.image()->cssValue();
532 RefPtr<CSSValue> borderSlices = valueForNinePieceImageQuad(image.borderSlices());
535 RefPtr<CSSValue> outset = valueForNinePieceImageQuad(image.outset());
538 RefPtr<CSSValue> repeat = valueForNinePieceImageRepeat(image);
553 static PassRefPtr<CSSValue> zoomAdjustedPixelValueForLength(const Length& length, const RenderStyle* style)
560 static PassRefPtr<CSSValue> valueForReflection(const StyleReflection* reflection, const RenderStyle* style)
606 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, CSSPropertyID propertyID, const RenderObject* renderer (…)
    [all...]
StylePropertySet.cpp 48 return sizeof(ImmutableStylePropertySet) - sizeof(void*) + sizeof(CSSValue*) * count + sizeof(StylePropertyMetadata) * count;
82 CSSValue** valueArray = const_cast<CSSValue**>(this->valueArray());
92 CSSValue** valueArray = const_cast<CSSValue**>(this->valueArray());
111 RefPtr<CSSValue> value = getPropertyCSSValue(propertyID);
118 PassRefPtr<CSSValue> StylePropertySet::getPropertyCSSValue(CSSPropertyID propertyID) const
243 void MutableStylePropertySet::setProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> prpValue, bool important)
253 RefPtr<CSSValue> value = prpValue;
288 CSSValue* cssValue = m_propertyVector.at(index).value()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp 62 RefPtr<CSSValue> cssValue = svgElement->getPresentationAttribute(
64 if (cssValue.get() && cssValue->isPrimitiveValue()) {
65 const CSSPrimitiveValue& primitiveValue = *((CSSPrimitiveValue*)cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 40 #include "core/css/CSSValue.h"
195 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValueInternal(static_cast<CSSPropertyID>(propInfo->propID));
196 if (cssValue) {
197 v8SetReturnValueStringOrNull(info, cssValue->cssText(), info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 136 static bool isTransparentColorValue(CSSValue*);
139 static PassRefPtr<CSSValue> backgroundColorInEffect(Node*);
187 RefPtr<CSSValue> value = style->getPropertyCSSValue(m_propertyID);
222 RefPtr<CSSValue> styleValue = style->getPropertyCSSValue(CSSPropertyWebkitTextDecorationsInEffect);
243 virtual PassRefPtr<CSSValue> attributeValueAsCSSValue(Element*) const;
266 RefPtr<CSSValue> value = attributeValueAsCSSValue(element);
267 RefPtr<CSSValue> styleValue = style->getPropertyCSSValue(m_propertyID);
274 if (RefPtr<CSSValue> value = attributeValueAsCSSValue(element))
278 PassRefPtr<CSSValue> HTMLAttributeEquivalent::attributeValueAsCSSValue(Element* element) const
296 virtual PassRefPtr<CSSValue> attributeValueAsCSSValue(Element*) const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 328 RefPtr<CSSValue> cssValue = styleDeclaration->propertyAt(i).value();
329 if (!cssValue->isImageValue())
332 CSSImageValue* imageValue = toCSSImageValue(cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FilterOperationResolver.cpp 103 static StyleShader* styleShader(CSSValue* value, StyleResolverState& state)
114 CSSValue* value = values->itemWithoutBoundsCheck(i);
129 CSSValue* value = values->itemWithoutBoundsCheck(i);
149 static PassRefPtr<CustomFilterParameter> parseCustomFilterParameter(const String& name, CSSValue* parameterValue, StyleResolverState& state)
189 static bool parseCustomFilterParameterList(CSSValue* parametersValue, CustomFilterParameterList& parameterList, StyleResolverState& state)
248 CSSValue* shadersValue = filterValue->itemWithoutBoundsCheck(0);
261 CSSValue* fragmentShaderOrMixFunction = shadersList->itemWithoutBoundsCheck(1);
294 CSSValue* parametersValue = 0;
357 bool FilterOperationResolver::createFilterOperations(CSSValue* inValue, const RenderStyle* style, const RenderStyle* rootStyle, FilterOperations& outOperations, StyleResolverState& state)
376 CSSValue* currValue = i.value()
    [all...]

Completed in 294 milliseconds

1 2