OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CompositableValueList
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationEffect.h
61
typedef Vector<std::pair<CSSPropertyID, RefPtr<CompositableValue> > >
CompositableValueList
;
62
virtual PassOwnPtr<
CompositableValueList
> sample(int iteration, double fraction) const = 0;
InertAnimation.h
44
PassOwnPtr<AnimationEffect::
CompositableValueList
> sample();
InertAnimation.cpp
48
PassOwnPtr<AnimationEffect::
CompositableValueList
> InertAnimation::sample()
Animation.h
50
const AnimationEffect::
CompositableValueList
* compositableValues() const
85
OwnPtr<AnimationEffect::
CompositableValueList
> m_compositableValues;
AnimationStack.cpp
40
void copyToCompositableValueMap(const AnimationEffect::
CompositableValueList
* source, AnimationEffect::CompositableValueMap& target)
44
for (AnimationEffect::
CompositableValueList
::const_iterator iter = source->begin(); iter != source->end(); ++iter)
KeyframeAnimationEffect.h
95
virtual PassOwnPtr<
CompositableValueList
> sample(int iteration, double fraction) const OVERRIDE;
KeyframeAnimationEffect.cpp
185
PassOwnPtr<AnimationEffect::
CompositableValueList
> KeyframeAnimationEffect::sample(int iteration, double fraction) const
190
OwnPtr<
CompositableValueList
> map = adoptPtr(new
CompositableValueList
());
KeyframeAnimationEffectTest.cpp
83
OwnPtr<AnimationEffect::
CompositableValueList
> values = effect->sample(0, 0.6);
316
OwnPtr<AnimationEffect::
CompositableValueList
> values = effect->sample(0, 0.6);
330
OwnPtr<AnimationEffect::
CompositableValueList
> values = effect->sample(0, 0.6);
Completed in 446 milliseconds