HomeSort by relevance Sort by last modified time
    Searched full:animationname (Results 1 - 25 of 40) sorted by null

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
AnimationTrack.java 57 protected String animationName;
63 public AnimationTrack(Spatial model, String animationName) {
65 this.animationName = animationName;
66 initialDuration = model.getControl(AnimControl.class).getAnimationLength(animationName);
69 public AnimationTrack(Spatial model, String animationName, float initialDuration) {
72 this.animationName = animationName;
75 public AnimationTrack(Spatial model, String animationName, LoopMode loopMode) {
77 initialDuration = model.getControl(AnimControl.class).getAnimationLength(animationName);
    [all...]
  /external/webkit/Source/WebCore/dom/
WebKitAnimationEvent.cpp 38 WebKitAnimationEvent::WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime)
40 , m_animationName(animationName)
52 const String& animationName,
60 m_animationName = animationName;
64 const String& WebKitAnimationEvent::animationName() const
WebKitAnimationEvent.h 39 static PassRefPtr<WebKitAnimationEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
41 return adoptRef(new WebKitAnimationEvent(type, animationName, elapsedTime));
49 const String& animationName,
52 const String& animationName() const;
59 WebKitAnimationEvent(const AtomicString& type, const String& animationName, double elapsedTime);
WebKitTransitionEvent.h 39 static PassRefPtr<WebKitTransitionEvent> create(const AtomicString& type, const String& animationName, double elapsedTime)
41 return adoptRef(new WebKitTransitionEvent(type, animationName, elapsedTime));
WebKitAnimationEvent.idl 29 readonly attribute DOMString animationName;
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.h 105 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
106 virtual void pauseAnimation(const String& animationName, double timeOffset);
107 virtual void removeAnimation(const String& animationName);
161 bool createAnimationFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
162 bool createTransformAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset, const IntSize& boxSize);
177 bool animationIsRunning(const String& animationName) const
179 return m_runningAnimations.find(animationName) != m_runningAnimations.end();
297 void setAnimationOnLayer(PlatformCAAnimation*, AnimatedPropertyID, const String& animationName, int index, double timeOffset);
298 bool removeCAAnimationFromLayer(AnimatedPropertyID, const String& animationName, int index);
299 void pauseCAAnimationOnLayer(AnimatedPropertyID, const String& animationName, int index, double timeOffset)
    [all...]
GraphicsLayerCA.cpp 228 static String animationIdentifier(const String& animationName, AnimatedPropertyID property, int index)
230 return makeString(animationName, '_', String::number(property), '_', String::number(index));
605 bool GraphicsLayerCA::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset)
607 ASSERT(!animationName.isEmpty());
626 createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOffset, boxSize);
628 createdAnimations = createAnimationFromKeyframes(valueList, anim, animationName, timeOffset);
636 void GraphicsLayerCA::pauseAnimation(const String& animationName, double timeOffset)
638 if (!animationIsRunning(animationName))
641 AnimationsToProcessMap::iterator it = m_animationsToProcess.find(animationName);
648 m_animationsToProcess.add(animationName, AnimationProcessingAction(Pause, timeOffset))
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
KeyframeList.h 64 KeyframeList(RenderObject* renderer, const AtomicString& animationName)
65 : m_animationName(animationName)
76 const AtomicString& animationName() const { return m_animationName; }
  /external/webkit/Source/WebKit/chromium/src/
WebAnimationControllerImpl.cpp 59 const WebString& animationName,
66 animationName,
WebAnimationControllerImpl.h 49 const WebString& animationName,
  /external/webkit/Source/WebKit/chromium/public/
WebAnimationController.h 47 const WebString& animationName,
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 100 public Result animate(Object targetObject, String animationName,
106 mLastResult = mSession.animate(targetObject, animationName, isFrameworkAnimation,
  /external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.h 52 const AtomicString& name() const { return m_keyframes.animationName(); }
KeyframeAnimation.cpp 271 layer->backing()->animationPaused(timeOffset, m_keyframes.animationName());
290 layer->backing()->animationFinished(m_keyframes.animationName());
348 m_compAnim->animationController()->addEventToDispatch(element, eventType, m_keyframes.animationName(), elapsedTime);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFramePrivate.idl 88 HRESULT pauseAnimation([in] BSTR animationName, [in] IDOMNode* node, [in] double secondsFromNow, [out, retval] BOOL* animationWasRunning);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebFrame.h 109 bool pauseAnimationOnElementWithId(const String& animationName, const String& elementID, double time);
WebFrame.cpp 388 bool WebFrame::pauseAnimationOnElementWithId(const String& animationName, const String& elementID, double time)
404 return controller->pauseAnimationAtTime(coreNode->renderer(), animationName, time);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
LayoutTestController.idl 76 boolean pauseAnimationAtTimeOnElementWithId(in DOMString animationName, in double time, in DOMString elementId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PlayAnimationMenu.java 136 public PlayAnimationAction(String title, String animationName, boolean isFrameworkAnim) {
138 mAnimationName = animationName;
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.h 304 virtual bool addAnimation(const KeyframeValueList&, const IntSize& /*boxSize*/, const Animation*, const String& /*animationName*/, double /*timeOffset*/) { return false; }
305 virtual void pauseAnimation(const String& /*animationName*/, double /*timeOffset*/) { }
306 virtual void removeAnimation(const String& /*animationName*/) { }
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.h 98 bool pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId);
LayoutTestController.cpp 164 bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId)
169 return WKBundleFramePauseAnimationOnElementWithId(mainFrame, toWK(animationName).get(), toWK(elementId).get(), time);
  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.cpp     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 626 public Result animate(Object targetObject, String animationName,
637 ResourceType.ANIMATOR, animationName);
639 animationId = Bridge.getResourceId(ResourceType.ANIMATOR, animationName);
643 ResourceType.ANIMATOR, animationName);
646 ResourceType.ANIMATOR, animationName);
656 new PlayAnimationThread(anim, this, animationName, listener).start();
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.cpp 255 bool DumpRenderTreeSupportQt::pauseAnimation(QWebFrame *frame, const QString &animationName, double time, const QString &elementId)
272 return controller->pauseAnimationAtTime(coreNode->renderer(), animationName, time);
    [all...]

Completed in 3983 milliseconds

1 2