/external/chromium_org/third_party/WebKit/Source/core/animation/ |
KeyframeAnimationEffectTest.cpp | 55 KeyframeAnimationEffect::KeyframeVector keyframes(2); 56 keyframes[0] = Keyframe::create(); 57 keyframes[0]->setOffset(0.0); 58 keyframes[0]->setPropertyValue(CSSPropertyLeft, zeroValue); 59 keyframes[1] = Keyframe::create(); 60 keyframes[1]->setOffset(1.0); 61 keyframes[1]->setPropertyValue(CSSPropertyLeft, oneValue); 62 return keyframes; 81 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(unknownAnimatableValue(3.0), unknownAnimatableValue(5.0)); local 82 RefPtr<KeyframeAnimationEffect> effect = KeyframeAnimationEffect::create(keyframes); 91 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(unknownAnimatableValue(3.0), unknownAnimatableValue(5.0)); local 100 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0)); local 109 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0)); local 118 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(unknownAnimatableValue(3.0), unknownAnimatableValue(5.0)); local 127 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0)); local 136 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0)); local 326 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(3.0), pixelAnimatableValue(5.0)); local 337 KeyframeAnimationEffect::KeyframeVector keyframes = keyframesAtZeroAndOne(pixelAnimatableValue(1.0), pixelAnimatableValue(3.0)); local [all...] |
KeyframeAnimationEffect.cpp | 144 KeyframeAnimationEffect::KeyframeAnimationEffect(const KeyframeVector& keyframes) 145 : m_keyframes(keyframes) 160 KeyframeVector keyframes = m_keyframes; local 163 if (keyframes.size() >= 2) { 164 Keyframe* firstKeyframe = keyframes.first().get(); 168 if (keyframes.size() >= 1) { 169 Keyframe* lastKeyframe = keyframes.last().get(); 175 for (KeyframeVector::iterator iter = keyframes.begin(); iter != keyframes.end(); ++iter) 179 std::stable_sort(keyframes.begin(), keyframes.end(), Keyframe::compareOffsets) 189 const KeyframeVector& keyframes = normalizedKeyframes(); local [all...] |
KeyframeAnimationEffect.h | 47 // Represents the keyframes set through the API. 77 static PassRefPtr<KeyframeAnimationEffect> create(const KeyframeVector& keyframes) 79 return adoptRef(new KeyframeAnimationEffect(keyframes)); 113 KeyframeAnimationEffect(const KeyframeVector& keyframes); 116 // Lazily computes the groups of property-specific keyframes. 120 // The spec describes filtering the normalized keyframes at sampling time 121 // to get the 'property-specific keyframes'. For efficiency, we cache the
|
/frameworks/base/core/java/android/animation/ |
KeyframeSet.java | 28 * values between those keyframes for a given animation. The class internal to the animation 29 * package because it is an implementation detail of how Keyframes are stored and used. 38 ArrayList<Keyframe> mKeyframes; // only used when there are not 2 keyframes 42 public KeyframeSet(Keyframe... keyframes) { 43 mNumKeyframes = keyframes.length; 45 mKeyframes.addAll(Arrays.asList(keyframes)); 53 IntKeyframe keyframes[] = new IntKeyframe[Math.max(numKeyframes,2)]; local 55 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f); 56 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]); 58 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0]) 70 FloatKeyframe keyframes[] = new FloatKeyframe[Math.max(numKeyframes,2)]; local 127 ObjectKeyframe keyframes[] = new ObjectKeyframe[Math.max(numKeyframes,2)]; local 154 ArrayList<Keyframe> keyframes = mKeyframes; local [all...] |
Keyframe.java | 56 * animation first starts, to populate placeholder keyframes with real values derived 64 * for the animation. The value for the animation between keyframes will be calculated as 65 * an interpolation between the values at those keyframes. 79 * from the target object when the animation first starts (note that this implies that keyframes 83 * for the animation. The value for the animation between keyframes will be calculated as 84 * an interpolation between the values at those keyframes. 96 * for the animation. The value for the animation between keyframes will be calculated as 97 * an interpolation between the values at those keyframes. 111 * from the target object when the animation first starts (note that this implies that keyframes 115 * for the animation. The value for the animation between keyframes will be calculated a [all...] |
package.html | 16 specify {@link android.animation.Keyframe keyframes}, or group animations to play sequentially
|
FloatKeyframeSet.java | 25 * values between those keyframes for a given animation. The class internal to the animation 26 * package because it is an implementation detail of how Keyframes are stored and used. 39 public FloatKeyframeSet(FloatKeyframe... keyframes) { 40 super(keyframes); 50 ArrayList<Keyframe> keyframes = mKeyframes; local 54 newKeyframes[i] = (FloatKeyframe) keyframes.get(i).clone();
|
IntKeyframeSet.java | 25 * values between those keyframes for a given animation. The class internal to the animation 26 * package because it is an implementation detail of how Keyframes are stored and used. 39 public IntKeyframeSet(IntKeyframe... keyframes) { 40 super(keyframes); 50 ArrayList<Keyframe> keyframes = mKeyframes; local 54 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone();
|
/external/chromium_org/cc/animation/ |
keyframed_animation_curve.cc | 13 ScopedPtrVector<Keyframe>& keyframes) { 14 // Usually, the keyframes will be added in order, so this loop would be 16 if (!keyframes.empty() && keyframe->Time() < keyframes.back()->Time()) { 17 for (size_t i = 0; i < keyframes.size(); ++i) { 18 if (keyframe->Time() < keyframes[i]->Time()) { 19 keyframes.insert(keyframes.begin() + i, keyframe.Pass()); 25 keyframes.push_back(keyframe.Pass()); 205 // Assumes that (*keyframes).front()->Time() < t < (*keyframes).back()-Time() [all...] |
keyframed_animation_curve.h | 98 // It is required that the keyframes be sorted by time. 115 // Always sorted in order of increasing time. No two keyframes have the 125 // It is required that the keyframes be sorted by time. 142 // Always sorted in order of increasing time. No two keyframes have the 152 // It is required that the keyframes be sorted by time. 169 // Always sorted in order of increasing time. No two keyframes have the
|
/external/chromium_org/tools/perf/page_sets/tough_animation_cases/ |
keyframed_animations.html | 5 @-webkit-keyframes animation1 { 11 @-webkit-keyframes animation2 { 17 @-webkit-keyframes animation3 { 23 @-webkit-keyframes animation4 { 29 @-webkit-keyframes animation5 { 35 @-webkit-keyframes animation6 { 41 @-webkit-keyframes animation7 { 47 @-webkit-keyframes animation8 { 53 @-webkit-keyframes animation9 { 59 @-webkit-keyframes animation10 [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/ |
transition-accelerated.html | 22 @-webkit-keyframes slow { 31 @-webkit-keyframes fast {
|
animate-none.html | 21 @-webkit-keyframes 'fail' { 40 @-webkit-keyframes 'sway1' { 59 @-webkit-keyframes 'sway2' { 78 @-webkit-keyframes 'sway3' { 117 @-webkit-keyframes 'sway6' { 126 @-webkit-keyframes 'fade' { 136 @-webkit-keyframes none {
|
/external/libvpx/libvpx/examples/ |
force_keyframe.txt | 5 This is an example demonstrating how to control placement of keyframes 12 Keyframes can be forced by setting the VPX_EFLAG_FORCE_KF bit of the
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
AnimationFactory.java | 41 * you can add some keyFrames for a given time or a given keyFrameIndex, for translation rotation and scale. 42 * The animationHelper will then generate an appropriate SpatialAnimation by interpolating values between the keyFrames. 46 * - add some keyFrames<br> 142 * The map of keyFrames to compute the animation. The key is the index of the frame 250 * Hence, this method may create intermediate keyFrames if the interpolation angle is higher than PI to ensure continuity in animation<br> 265 * Hence, this method may create intermediate keyFrames if the interpolation angle is higher than PI to ensure continuity in animation<br> 276 // if the delta of euler angles is higher than PI, we create intermediate keyframes 383 * Creates an Animation based on the keyFrames previously added to the helper. 412 * @param keyFrames the keyFrames arra [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSKeyframesRule.cpp | 38 : StyleRuleBase(Keyframes) 90 , m_childRuleCSSOMWrappers(keyframesRule->keyframes().size()) 96 ASSERT(m_childRuleCSSOMWrappers.size() == m_keyframesRule->keyframes().size()); 113 ASSERT(m_childRuleCSSOMWrappers.size() == m_keyframesRule->keyframes().size()); 130 ASSERT(m_childRuleCSSOMWrappers.size() == m_keyframesRule->keyframes().size()); 154 result.append("@-webkit-keyframes "); 161 result.append(m_keyframesRule->keyframes()[i]->cssText()); 170 return m_keyframesRule->keyframes().size(); 178 ASSERT(m_childRuleCSSOMWrappers.size() == m_keyframesRule->keyframes().size()); 181 rule = adoptRef(new CSSKeyframeRule(m_keyframesRule->keyframes()[index].get(), const_cast<CSSKeyframesRule*>(this))) [all...] |
/external/chromium_org/content/test/data/ |
rwhv_compositing_animation.html | 11 @-webkit-keyframes spin {
|
/external/chromium/chrome/browser/resources/chromeos/ |
choose_mobile_network.css | 30 @-webkit-keyframes spin {
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
choose_mobile_network.css | 32 @-webkit-keyframes spin {
|
/external/chromium_org/chrome/browser/resources/signin_internals/ |
signin_index.css | 49 @-webkit-keyframes highlight1 { 58 @-webkit-keyframes highlight2 {
|
/external/libvpx/libvpx/test/ |
keyframe_test.cc | 58 // Validate that encoding the RandomVideoSource produces multiple keyframes. 65 // In realtime mode - auto placed keyframes are exceedingly rare, don't 127 // In realtime mode - auto placed keyframes are exceedingly rare, don't 130 EXPECT_EQ(2u, kf_pts_list_.size()) << " Not the right number of keyframes "; 132 // Verify that keyframes match the file keyframes in the file.
|
/external/chromium_org/chrome/browser/resources/sync_internals/ |
about.html | 52 @-webkit-keyframes highlight1 { 57 @-webkit-keyframes highlight2 {
|
/external/chromium_org/tools/perf/page_sets/tough_texture_upload_cases/ |
background_color_animation_and_transform_animation.html | 5 @-webkit-keyframes color-animation { 10 @-webkit-keyframes transform-animation {
|
background_color_animation_with_gradient_and_transform_animation.html | 5 @-webkit-keyframes color-animation { 10 @-webkit-keyframes transform-animation {
|
/external/chromium/chrome/browser/resources/ |
network_menu.css | 44 @-webkit-keyframes spin {
|