HomeSort by relevance Sort by last modified time
    Searched refs:keyframe (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/webkit/renderer/compositor_bindings/
web_float_animation_curve_impl.cc 26 void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe) {
27 add(keyframe, TimingFunctionTypeEase);
30 void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe,
33 keyframe.time, keyframe.value, CreateTimingFunction(type)));
36 void WebFloatAnimationCurveImpl::add(const WebFloatKeyframe& keyframe,
42 keyframe.time,
43 keyframe.value,
web_transform_animation_curve_impl.cc 27 void WebTransformAnimationCurveImpl::add(const WebTransformKeyframe& keyframe) {
28 add(keyframe, TimingFunctionTypeEase);
31 void WebTransformAnimationCurveImpl::add(const WebTransformKeyframe& keyframe,
34 static_cast<const webkit::WebTransformOperationsImpl&>(keyframe.value())
37 keyframe.time(), transform_operations, CreateTimingFunction(type)));
40 void WebTransformAnimationCurveImpl::add(const WebTransformKeyframe& keyframe,
46 static_cast<const webkit::WebTransformOperationsImpl&>(keyframe.value())
49 keyframe.time(),
web_float_animation_curve_impl.h 30 virtual void add(const blink::WebFloatKeyframe& keyframe);
31 virtual void add(const blink::WebFloatKeyframe& keyframe,
33 virtual void add(const blink::WebFloatKeyframe& keyframe,
web_transform_animation_curve_impl.h 31 virtual void add(const blink::WebTransformKeyframe& keyframe);
32 virtual void add(const blink::WebTransformKeyframe& keyframe,
34 virtual void add(const blink::WebTransformKeyframe& keyframe,
web_filter_animation_curve_impl.h 31 virtual void add(const blink::WebFilterKeyframe& keyframe,
33 virtual void add(const blink::WebFilterKeyframe& keyframe,
web_filter_animation_curve_impl.cc 27 void WebFilterAnimationCurveImpl::add(const WebFilterKeyframe& keyframe,
30 static_cast<const webkit::WebFilterOperationsImpl&>(keyframe.value())
33 keyframe.time(), filter_operations, CreateTimingFunction(type)));
36 void WebFilterAnimationCurveImpl::add(const WebFilterKeyframe& keyframe,
42 static_cast<const webkit::WebFilterOperationsImpl&>(keyframe.value())
45 keyframe.time(),
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
KeyframeList.cpp 39 // describes the timing function between this keyframe and the next.
63 void KeyframeList::insert(const KeyframeValue& keyframe)
65 if (keyframe.key() < 0 || keyframe.key() > 1)
71 if (m_keyframes[i].key() == keyframe.key()) {
72 m_keyframes[i] = keyframe;
77 if (m_keyframes[i].key() > keyframe.key()) {
79 m_keyframes.insert(i, keyframe);
86 m_keyframes.append(keyframe);
97 for (HashSet<CSSPropertyID>::const_iterator it = keyframe.properties().begin(); it != keyframe.properties().end(); ++it
    [all...]
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/css/
CSSKeyframesRule.cpp 54 void StyleRuleKeyframes::parserAppendKeyframe(PassRefPtr<StyleKeyframe> keyframe)
56 if (!keyframe)
58 m_keyframes.append(keyframe);
61 void StyleRuleKeyframes::wrapperAppendKeyframe(PassRefPtr<StyleKeyframe> keyframe)
63 m_keyframes.append(keyframe);
119 RefPtr<StyleKeyframe> keyframe = parser.parseKeyframeRule(styleSheet ? styleSheet->contents() : 0, ruleText); local
120 if (!keyframe)
125 m_keyframesRule->wrapperAppendKeyframe(keyframe);
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)
CSSTokenizer-in.cpp     [all...]
CSSGrammar.y 88 StyleKeyframe* keyframe;
330 %type <keyframe> keyframe_rule
    [all...]
CSSParser-in.cpp 270 setupParser("@-internal-keyframe-rule ", string, "");
277 setupParser("@-internal-keyframe-key-list ", string, "");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimation.cpp 64 // FIXME: This test will not be neccessary once resolution of keyframe values occurs at
84 RefPtr<Keyframe> keyframe = Keyframe::create(); local
85 keyframes.append(keyframe);
89 keyframe->setOffset(offset);
101 keyframe->setComposite(AnimationEffect::CompositeAdd);
111 // in a Keyframe object, so for now I just skip over them. Eventually we
KeyframeAnimationEffect.cpp 117 Keyframe::Keyframe()
122 Keyframe::Keyframe(const Keyframe& copyFrom)
130 void Keyframe::setPropertyValue(CSSPropertyID property, const AnimatableValue* value)
135 void Keyframe::clearPropertyValue(CSSPropertyID property)
140 const AnimatableValue* Keyframe::propertyValue(CSSPropertyID property) const
146 PropertySet Keyframe::properties() const
156 PassRefPtr<Keyframe> Keyframe::cloneWithOffset(double offset) cons
229 const Keyframe* keyframe = keyframeIter->get(); local
    [all...]
CompositorAnimations.cpp 358 void addKeyframeWithTimingFunction(PlatformAnimationCurveType& curve, const PlatformAnimationKeyframeType& keyframe, const TimingFunction* timingFunction)
361 curve.add(keyframe);
367 curve.add(keyframe, blink::WebAnimationCurve::TimingFunctionTypeLinear);
374 curve.add(keyframe, cubic->x1(), cubic->y1(), cubic->x2(), cubic->y2());
399 curve.add(keyframe, easeType);
418 if (i + 1 < keyframes.size()) { // Last keyframe has no timing function
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...]
  /external/chromium_org/cc/animation/
keyframed_animation_curve.cc 13 template <class Keyframe>
14 void InsertKeyframe(scoped_ptr<Keyframe> keyframe,
15 ScopedPtrVector<Keyframe>& keyframes) {
18 if (!keyframes.empty() && keyframe->Time() < keyframes.back()->Time()) {
20 if (keyframe->Time() < keyframes[i]->Time()) {
21 keyframes.insert(keyframes.begin() + i, keyframe.Pass());
27 keyframes.push_back(keyframe.Pass());
51 Keyframe::Keyframe(double time, scoped_ptr<TimingFunction> timing_function
    [all...]
keyframed_animation_curve.h 16 class CC_EXPORT Keyframe {
24 Keyframe(double time, scoped_ptr<TimingFunction> timing_function);
25 virtual ~Keyframe();
31 DISALLOW_COPY_AND_ASSIGN(Keyframe);
34 class CC_EXPORT ColorKeyframe : public Keyframe {
54 class CC_EXPORT FloatKeyframe : public Keyframe {
74 class CC_EXPORT TransformKeyframe : public Keyframe {
95 class CC_EXPORT FilterKeyframe : public Keyframe {
123 void AddKeyframe(scoped_ptr<ColorKeyframe> keyframe);
149 void AddKeyframe(scoped_ptr<FloatKeyframe> keyframe);
    [all...]
  /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/css/resolver/
StyleResolver.cpp 738 PassRefPtr<RenderStyle> StyleResolver::styleForKeyframe(Element* element, const RenderStyle& elementStyle, RenderStyle* parentStyle, const StyleKeyframe* keyframe, const AtomicString& animationName)
749 if (keyframe->properties())
750 result.addMatchedProperties(keyframe->properties());
759 // keyframe belongs is first in the list. This makes sure that if the
760 // animation-timing-function property is set for this keyframe, it will be
775 if (keyframe->properties()) {
824 const StyleKeyframe* keyframe = keyframes[i].get(); local
    [all...]
  /external/chromium_org/third_party/libwebp/dec/
frame.c 34 static WEBP_INLINE int hev_thresh_from_level(int level, int keyframe) {
35 if (keyframe) {
  /external/webp/src/dec/
frame.c 34 static WEBP_INLINE int hev_thresh_from_level(int level, int keyframe) {
35 if (keyframe) {
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 1301 const int keyframe = cm->frame_type == KEY_FRAME; local
    [all...]

Completed in 331 milliseconds