OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeyframeVector
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsImpl.h
39
typedef KeyframeAnimationEffect::PropertySpecificKeyframeVector
KeyframeVector
;
55
static void addKeyframesToCurve(blink::WebAnimationCurve&, const
KeyframeVector
&, const TimingFunction&);
KeyframeAnimationEffect.h
80
typedef Vector<RefPtr<Keyframe> >
KeyframeVector
;
83
static PassRefPtr<KeyframeAnimationEffect> create(const
KeyframeVector
& keyframes)
98
const
KeyframeVector
& getFrames() const { return m_keyframes; }
137
KeyframeAnimationEffect(const
KeyframeVector
& keyframes);
139
KeyframeVector
normalizedKeyframes() const;
143
KeyframeVector
m_keyframes;
DocumentTimelineTest.cpp
135
RefPtr<KeyframeAnimationEffect> effect = KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
());
166
timeline->play(Animation::create(0, KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timing).get());
180
timeline->play(Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timing).get());
206
RefPtr<Animation> anim1 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timing);
207
RefPtr<Animation> anim2 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timing);
239
RefPtr<Animation> anim1 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timingForwardFill);
240
RefPtr<Animation> anim2 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timingNoFill);
241
RefPtr<Animation> anim3 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timingBackwardFillDelay);
242
RefPtr<Animation> anim4 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
()), timingNoFillDelay);
KeyframeAnimationEffectTest.cpp
53
KeyframeAnimationEffect::
KeyframeVector
keyframesAtZeroAndOne(AnimatableValue* zeroValue, AnimatableValue* oneValue)
55
KeyframeAnimationEffect::
KeyframeVector
keyframes(2);
81
KeyframeAnimationEffect::
KeyframeVector
keyframes = keyframesAtZeroAndOne(unknownAnimatableValue(3.0), unknownAnimatableValue(5.0));
91
KeyframeAnimationEffect::
KeyframeVector
keyframes = keyframesAtZeroAndOne(unknownAnimatableValue(3.0), unknownAnimatableValue(5.0));
100
KeyframeAnimationEffect::
KeyframeVector
keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0));
109
KeyframeAnimationEffect::
KeyframeVector
keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0));
118
KeyframeAnimationEffect::
KeyframeVector
keyframes = keyframesAtZeroAndOne(unknownAnimatableValue(3.0), unknownAnimatableValue(5.0));
127
KeyframeAnimationEffect::
KeyframeVector
keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0));
136
KeyframeAnimationEffect::
KeyframeVector
keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0));
145
RefPtr<KeyframeAnimationEffect> effect = KeyframeAnimationEffect::create(KeyframeAnimationEffect::
KeyframeVector
());
[
all
...]
KeyframeAnimationEffect.cpp
163
KeyframeAnimationEffect::KeyframeAnimationEffect(const
KeyframeVector
& keyframes)
171
const
KeyframeVector
& frames = getFrames();
196
KeyframeAnimationEffect::
KeyframeVector
KeyframeAnimationEffect::normalizedKeyframes() const
198
KeyframeVector
keyframes = m_keyframes;
213
for (
KeyframeVector
::iterator iter = keyframes.begin(); iter != keyframes.end(); ++iter)
227
const
KeyframeVector
& keyframes = normalizedKeyframes();
228
for (
KeyframeVector
::const_iterator keyframeIter = keyframes.begin(); keyframeIter != keyframes.end(); ++keyframeIter) {
ElementAnimation.cpp
77
KeyframeAnimationEffect::
KeyframeVector
keyframes;
CompositorAnimationsTest.cpp
74
KeyframeAnimationEffect::
KeyframeVector
m_keyframeVector2;
76
KeyframeAnimationEffect::
KeyframeVector
m_keyframeVector5;
119
KeyframeAnimationEffect::
KeyframeVector
frames;
166
KeyframeAnimationEffect::
KeyframeVector
createCompositableFloatKeyframeVector(size_t n)
175
KeyframeAnimationEffect::
KeyframeVector
createCompositableFloatKeyframeVector(Vector<double>& values)
177
KeyframeAnimationEffect::
KeyframeVector
frames;
194
KeyframeAnimationEffect::
KeyframeVector
frames;
297
KeyframeAnimationEffect::
KeyframeVector
framesSame;
302
KeyframeAnimationEffect::
KeyframeVector
framesMixed;
310
KeyframeAnimationEffect::
KeyframeVector
framesSame
[
all
...]
CompositorAnimations.cpp
61
void getKeyframeValuesForProperty(const KeyframeAnimationEffect* effect, CSSPropertyID id, double scale, bool reverse,
KeyframeVector
& values)
64
const
KeyframeVector
& group = effect->getPropertySpecificKeyframes(id);
153
const KeyframeAnimationEffect::
KeyframeVector
frames = keyframeEffect.getFrames();
414
void CompositorAnimationsImpl::addKeyframesToCurve(blink::WebAnimationCurve& curve, const
KeyframeVector
& keyframes, const TimingFunction& timingFunction)
491
KeyframeVector
values;
ElementAnimationTest.cpp
121
const KeyframeAnimationEffect::
KeyframeVector
keyframes =
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp
75
static PassRefPtr<TimingFunction> generateTimingFunction(const KeyframeAnimationEffect::
KeyframeVector
keyframes, const HashMap<double, RefPtr<TimingFunction> > perKeyframeTimingFunctions)
96
Vector<std::pair<KeyframeAnimationEffect::
KeyframeVector
, RefPtr<TimingFunction> > >& keyframesAndTimingFunctions)
111
KeyframeAnimationEffect::
KeyframeVector
keyframes;
227
KeyframeAnimationEffect::
KeyframeVector
splitOutKeyframes;
403
Vector<std::pair<KeyframeAnimationEffect::
KeyframeVector
, RefPtr<TimingFunction> > > keyframesAndTimingFunctions;
504
const KeyframeAnimationEffect::
KeyframeVector
& frames = oldEffect->getFrames();
505
KeyframeAnimationEffect::
KeyframeVector
newFrames;
556
KeyframeAnimationEffect::
KeyframeVector
keyframes;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h
127
static PassRefPtr<KeyframeAnimationEffect> createKeyframeAnimationEffect(Element&, const Vector<RefPtr<MutableStylePropertySet> >&, KeyframeAnimationEffect::
KeyframeVector
&);
StyleResolver.cpp
[
all
...]
Completed in 105 milliseconds