HomeSort by relevance Sort by last modified time
    Searched full:keyframe (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /development/samples/ApiDemos/src/com/example/android/apis/animation/
LayoutAnimations.java 26 import android.animation.Keyframe;
174 Keyframe kf0 = Keyframe.ofFloat(0f, 0f);
175 Keyframe kf1 = Keyframe.ofFloat(.9999f, 360f);
176 Keyframe kf2 = Keyframe.ofFloat(1f, 0f);
LayoutAnimationsHideShow.java 27 import android.animation.Keyframe;
139 Keyframe kf0 = Keyframe.ofFloat(0f, 0f);
140 Keyframe kf1 = Keyframe.ofFloat(.9999f, 360f);
141 Keyframe kf2 = Keyframe.ofFloat(1f, 0f);
MultiPropertyAnimation.java 122 Keyframe kf0 = Keyframe.ofFloat(0f, ballX);
123 Keyframe kf1 = Keyframe.ofFloat(.5f, ballX + 100f);
124 Keyframe kf2 = Keyframe.ofFloat(1f, ballX + 50f);
  /frameworks/base/core/java/android/animation/
package.html 16 specify {@link android.animation.Keyframe keyframes}, or group animations to play sequentially
  /external/chromium_org/third_party/WebKit/public/platform/
WebFloatAnimationCurve.h 40 // Adds the keyframe with the default timing function (ease).
43 // Adds the keyframe with a custom, bezier timing function. Note, it is
WebTransformAnimationCurve.h 40 // Adds the keyframe with the default timing function (ease).
43 // Adds the keyframe with a custom, bezier timing function. Note, it is
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 19 import android.animation.Keyframe;
330 Keyframe kf0, kf1, kf2;
334 kf0 = Keyframe.ofFloat(0f, 1);
335 kf1 = Keyframe.ofFloat(midwayPoint, mTransitionMidRadiusMultiplier);
336 kf2 = Keyframe.ofFloat(1f, mTransitionEndRadiusMultiplier);
340 kf0 = Keyframe.ofFloat(0f, 1f);
341 kf1 = Keyframe.ofFloat(1f, 0f);
357 Keyframe kf0, kf1, kf2, kf3;
371 kf0 = Keyframe.ofFloat(0f, mTransitionEndRadiusMultiplier);
372 kf1 = Keyframe.ofFloat(delayPoint, mTransitionEndRadiusMultiplier)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 37 * implicit keyFrame count of 2 (just a start and end). After this call the
38 * values for each keyFrame must be assigned using setKeyFrame().
46 * keyFrames. After this call the values for each keyFrame must be assigned
64 * Assign the keyFrame (specified by index) a time value and an array of key
78 * Assign the keyFrame (specified by index) a time value and an array of key
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 78 // from the keyframe in which they're specified to the next keyframe.
109 // Construct and populate the style for each keyframe
117 RefPtr<Keyframe> keyframe = Keyframe::create(); local
120 keyframe->setOffset(offsets[0]);
129 keyframe->setPropertyValue(property, CSSAnimatableValueFactory::create(property, *keyframeStyle).get());
131 keyframes.append(keyframe);
132 // The last keyframe specified at a given offset is used
229 Keyframe* keyframe = keyframes[i].get(); variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
KeyframeList.h 65 HashSet<CSSPropertyID> m_properties; // The properties specified in this keyframe.
81 void insert(const KeyframeValue& keyframe);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsTest.cpp 116 bool isCandidateHelperForSingleKeyframe(Keyframe* frame)
144 PassRefPtr<Keyframe> createReplaceOpKeyframe(CSSPropertyID id, AnimatableValue* value, double offset = 0)
146 RefPtr<Keyframe> keyframe = Keyframe::create(); local
147 keyframe->setPropertyValue(id, value);
148 keyframe->setComposite(AnimationEffect::CompositeReplace);
149 keyframe->setOffset(offset);
150 return keyframe;
153 PassRefPtr<Keyframe> createDefaultKeyframe(CSSPropertyID id, AnimationEffect::CompositeOperation op, double offset = 0
161 RefPtr<Keyframe> keyframe = createReplaceOpKeyframe(id, value.get(), offset); local
    [all...]
CompositorAnimations.h 43 // Given an input timing function between keyframe at 0 and keyframe at 1.0, we
  /external/chromium_org/content/common/gpu/media/
video_encode_accelerator_unittest.cc 31 // Maximum delay between requesting a keyframe and receiving one, in frames.
34 // Value to use as max frame number for keyframe detection.
175 // Request a keyframe every keyframe_period_ frames.
177 // Frame number for which we requested a keyframe.
336 // Got keyframe, reset keyframe detection regardless of whether we
344 // Because the keyframe behavior requirements are loose, we give
345 // the encoder more freedom here. It could either deliver a keyframe
347 // before the one we requested it for (if the keyframe request
350 // So the only constraints we put here is that we get a keyframe no
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/animation/
KeyframeAnimation.cpp 54 // Get the keyframe RenderStyles
94 // Find keyframe that is closest to elapsed time.
112 // Iterate forward to find next keyframe that is used to animate CSS property.
114 const KeyframeValue& keyFrame = m_keyframes[i];
115 if (keyFrame.key() > fractionalTime && keyFrame.containsProperty(property)) {
121 // Iterate backward to find previous keyframe.
123 const KeyframeValue& keyFrame = m_keyframes[i];
124 if (keyFrame.key() <= fractionalTime && keyFrame.containsProperty(property))
    [all...]
  /external/chromium_org/media/filters/
source_buffer_stream_unittest.cc 416 // Append fails because the range doesn't begin with a keyframe.
428 // Append fails because the range doesn't begin with a keyframe.
441 // the media segment does not begin with a keyframe.
466 // Make each frame a keyframe so that it's okay to overlap frames at any point
467 // (instead of needing to respect keyframe boundaries).
519 // because the keyframe on which they depended was overwritten.
617 // the keyframe of the new data, after which it will return the new data.
632 // Expect old data up until next keyframe in new data.
661 // Expect old data up until next keyframe in new data.
723 // Because we seeked to a keyframe, the next buffers should all be new data
    [all...]
source_buffer_stream.cc 19 // Otherwise: Allowed in all situations except where a non-keyframe is followed
20 // by a keyframe.
44 // empty and the front of |new_buffers| must be a keyframe.
71 // Updates |next_buffer_index_| to point to next keyframe after or equal to
75 // Updates |next_buffer_index_| to point to next keyframe strictly after
82 // Finds the next keyframe from |buffers_| after |timestamp| (or at
84 // SourceBufferRange with the buffers from that keyframe onward.
86 // there is no keyframe after |timestamp|, SplitRange() returns null and this
157 // Gets the timestamp for the keyframe that is after |timestamp|. If
158 // there isn't a keyframe in the range after |timestamp| then kNoTimestamp(
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
animation-with-transition.html 50 case where the animation synthesizes the initial keyframe</p>
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSKeyframeRule.cpp 127 // "If a keyframe selector specifies negative percentage values
128 // or values higher than 100%, then the keyframe will be ignored."
138 CSSKeyframeRule::CSSKeyframeRule(StyleKeyframe* keyframe, CSSKeyframesRule* parent)
140 , m_keyframe(keyframe)
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardView.java 22 import android.animation.Keyframe;
153 Keyframe shadowKeyFrameStart = Keyframe.ofFloat(0, 0);
154 Keyframe shadowKeyFrameMid = Keyframe.ofFloat(0.5f, 1);
155 Keyframe shadowKeyFrameEnd = Keyframe.ofFloat(1, 0);
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationTranslationUtil.cpp 131 template <class Value, class Keyframe, class Curve>
134 curve->add(Keyframe(keyTime, value->value()), timingFunctionType);
138 template <class Value, class Keyframe, class Curve>
141 curve->add(Keyframe(keyTime, value->value()), x1, y1, x2, y2);
230 template <class Value, class Keyframe, class Curve>
252 // If there hasn't been a timing function associated with this keyframe, use the
309 addedKeyframe = appendKeyframeWithCustomBezierTimingFunction<Value, Keyframe, Curve>(curve, keyTime, originalValue, lastOriginalValue, x1, y1, x2, y2, boxSize);
311 addedKeyframe = appendKeyframeWithStandardTimingFunction<Value, Keyframe, Curve>(curve, keyTime, originalValue, lastOriginalValue, timingFunctionType, boxSize);
AnimationValue.h 78 // Used to store one transform value in a keyframe list.
95 // Used to store one filter value in a keyframe list.
  /external/chromium_org/third_party/skia/include/utils/
SkInterpolator.h 31 first keyframe. If there are no keyframes, this param
34 last keyframe. If there are no keyframes, this parameter
  /external/libvpx/libvpx/vpx/
svc_context.h 129 * return 1 if last encoded frame was a keyframe
134 * force the next frame to be a keyframe
  /external/skia/include/utils/
SkInterpolator.h 31 first keyframe. If there are no keyframes, this param
34 last keyframe. If there are no keyframes, this parameter
  /external/chromium_org/media/cast/video_sender/codecs/vp8/
vp8_encoder.h 54 // Calculate the max target in % for a keyframe.

Completed in 984 milliseconds

12 3 4 5 6 7