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

  /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...]
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/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);
  /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/libvpx/libvpx/vp9/decoder/
vp9_decodframe.c 1301 const int keyframe = cm->frame_type == KEY_FRAME; local
    [all...]

Completed in 370 milliseconds