OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:KeyframeAnimation
(Results
1 - 3
of
3
) sorted by null
/development/samples/devbytes/animation/KeyframeAnimation/src/com/example/android/keyframeanimation/
KeyframeAnimation.java
17
package com.example.android.
keyframeanimation
;
37
public class
KeyframeAnimation
extends Activity {
/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
KeyframeAnimation.h
40
// A
KeyframeAnimation
tracks the state of an explicit animation
42
class
KeyframeAnimation
: public AnimationBase {
44
static PassRefPtr<
KeyframeAnimation
> create(const CSSAnimationData* animation, RenderObject& renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle& unanimatedStyle)
46
return adoptRef(new
KeyframeAnimation
(animation, renderer, index, compositeAnimation, unanimatedStyle));
83
KeyframeAnimation
(const CSSAnimationData*, RenderObject&, int index, CompositeAnimation*, RenderStyle& unanimatedStyle);
84
virtual ~
KeyframeAnimation
();
KeyframeAnimation.cpp
30
#include "core/frame/animation/
KeyframeAnimation
.h"
47
KeyframeAnimation
::
KeyframeAnimation
(const CSSAnimationData* animation, RenderObject& renderer, int index, CompositeAnimation* compAnim, RenderStyle& unanimatedStyle)
66
KeyframeAnimation
::~
KeyframeAnimation
()
73
void
KeyframeAnimation
::fetchIntervalEndpointsForProperty(CSSPropertyID property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
153
void
KeyframeAnimation
::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle)
208
void
KeyframeAnimation
::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle)
233
bool
KeyframeAnimation
::hasAnimationForProperty(CSSPropertyID property) const
238
void
KeyframeAnimation
::startAnimation(double timeOffset
[
all
...]
Completed in 81 milliseconds