HomeSort by relevance Sort by last modified time
    Searched refs:timeOffset (Results 1 - 25 of 35) sorted by null

1 2

  /external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.h 39 double timeOffset;
  /external/replicaisland/src/com/replica/replicaisland/
DoorAnimationComponent.java 78 float timeOffset = timeSinceTriggered;
84 timeOffset = openAnimationLength - mSprite.getCurrentAnimationTime();
93 mSprite.setCurrentAnimationTime(timeOffset);
117 float timeOffset = timeSinceTriggered - mStayOpenTime;
119 timeOffset = closeAnimationLength - mSprite.getCurrentAnimationTime();
124 mSprite.setCurrentAnimationTime(timeOffset);
  /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);
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);
297 void setAnimationOnLayer(PlatformCAAnimation*, AnimatedPropertyID, const String& animationName, int index, double timeOffset);
299 void pauseCAAnimationOnLayer(AnimatedPropertyID, const String& animationName, int index, double timeOffset);
364 LayerPropertyAnimation(PassRefPtr<PlatformCAAnimation> caAnimation, const String& animationName, AnimatedPropertyID property, int index, double timeOffset)
369 , m_timeOffset(timeOffset)
384 AnimationProcessingAction(Action action = Remove, double timeOffset = 0)
386 , timeOffset(timeOffset
    [all...]
PlatformCAAnimation.h 87 CFTimeInterval timeOffset() const;
PlatformCALayer.h 183 CFTimeInterval timeOffset() const;
GraphicsLayerCA.cpp 605 bool GraphicsLayerCA::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset)
626 createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOffset, boxSize);
628 createdAnimations = createAnimationFromKeyframes(valueList, anim, animationName, timeOffset);
636 void GraphicsLayerCA::pauseAnimation(const String& animationName, double timeOffset)
648 m_animationsToProcess.add(animationName, AnimationProcessingAction(Pause, timeOffset));
    [all...]
  /external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.h 67 virtual bool startAnimation(double timeOffset);
68 virtual void pauseAnimation(double timeOffset);
ImplicitAnimation.cpp 109 bool ImplicitAnimation::startAnimation(double timeOffset)
115 return layer->backing()->startTransition(timeOffset, m_animatingProperty, m_fromStyle.get(), m_toStyle.get());
118 UNUSED_PARAM(timeOffset);
123 void ImplicitAnimation::pauseAnimation(double timeOffset)
132 layer->backing()->transitionPaused(timeOffset, m_animatingProperty);
135 UNUSED_PARAM(timeOffset);
ImplicitAnimation.h 50 virtual bool startAnimation(double timeOffset);
51 virtual void pauseAnimation(double /*timeOffset*/);
KeyframeAnimation.cpp 248 bool KeyframeAnimation::startAnimation(double timeOffset)
254 return layer->backing()->startAnimation(timeOffset, m_animation.get(), m_keyframes);
257 UNUSED_PARAM(timeOffset);
262 void KeyframeAnimation::pauseAnimation(double timeOffset)
271 layer->backing()->animationPaused(timeOffset, m_keyframes.animationName());
274 UNUSED_PARAM(timeOffset);
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 68 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& keyframesName, double timeOffset);
71 virtual void pauseAnimation(const String& keyframesName, double timeOffset);
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioNode.java 69 protected float timeOffset = 0;
436 return timeOffset;
442 * @param timeOffset The time offset
443 * @throws IllegalArgumentException If timeOffset is negative
445 public void setTimeOffset(float timeOffset) {
446 if (timeOffset < 0f) {
450 this.timeOffset = timeOffset;
453 ((AudioStream) data).setTime(timeOffset);
738 oc.write(timeOffset, "time_offset", 0)
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.h 111 bool startTransition(double timeOffset, int property, const RenderStyle* fromStyle, const RenderStyle* toStyle);
112 void transitionPaused(double timeOffset, int property);
115 bool startAnimation(double timeOffset, const Animation* anim, const KeyframeList& keyframes);
116 void animationPaused(double timeOffset, const String& name);
RenderLayerBacking.cpp     [all...]
  /development/tools/emulator/system/sensors/
sensors_qemu.c 127 int64_t timeOffset;
241 data->timeOffset = 0;
379 data->timeOffset = data->timeStart - t;
381 t += data->timeOffset;
  /sdk/emulator/sensors/
sensors_qemu.c 127 int64_t timeOffset;
241 data->timeOffset = 0;
379 data->timeOffset = data->timeStart - t;
381 t += data->timeOffset;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorTools.h 58 M4OSA_UInt32 timeOffset; //has the duration of clips played.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_sei.h 81 i32 timeOffset[MAX_NUM_CLOCK_TS];
  /external/webkit/Tools/DumpRenderTree/gtk/
EventSender.cpp 57 static int timeOffset = 0;
108 timeOffset += msgQueue[endOfQueue].delay;
260 || timeOffset - lastClickTimeOffset >= 1)
365 lastClickTimeOffset = timeOffset;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCAAnimationMac.mm 188 animation->setTimeOffset(timeOffset());
268 CFTimeInterval PlatformCAAnimation::timeOffset() const
270 return [m_animation.get() timeOffset];
  /external/quake/quake/src/WinQuake/
net.h 321 void SchedulePollProcedure(PollProcedure *pp, double timeOffset);
net_main.cpp 958 void SchedulePollProcedure(PollProcedure *proc, double timeOffset)
962 proc->nextTime = Sys_FloatTime() + timeOffset;
  /gdk/samples/quake/jni/
net.h 321 void SchedulePollProcedure(PollProcedure *pp, double timeOffset);
net_main.cpp 958 void SchedulePollProcedure(PollProcedure *proc, double timeOffset)
962 proc->nextTime = Sys_FloatTime() + timeOffset;
  /external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCAAnimationWin.cpp 179 animation->setTimeOffset(timeOffset());
250 CFTimeInterval PlatformCAAnimation::timeOffset() const

Completed in 752 milliseconds

1 2