Searched defs:anim (Results 1 - 25 of 30) sorted by relevance

12

/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
H A DTestAnimationFactory.java1 package jme3test.model.anim;
50 // animation of 6 seconds named "anim" and with 25 frames per second
51 AnimationFactory animationFactory = new AnimationFactory(6, "anim", 25);
83 control.createChannel().setAnim("anim");
H A DTestSpatialAnim.java1 package jme3test.model.anim;
72 Animation spatialAnimation = new Animation("anim", animTime);
78 animations.put("anim", spatialAnimation);
85 control.createChannel().setAnim("anim");
H A DTestBlenderAnim.java33 package jme3test.model.anim;
H A DTestBlenderObjectAnim.java33 package jme3test.model.anim;
H A DTestCustomAnim.java33 package jme3test.model.anim;
H A DTestOgreAnim.java33 package jme3test.model.anim;
78 for (String anim : control.getAnimationNames())
79 System.out.println(anim);
H A DTestOgreComplexAnim.java33 package jme3test.model.anim;
H A DTestAnimBlendBug.java33 package jme3test.model.anim;
/external/webkit/Source/WebCore/platform/animation/
H A DAnimationList.h52 void append(PassRefPtr<Animation> anim) { m_animations.append(anim); } argument
/external/skia/src/views/
H A DSkImageView.cpp271 SkAnimator* anim = new SkAnimator; local
273 if (!anim->decodeURI(fUri.c_str()))
275 delete anim;
279 anim->setHostEventSink(this);
281 fData.fAnim = anim;
H A DSkWidgetViews.cpp52 void init_skin_anim(const char path[], SkAnimator* anim) argument
54 SkASSERT(path && anim);
64 if (!anim->decodeStream(&stream))
71 void init_skin_anim(SkinEnum se, SkAnimator* anim) argument
73 init_skin_anim(get_skin_enum_path(se), anim); local
80 SkAnimator anim; local
83 init_skin_anim(se, &anim);
84 anim.draw(&canvas, paint, 0);
91 SkAnimator anim; local
94 if (!anim
[all...]
H A DSkWidgets.cpp268 SkAnimator* anim = get_skin_animator(kPushButton_SkinType); local
270 if (anim)
280 (void)anim->doUserEvent(evt);
282 anim->draw(canvas, &paint, SkTime::GetMSecs());
/external/chromium/chrome/browser/ui/touch/frame/
H A Dtouch_browser_frame_view.cc257 void TouchBrowserFrameView::AnimationProgressed(const ui::Animation* anim) { argument
259 ui::Tween::ValueBetween(anim->GetCurrentValue(), kKeyboardHeight, 0));
261 ui::Tween::ValueBetween(anim->GetCurrentValue(), 0, kKeyboardHeight));
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimControl.java155 * @param anim The animation to add.
157 public void addAnim(Animation anim) { argument
161 animationMap.put(anim.getName(), anim);
166 * @param anim The animation to remove.
168 public void removeAnim(Animation anim) { argument
169 if (!animationMap.containsKey(anim.getName())) {
174 animationMap.remove(anim.getName());
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteComponent.java153 public final void addAnimation(SpriteAnimation anim) { argument
154 mAnimations.add(anim);
/external/skia/src/animator/
H A DSkDisplayPost.cpp219 SkAnimator* anim = maker.getAnimator(); local
223 targetID = anim->getSinkID();
229 anim = fTargetMaker->getAnimator();
234 anim->onEventPost(new SkEvent(fEvent), targetID);
236 anim->onEventPostTime(new SkEvent(fEvent), targetID, futureTime);
268 SkAnimator* anim = fTargetMaker->getAnimator(); local
269 fSinkID = anim->getSinkID();
H A DSkDisplayApply.cpp170 SkAnimateBase* anim = (SkAnimateBase*) (*animPtr)->deepCopy(maker); local
171 *result->fAnimators.append() = anim;
172 maker->helperAdd(anim);
671 SkAnimateBase* anim = *animPtr; local
673 if (anim->fTarget == NULL || anim->fTargetIsScope) {
674 anim->fTargetIsScope = true;
676 anim->fTarget = scope;
678 anim->setTarget(maker);
679 anim
[all...]
/external/webkit/Source/WebCore/page/animation/
H A DCompositeAnimation.cpp70 KeyframeAnimation* anim = it->second.get(); local
71 animationController()->animationWillBeRemoved(anim);
72 anim->clear();
94 const Animation* anim = targetStyle->transitions()->animation(i); local
95 bool isActiveTransition = anim->duration() || anim->delay() > 0;
97 int prop = anim->property();
169 m_transitions.set(prop, ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle));
183 ImplicitAnimation* anim = it->second.get(); local
184 if (!anim
226 const Animation* anim = targetStyle->animations()->animation(i); local
343 KeyframeAnimation* anim = it->second.get(); local
392 RefPtr<KeyframeAnimation> anim = it->second; local
419 ImplicitAnimation* anim = it->second.get(); local
437 KeyframeAnimation* anim = it->second.get(); local
446 ImplicitAnimation* anim = it->second.get(); local
458 ImplicitAnimation* anim = it->second.get(); local
470 ImplicitAnimation* anim = it->second.get(); local
483 KeyframeAnimation* anim = it->second.get(); local
492 ImplicitAnimation* anim = it->second.get(); local
558 KeyframeAnimation* anim = it->second.get(); local
567 ImplicitAnimation* anim = it->second.get(); local
584 RefPtr<WebKitAnimation> anim = WebKitAnimation::create(keyframeAnimation); local
[all...]
H A DAnimationBase.h140 void setAnimation(const Animation* anim) { m_animation = const_cast<Animation*>(anim); } argument
218 static bool blendProperties(const AnimationBase* anim, int prop, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress);
H A DAnimationBase.cpp95 static inline Color blendFunc(const AnimationBase* anim, const Color& from, const Color& to, double progress) argument
106 Color premultBlended(blendFunc(anim, premultFrom.red(), premultTo.red(), progress),
107 blendFunc(anim, premultFrom.green(), premultTo.green(), progress),
108 blendFunc(anim, premultFrom.blue(), premultTo.blue(), progress),
109 blendFunc(anim, premultFrom.alpha(), premultTo.alpha(), progress));
119 static inline LengthSize blendFunc(const AnimationBase* anim, const LengthSize& from, const LengthSize& to, double progress) argument
121 return LengthSize(blendFunc(anim, from.width(), to.width(), progress),
122 blendFunc(anim, from.height(), to.height(), progress));
125 static inline IntSize blendFunc(const AnimationBase* anim, const IntSize& from, const IntSize& to, double progress) argument
127 return IntSize(blendFunc(anim, fro
131 blendFunc(const AnimationBase* anim, ShadowStyle from, ShadowStyle to, double progress) argument
142 blendFunc(const AnimationBase* anim, const ShadowData* from, const ShadowData* to, double progress) argument
157 blendFunc(const AnimationBase* anim, const TransformOperations& from, const TransformOperations& to, double progress) argument
196 blendFunc(const AnimationBase* anim, EVisibility from, EVisibility to, double progress) argument
208 blendFunc(const AnimationBase* anim, const LengthBox& from, const LengthBox& to, double progress) argument
286 blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const argument
305 blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const argument
323 blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const argument
361 blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const argument
420 blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const argument
486 blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer* b, double progress) const argument
539 blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const argument
584 blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const argument
849 blendProperties(const AnimationBase* anim, int prop, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) argument
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dntp_resource_cache.cc352 std::string anim = local
354 localized_strings.SetString("anim", anim);
/external/quake/quake/src/QW/client/
H A Dsbar.c675 int f, anim; local
706 anim = 1;
707 sb_updates = 0; // make sure the anim gets drawn over
710 anim = 0;
711 Sbar_DrawPic (112, 0, sb_faces[f][anim]);
H A Dgl_rmain.c508 int anim; local
599 anim = (int)(cl.time*10) & 3;
600 GL_Bind(paliashdr->gl_texturenum[currententity->skinnum][anim]);
/external/quake/quake/src/WinQuake/
H A Dsbar.cpp830 int f, anim; local
913 anim = 1;
914 sb_updates = 0; // make sure the anim gets drawn over
917 anim = 0;
918 Sbar_DrawPic (112, 0, sb_faces[f][anim]);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DLayerAndroid.cpp299 RefPtr<AndroidAnimation> anim = prpAnim; local
300 pair<String, int> key(anim->name(), anim->type());
301 removeAnimationsForProperty(anim->type());
302 m_animations.add(key, anim);
678 ALOGD("%*slayer %p(%d) rl %p %s surface %p lvl: %d, fixed %d, anim %d, intCom %d, haveClip %d scroll %d hasText (layer: %d surface: %d) hasContent %d size %.2f x %.2f",

Completed in 546 milliseconds

12