Searched refs:animate (Results 1 - 19 of 19) sorted by relevance

/external/skia/src/animator/
H A DSkAnimateActive.cpp150 SkAnimateBase* animate = fAnimators[index]; local
151 SkMSec duration = animate->dur;
156 // int entries = animate->entries();
158 // value.fOperand = animate->getValues()[entries - 1];
159 // value.fType = animate->getValuesType();
174 SkAnimateBase* animate = fAnimators[index]; local
176 int count = animate->components();
177 if (animate->formula.size() > 0) {
180 bool success = animate->fFieldInfo->setValue(fMaker, &values, 0, 0, NULL,
181 animate
204 SkAnimateBase* animate = fAnimators[index]; local
240 SkAnimateBase* animate = fAnimators[index]; local
276 SkAnimateBase* animate = fAnimators[index]; local
304 SkAnimateBase* animate = fAnimators[index]; local
335 SkAnimateBase* animate = fAnimators[index]; local
346 SkAnimateBase* animate = fAnimators[index]; local
[all...]
H A DSkDisplayApply.cpp463 SkAnimateBase* animate = fActive->fAnimators[index]; local
464 const SkMemberInfo* info = animate->fFieldInfo;
468 SkDisplayable* target = getTarget(animate);
517 SkDrawable* SkApply::getTarget(SkAnimateBase* animate) { argument
518 if (animate->fTargetIsScope == false || mode != kMode_create)
519 return animate->fTarget;
578 SkAnimateBase* animate = fActive->fAnimators[inner]; local
579 if (animate->fChanged) {
580 animate->fChanged = false;
581 animate
701 SkAnimateBase* animate = *animPtr; local
744 SkAnimateBase* animate = fActive->fAnimators[index]; local
788 SkAnimateBase* animate = (SkAnimateBase*) scriptValue.fOperand.fDisplayable; local
[all...]
H A DSkDisplayTypes.cpp28 SkAnimateBase* animate = (SkAnimateBase* ) *depPtr; local
29 animate->setChanged(true);
H A DSkAnimateMaker.cpp259 void SkAnimateMaker::postOnEnd(SkAnimateBase* animate, SkMSec end) { argument
261 evt.setS32("time", animate->getStart() + end);
262 evt.setPtr("anim", animate);
H A DSkDisplayEvent.cpp192 SkAnimateBase* animate = (SkAnimateBase*) fTarget; local
193 animate->setHasEndEvent();
H A DSkAnimateMaker.h96 void postOnEnd(SkAnimateBase* animate, SkMSec end);
/external/webkit/WebCore/page/animation/
H A DCompositeAnimation.h59 PassRefPtr<RenderStyle> animate(RenderObject*, RenderStyle* currentStyle, RenderStyle* targetStyle);
H A DImplicitAnimation.h54 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle);
H A DKeyframeAnimation.h49 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* currentStyle, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle);
H A DAnimationBase.h127 virtual void animate(CompositeAnimation*, RenderObject*, const RenderStyle* /*currentStyle*/, RenderStyle* /*targetStyle*/, RefPtr<RenderStyle>& /*animatedStyle*/) = 0;
H A DCompositeAnimation.cpp261 PassRefPtr<RenderStyle> CompositeAnimation::animate(RenderObject* renderer, RenderStyle* currentStyle, RenderStyle* targetStyle) function in class:WebCore::CompositeAnimation
277 anim->animate(this, renderer, currentStyle, targetStyle, resultStyle);
287 keyframeAnim->animate(this, renderer, currentStyle, targetStyle, resultStyle);
H A DImplicitAnimation.cpp66 void ImplicitAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle) function in class:WebCore::ImplicitAnimation
83 // FIXME: we also need to detect cases where we have to software animate for other reasons,
H A DKeyframeAnimation.cpp105 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle) function in class:WebCore::KeyframeAnimation
H A DAnimationController.cpp479 ASSERT(renderer->node()); // FIXME: We do not animate generated content yet.
482 RefPtr<RenderStyle> blendedStyle = rendererAnimations->animate(renderer, oldStyle, newStyle);
/external/webkit/WebKit/mac/Carbon/
H A DCarbonWindowFrame.m168 - (void)_showToolbarWithAnimation:(BOOL)animate {}
169 - (void)_hideToolbarWithAnimation:(BOOL)animate {}
/external/webkit/WebKit/mac/WebView/
H A DWebFrameView.mm80 - (BOOL)_scrollTo:(const NSPoint *)newOrigin animate:(BOOL)animate; // need the boolean result from this method
540 return [[self _contentView] _scrollTo:&point animate:YES];
551 return [[self _contentView] _scrollTo:&point animate:YES];
597 return [[self _contentView] _scrollTo:&point animate:YES];
604 return [[self _contentView] _scrollTo:&point animate:YES];
/external/webkit/WebKitTools/DumpRenderTree/mac/
H A DPixelDumpSupportMac.mm184 [window setFrame:newFrame display:NO animate:NO];
224 [window setFrame:oldFrame display:NO animate:NO];
/external/webkit/WebKit/android/jni/
H A DWebViewCore.h113 * @param animate If it is true, animate to the new scroll position
117 void scrollTo(int x, int y, bool animate = false);
123 * @param animate If it is true, animate to the new scroll position
125 void scrollBy(int x, int y, bool animate);
H A DWebViewCore.cpp916 void WebViewCore::scrollTo(int x, int y, bool animate) argument
924 animate ? m_javaGlue->m_spawnScrollTo : m_javaGlue->m_scrollTo,
947 void WebViewCore::scrollBy(int dx, int dy, bool animate) argument
953 dx, dy, animate);

Completed in 116 milliseconds