OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:addWith
(Results
1 - 25
of
31
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableColor.h
45
AnimatableColorImpl
addWith
(const AnimatableColorImpl&) const;
67
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableValue.cpp
69
return left->
addWith
(right);
74
PassRefPtr<AnimatableValue> AnimatableValue::
addWith
(const AnimatableValue* value) const
AnimatableSVGLength.cpp
43
PassRefPtr<AnimatableValue> AnimatableSVGLength::
addWith
(const AnimatableValue* value) const
45
ASSERT_WITH_MESSAGE(false, "Web Animations not yet implemented: AnimatableSVGLength::
addWith
()");
AnimatableColorTest.cpp
72
EXPECT_EQ(AnimatableColorImpl(Color(0xFF012345)).
addWith
(Color(0xFF543210)).toColor().rgb(), 0xFF555555);
73
EXPECT_EQ(AnimatableColorImpl(Color(0xFF808080)).
addWith
(Color(0xFF808080)).toColor().rgb(), 0xFFFFFFFF);
74
EXPECT_EQ(AnimatableColorImpl(Color(0x80FFFFFF)).
addWith
(Color(0x80FFFFFF)).toColor().rgb(), 0xFFFFFFFF);
75
EXPECT_EQ(AnimatableColorImpl(Color(0x40FFFFFF)).
addWith
(Color(0x40FFFFFF)).toColor().rgb(), 0x80FFFFFF);
76
EXPECT_EQ(AnimatableColorImpl(Color(0x40004080)).
addWith
(Color(0x80804000)).toColor().rgb(), 0xC055402B);
77
EXPECT_EQ(AnimatableColorImpl(Color(0x10204080)).
addWith
(Color(0x104080C0)).toColor().rgb(), 0x203060A0u);
AnimatableColor.cpp
70
AnimatableColorImpl AnimatableColorImpl::
addWith
(const AnimatableColorImpl& addend) const
98
PassRefPtr<AnimatableValue> AnimatableColor::
addWith
(const AnimatableValue* value) const
101
return create(m_color.
addWith
(color->m_color),
102
m_visitedLinkColor.
addWith
(color->m_visitedLinkColor));
AnimatableFilterOperations.h
50
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableImage.h
52
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableSVGLength.h
55
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableShadow.cpp
42
PassRefPtr<AnimatableValue> AnimatableShadow::
addWith
(const AnimatableValue* value) const
AnimatableShadow.h
50
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableTransform.cpp
47
PassRefPtr<AnimatableValue> AnimatableTransform::
addWith
(const AnimatableValue* value) const
AnimatableTransform.h
50
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableSVGPaint.cpp
46
PassRefPtr<AnimatableValue> AnimatableSVGPaint::
addWith
(const AnimatableValue* value) const
51
return AnimatableSVGPaint::create(SVGPaint::SVG_PAINTTYPE_RGBCOLOR, m_color.
addWith
(svgPaint->m_color), String());
AnimatableDouble.cpp
54
PassRefPtr<AnimatableValue> AnimatableDouble::
addWith
(const AnimatableValue* value) const
AnimatableDouble.h
58
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableLengthBoxAndBool.cpp
47
PassRefPtr<AnimatableValue> AnimatableLengthBoxAndBool::
addWith
(const AnimatableValue* value) const
AnimatableLengthBoxAndBool.h
50
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableLengthPoint.cpp
44
PassRefPtr<AnimatableValue> AnimatableLengthPoint::
addWith
(const AnimatableValue* value) const
AnimatableLengthPoint.h
50
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableLengthSize.cpp
44
PassRefPtr<AnimatableValue> AnimatableLengthSize::
addWith
(const AnimatableValue* value) const
AnimatableLengthSize.h
50
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableRepeatable.h
69
virtual PassRefPtr<AnimatableValue>
addWith
(const AnimatableValue*) const OVERRIDE;
AnimatableFilterOperations.cpp
60
PassRefPtr<AnimatableValue> AnimatableFilterOperations::
addWith
(const AnimatableValue* value) const
62
ASSERT_WITH_MESSAGE(false, "Web Animations not yet implemented: AnimatableFilterOperations::
addWith
()");
AnimatableImage.cpp
70
PassRefPtr<AnimatableValue> AnimatableImage::
addWith
(const AnimatableValue* value) const
AnimatableLengthBox.cpp
46
PassRefPtr<AnimatableValue> AnimatableLengthBox::
addWith
(const AnimatableValue* value) const
Completed in 125 milliseconds
1
2