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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/base/
timing.h 37 class Timing {
39 Timing();
40 virtual ~Timing();
49 // timing unit, they do not necessarily correlate because wall-clock
65 // Timing object for each thread.
timing.cc 28 #include "talk/base/timing.h"
46 Timing::Timing() {
59 Timing::~Timing() {
66 double Timing::WallTimeNow() {
83 double Timing::TimerNow() {
87 double Timing::BusyWait(double period) {
94 double Timing::IdleWait(double period) {
  /external/proguard/src/proguard/gui/splash/
Timing.java 24 * This interface maps a time to a normalized timing between 0 and 1.
28 interface Timing
31 * Returns the timing for the given time.
ConstantTiming.java 24 * This Timing is constant over time.
28 public class ConstantTiming implements Timing
30 private final double timing; field in class:ConstantTiming
43 * @param timing the constant value of the timing.
45 public ConstantTiming(double timing)
47 this.timing = timing;
51 // Implementation for Timing.
55 return timing;
    [all...]
LinearDouble.java 24 * This VariableDouble varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearDouble
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearDouble(double fromValue, double toValue, Timing timing)
45 this.timing = timing
    [all...]
LinearInt.java 24 * This VariableColor varies linearly with respect to its Timing.
32 private final Timing timing; field in class:LinearInt
37 * @param fromValue the value that corresponds to a timing of 0.
38 * @param toValue the value that corresponds to a timing of 1.
39 * @param timing the applied timing.
41 public LinearInt(int fromValue, int toValue, Timing timing)
45 this.timing = timing
    [all...]
SawToothTiming.java 24 * This Timing ramps up linearly from 0 to 1 in a given repeated time interval.
28 public class SawToothTiming implements Timing
46 // Implementation for Timing.
TypeWriterString.java 25 * Timing, as if it is being written on a typewriter. A cursor at the end
33 private final Timing timing; field in class:TypeWriterString
42 * @param timing the applied timing.
44 public TypeWriterString(String string, Timing timing)
47 this.timing = timing;
55 double t = timing.getTiming(time)
    [all...]
LinearTiming.java 24 * This Timing ramps up linearly from 0 to 1 in a given time interval.
28 public class LinearTiming implements Timing
36 * @param fromTime the time at which the timing starts ramping up from 0.
37 * @param toTime the time at which the timing stops ramping up at 1.
46 // Implementation for Timing.
SineTiming.java 24 * This Timing varies between 0 and 1, as a sine wave over time.
28 public class SineTiming implements Timing
46 // Implementation for Timing.
SmoothTiming.java 24 * This Timing ramps up smoothly from 0 to 1 in a given time interval.
28 public class SmoothTiming implements Timing
36 * @param fromTime the time at which the timing starts ramping up from 0.
37 * @param toTime the time at which the timing stops ramping up at 1.
46 // Implementation for Timing.
61 double timing = (double) (time - fromTime) / (double) (toTime - fromTime); local
64 return timing * timing * (3.0 - 2.0 * timing);
LinearColor.java 26 * This VariableColor varies linearly with respect to its Timing.
34 private final Timing timing; field in class:LinearColor
42 * @param fromValue the value that corresponds to a timing of 0.
43 * @param toValue the value that corresponds to a timing of 1.
44 * @param timing the applied timing.
46 public LinearColor(Color fromValue, Color toValue, Timing timing)
50 this.timing = timing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
TimedItemCalculations.h 35 #include "core/animation/Timing.h"
41 static inline TimedItem::Phase calculatePhase(double activeDuration, double localTime, const Timing& specified)
53 static inline bool isActiveInParentPhase(TimedItem::Phase parentPhase, Timing::FillMode fillMode)
57 return fillMode == Timing::FillModeBackwards || fillMode == Timing::FillModeBoth;
61 return fillMode == Timing::FillModeForwards || fillMode == Timing::FillModeBoth;
68 static inline double calculateActiveTime(double activeDuration, double localTime, TimedItem::Phase parentPhase, TimedItem::Phase phase, const Timing& specified)
75 if (specified.fillMode == Timing::FillModeBackwards || specified.fillMode == Timing::FillModeBoth
    [all...]
TimedItemCalculationsTest.cpp 42 Timing timing; local
47 timing.startDelay = 10;
48 timing.fillMode = Timing::FillModeForwards;
49 ASSERT_TRUE(isNull(calculateActiveTime(20, 0, TimedItem::PhaseActive, TimedItem::PhaseBefore, timing)));
50 timing.fillMode = Timing::FillModeNone;
51 ASSERT_TRUE(isNull(calculateActiveTime(20, 0, TimedItem::PhaseActive, TimedItem::PhaseBefore, timing)));
52 timing.fillMode = Timing::FillModeBackwards
90 Timing timing; local
110 Timing timing; local
133 Timing timing; local
157 Timing timing; local
188 Timing timing; local
    [all...]
Animation.h 45 static PassRefPtr<Animation> create(PassRefPtr<Element>, PassRefPtr<AnimationEffect>, const Timing&, PassOwnPtr<TimedItemEventDelegate> = nullptr);
60 Animation(PassRefPtr<Element>, PassRefPtr<AnimationEffect>, const Timing&, PassOwnPtr<TimedItemEventDelegate>);
TimedItemTest.cpp 69 static PassRefPtr<TestTimedItem> create(const Timing& specified)
88 TestTimedItem(const Timing& specified, TestTimedItemEventDelegate* eventDelegate)
99 Timing timing; local
100 timing.hasIterationDuration = true;
101 timing.iterationDuration = 2;
102 RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing);
155 Timing timing; local
156 timing.hasIterationDuration = true
169 Timing timing; local
184 Timing timing; local
199 Timing timing; local
217 Timing timing; local
236 Timing timing; local
265 Timing timing; local
288 Timing timing; local
310 Timing timing; local
332 Timing timing; local
366 Timing timing; local
381 Timing timing; local
397 Timing timing; local
413 Timing timing; local
429 Timing timing; local
449 Timing timing; local
465 Timing timing; local
484 Timing timing; local
505 Timing timing; local
525 Timing timing; local
545 Timing timing; local
    [all...]
Timing.h 40 struct Timing {
55 Timing()
Animation.cpp 40 PassRefPtr<Animation> Animation::create(PassRefPtr<Element> target, PassRefPtr<AnimationEffect> effect, const Timing& timing, PassOwnPtr<TimedItemEventDelegate> eventDelegate)
42 return adoptRef(new Animation(target, effect, timing, eventDelegate));
45 Animation::Animation(PassRefPtr<Element> target, PassRefPtr<AnimationEffect> effect, const Timing& timing, PassOwnPtr<TimedItemEventDelegate> eventDelegate)
46 : TimedItem(timing, eventDelegate)
TimedItem.h 34 #include "core/animation/Timing.h"
82 TimedItem(const Timing&, PassOwnPtr<TimedItemEventDelegate> = nullptr);
101 // FIXME: m_parent and m_startTime are placeholders, they depend on timing groups.
105 Timing m_specified;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdataengine.h 34 #include "talk/base/timing.h"
54 void SetTiming(talk_base::Timing* timing) {
55 timing_.reset(timing);
60 talk_base::scoped_ptr<talk_base::Timing> timing_;
88 // Timing* Used for the RtpClock
89 explicit RtpDataMediaChannel(talk_base::Timing* timing);
90 // Sets Timing == NULL, so you'll need to call set_timer() before
95 void set_timing(talk_base::Timing* timing)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 47 void timingFromAnimationData(const CSSAnimationData* animationData, Timing& timing)
50 timing.startDelay = animationData->delay();
52 timing.iterationDuration = animationData->duration();
53 timing.hasIterationDuration = true;
57 timing.iterationCount = std::numeric_limits<double>::infinity();
59 timing.iterationCount = animationData->iterationCount();
63 timing.timingFunction = animationData->timingFunction();
66 timing.timingFunction = CubicBezierTimingFunction::preset(CubicBezierTimingFunction::Ease);
71 timing.fillMode = Timing::FillModeForwards
189 Timing timing; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
statscollector.h 41 #include "talk/base/timing.h"
89 talk_base::Timing timing_;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
atlantis.c 53 GLboolean Timing = GL_TRUE;
215 Timing = !Timing;
307 if(Timing)
432 glutCreateWindow("Atlantis Timing");
451 glutAddSubMenu("Timing Mode", time_menu);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
atlantis.c 53 GLboolean Timing = GL_TRUE;
215 Timing = !Timing;
307 if(Timing)
432 glutCreateWindow("Atlantis Timing");
451 glutAddSubMenu("Timing Mode", time_menu);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
atlantis.c 53 GLboolean Timing = GL_TRUE;
215 Timing = !Timing;
307 if(Timing)
432 glutCreateWindow("Atlantis Timing");
451 glutAddSubMenu("Timing Mode", time_menu);

Completed in 359 milliseconds

1 2