Searched defs:value (Results 326 - 350 of 7729) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimatableDouble.cpp39 bool AnimatableDouble::usesDefaultInterpolationWith(const AnimatableValue* value) const
41 const AnimatableDouble* other = toAnimatableDouble(value);
45 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableDouble::interpolateTo(const AnimatableValue* value, double fraction) const argument
47 const AnimatableDouble* other = toAnimatableDouble(value);
50 return defaultInterpolateTo(this, value, fraction);
54 bool AnimatableDouble::equalTo(const AnimatableValue* value) const
56 return m_number == toAnimatableDouble(value)->m_number;
59 double AnimatableDouble::distanceTo(const AnimatableValue* value) const
61 const AnimatableDouble* other = toAnimatableDouble(value);
H A DAnimatableImage.cpp41 bool AnimatableImage::usesDefaultInterpolationWith(const AnimatableValue* value) const
45 if (!toAnimatableImage(value)->toCSSValue()->isImageValue())
50 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableImage::interpolateTo(const AnimatableValue* value, double fraction) const argument
52 if (fraction <= 0 || fraction >= 1 || usesDefaultInterpolationWith(value))
53 return defaultInterpolateTo(this, value, fraction);
56 CSSValue* toValue = toAnimatableImage(value)->toCSSValue();
63 bool AnimatableImage::equalTo(const AnimatableValue* value) const
65 return m_value->equals(*toAnimatableImage(value)->m_value.get());
H A DAnimatableLengthBox.cpp36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthBox::interpolateTo(const AnimatableValue* value, double fraction) const argument
38 const AnimatableLengthBox* lengthBox = toAnimatableLengthBox(value);
46 bool AnimatableLengthBox::equalTo(const AnimatableValue* value) const
48 const AnimatableLengthBox* lengthBox = toAnimatableLengthBox(value);
H A DAnimatableLengthBoxAndBool.cpp36 bool AnimatableLengthBoxAndBool::usesDefaultInterpolationWith(const AnimatableValue* value) const
38 const AnimatableLengthBoxAndBool* lengthBox = toAnimatableLengthBoxAndBool(value);
44 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthBoxAndBool::interpolateTo(const AnimatableValue* value, double fraction) const argument
46 const AnimatableLengthBoxAndBool* lengthBox = toAnimatableLengthBoxAndBool(value);
52 return defaultInterpolateTo(this, value, fraction);
55 bool AnimatableLengthBoxAndBool::equalTo(const AnimatableValue* value) const
57 const AnimatableLengthBoxAndBool* lengthBox = toAnimatableLengthBoxAndBool(value);
H A DAnimatableLengthPoint.cpp36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint::interpolateTo(const AnimatableValue* value, double fraction) const argument
38 const AnimatableLengthPoint* lengthPoint = toAnimatableLengthPoint(value);
44 bool AnimatableLengthPoint::equalTo(const AnimatableValue* value) const
46 const AnimatableLengthPoint* lengthPoint = toAnimatableLengthPoint(value);
H A DAnimatableLengthPoint3D.cpp36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthPoint3D::interpolateTo(const AnimatableValue* value, double fraction) const argument
38 const AnimatableLengthPoint3D* lengthPoint = toAnimatableLengthPoint3D(value);
45 bool AnimatableLengthPoint3D::equalTo(const AnimatableValue* value) const
47 const AnimatableLengthPoint3D* lengthPoint = toAnimatableLengthPoint3D(value);
H A DAnimatableLengthSize.cpp36 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLengthSize::interpolateTo(const AnimatableValue* value, double fraction) const argument
38 const AnimatableLengthSize* lengthSize = toAnimatableLengthSize(value);
44 bool AnimatableLengthSize::equalTo(const AnimatableValue* value) const
46 const AnimatableLengthSize* lengthSize = toAnimatableLengthSize(value);
H A DAnimatableSVGPaint.cpp36 bool AnimatableSVGPaint::usesDefaultInterpolationWith(const AnimatableValue* value) const
38 const AnimatableSVGPaint* svgPaint = toAnimatableSVGPaint(value);
43 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableSVGPaint::interpolateTo(const AnimatableValue* value, double fraction) const argument
45 if (usesDefaultInterpolationWith(value))
46 return defaultInterpolateTo(this, value, fraction);
48 const AnimatableSVGPaint* svgPaint = toAnimatableSVGPaint(value);
55 bool AnimatableSVGPaint::equalTo(const AnimatableValue* value) const
57 const AnimatableSVGPaint* svgPaint = toAnimatableSVGPaint(value);
H A DAnimatableShapeValue.cpp36 bool AnimatableShapeValue::usesDefaultInterpolationWith(const AnimatableValue* value) const
38 const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value);
51 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableShapeValue::interpolateTo(const AnimatableValue* value, double fraction) const argument
53 if (usesDefaultInterpolationWith(value))
54 return defaultInterpolateTo(this, value, fraction);
56 const AnimatableShapeValue* shapeValue = toAnimatableShapeValue(value);
62 bool AnimatableShapeValue::equalTo(const AnimatableValue* value) const
64 const ShapeValue* shape = toAnimatableShapeValue(value)->m_shape.get();
H A DAnimatableVisibility.cpp36 bool AnimatableVisibility::usesDefaultInterpolationWith(const AnimatableValue* value) const
39 EVisibility to = toAnimatableVisibility(value)->m_visibility;
43 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableVisibility::interpolateTo(const AnimatableValue* value, double fraction) const argument
46 EVisibility to = toAnimatableVisibility(value)->m_visibility;
48 return defaultInterpolateTo(this, value, fraction);
52 return takeConstRef(value);
53 return takeConstRef(from == VISIBLE ? this : value);
56 bool AnimatableVisibility::equalTo(const AnimatableValue* value) const
58 return m_visibility == toAnimatableVisibility(value)->m_visibility;
H A DAnimationTestHelper.cpp22 void setV8ObjectPropertyAsString(v8::Handle<v8::Object> object, String name, String value) argument
24 object->Set(stringToV8Value(name), stringToV8Value(value));
27 void setV8ObjectPropertyAsNumber(v8::Handle<v8::Object> object, String name, double value) argument
29 object->Set(stringToV8Value(name), doubleToV8Value(value));
H A DInterpolationEffectTest.cpp25 double getInterpolableNumber(PassRefPtrWillBeRawPtr<Interpolation> value) argument
27 return toInterpolableNumber(interpolationValue(*value.get()))->value();
/external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
H A DLegacyStyleInterpolation.h28 InterpolableAnimatableValue* value = static_cast<InterpolableAnimatableValue*>(m_cachedValue.get()); local
29 return value->value();
44 DEFINE_TYPE_CASTS(LegacyStyleInterpolation, Interpolation, value, value->isLegacyStyleInterpolation(), value.isLegacyStyleInterpolation());
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontFeatureValue.cpp33 CSSFontFeatureValue::CSSFontFeatureValue(const AtomicString& tag, int value) argument
36 , m_value(value)
H A DDOMWindowCSS.cpp45 static String valueWithoutImportant(const String& value) argument
47 if (!value.endsWith("important", false))
48 return value;
50 String newValue = value;
59 bool DOMWindowCSS::supports(const String& property, const String& value) const
70 // there or not, provided how it's specified in the value is correct.
71 String normalizedValue = value.stripWhiteSpace().simplifyWhiteSpace();
H A DRGBColor.cpp40 unsigned value = (m_rgbColor >> 16) & 0xFF; local
41 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
48 unsigned value = (m_rgbColor >> 8) & 0xFF; local
49 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
56 unsigned value = m_rgbColor & 0xFF; local
57 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
64 float value = static_cast<float>((m_rgbColor >> 24) & 0xFF) / 0xFF; local
65 RefPtrWillBeRawPtr<CSSPrimitiveValue> result = CSSPrimitiveValue::create(value, CSSPrimitiveValue::CSS_NUMBER);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSetNodeAttributeCommand.cpp35 const QualifiedName& attribute, const AtomicString& value)
39 , m_value(value)
34 SetNodeAttributeCommand(PassRefPtrWillBeRawPtr<Element> element, const QualifiedName& attribute, const AtomicString& value) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DDOMFormData.cpp61 void DOMFormData::append(const String& name, const String& value) argument
64 appendData(name, value);
H A DHTMLBRElement.cpp50 void HTMLBRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
55 if (!value.isEmpty()) {
56 if (equalIgnoringCase(value, "all"))
59 addPropertyToPresentationAttributeStyle(style, CSSPropertyClear, value);
62 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
H A DHTMLParamElement.cpp49 const AtomicString& HTMLParamElement::value() const function in class:WebCore::HTMLParamElement
H A DHTMLUListElement.cpp48 void HTMLUListElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
51 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, value);
53 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleGeneratedImage.h36 static PassRefPtr<StyleGeneratedImage> create(CSSImageGeneratorValue* value) argument
38 return adoptRef(new StyleGeneratedImage(value));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateTransformElement.cpp61 void SVGAnimateTransformElement::parseAttribute(const QualifiedName& name, const AtomicString& value) argument
64 SVGAnimateElement::parseAttribute(name, value);
69 m_type = parseTransformType(value);
H A DSVGAnimatedAngle.cpp52 AtomicString value; local
54 value = "auto";
56 value = AtomicString(currentValue()->valueAsString());
58 contextElement()->setSynchronizedLazyAttribute(attributeName(), value); local
61 void SVGAnimatedAngle::setAnimatedValue(PassRefPtr<SVGPropertyBase> value) argument
63 SVGAnimatedProperty<SVGAngle>::setAnimatedValue(value);
H A DSVGAnimatedIntegerOptionalInteger.cpp47 void SVGAnimatedIntegerOptionalInteger::setAnimatedValue(PassRefPtr<SVGPropertyBase> value) argument
49 SVGAnimatedPropertyCommon<SVGIntegerOptionalInteger>::setAnimatedValue(value);

Completed in 348 milliseconds

<<11121314151617181920>>