/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/content/browser/renderer_host/p2p/ |
socket_host_throttler.h | 13 class Timing; 27 void SetTiming(scoped_ptr<talk_base::Timing> timing); 32 scoped_ptr<talk_base::Timing> timing_;
|
socket_host_throttler.cc | 7 #include "third_party/libjingle/source/talk/base/timing.h" 19 : timing_(new talk_base::Timing()), 26 void P2PMessageThrottler::SetTiming(scoped_ptr<talk_base::Timing> timing) { 27 timing_ = timing.Pass();
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
CompositorAnimationsImpl.h | 33 #include "core/animation/Timing.h" 51 static bool convertTimingForCompositor(const Timing&, CompositorTiming& out); 53 static void getAnimationOnCompositor(const Timing&, const KeyframeAnimationEffect&, Vector<OwnPtr<blink::WebAnimation> >& animations);
|
TimedItemCalculationsTest.cpp | 42 Timing timing; local 44 // calculateActiveTime(activeDuration, localTime, parentPhase, phase, timing) 47 timing.startDelay = 10; 48 timing.fillMode = Timing::FillModeForwards; 49 EXPECT_TRUE(isNull(calculateActiveTime(20, 0, TimedItem::PhaseActive, TimedItem::PhaseBefore, timing))); 50 timing.fillMode = Timing::FillModeNone; 51 EXPECT_TRUE(isNull(calculateActiveTime(20, 0, TimedItem::PhaseActive, TimedItem::PhaseBefore, timing))); 90 Timing timing; local 111 EXPECT_EQ(std::numeric_limits<double>::infinity(), calculateScaledActiveTime(std::numeric_limits<double>::infinity(), std::numeric_limits<double>::infinity(), 0, timing)); local 116 Timing timing; local 136 Timing timing; local 157 Timing timing; local 188 Timing timing; local [all...] |
InertAnimation.h | 43 static PassRefPtr<InertAnimation> create(PassRefPtr<AnimationEffect>, const Timing&, bool paused); 54 InertAnimation(PassRefPtr<AnimationEffect>, const Timing&, bool paused);
|
TimedItemCalculations.h | 35 #include "core/animation/Timing.h" 48 static inline TimedItem::Phase calculatePhase(double activeDuration, double localTime, const Timing& specified) 60 static inline bool isActiveInParentPhase(TimedItem::Phase parentPhase, Timing::FillMode fillMode) 64 return fillMode == Timing::FillModeBackwards || fillMode == Timing::FillModeBoth; 68 return fillMode == Timing::FillModeForwards || fillMode == Timing::FillModeBoth; 75 static inline double calculateActiveTime(double activeDuration, double localTime, TimedItem::Phase parentPhase, TimedItem::Phase phase, const Timing& specified) 82 if (specified.fillMode == Timing::FillModeBackwards || specified.fillMode == Timing::FillModeBoth [all...] |
InertAnimation.cpp | 36 PassRefPtr<InertAnimation> InertAnimation::create(PassRefPtr<AnimationEffect> effect, const Timing& timing, bool paused) 38 return adoptRef(new InertAnimation(effect, timing, paused)); 41 InertAnimation::InertAnimation(PassRefPtr<AnimationEffect> effect, const Timing& timing, bool paused) 42 : TimedItem(timing)
|
CompositorAnimations.h | 35 #include "core/animation/Timing.h" 43 // Given an input timing function between keyframe at 0 and keyframe at 1.0, we 44 // need a timing function such that the behavior with the keyframes swapped is 45 // equivalent to reversing time with the input timing function and keyframes. 46 // This means flipping the timing function about x=0.5 and about y=0.5. 61 virtual bool isCandidateForAnimationOnCompositor(const Timing&, const AnimationEffect&); 64 virtual bool startAnimationOnCompositor(const Element&, const Timing&, const AnimationEffect&, Vector<int>& startedAnimationIds);
|
Timing.h | 40 struct Timing { 55 Timing()
|
TimedItem.h | 34 #include "core/animation/Timing.h" 87 const Timing& specified() const { return m_specified; } 90 TimedItem(const Timing&, PassOwnPtr<EventDelegate> = nullptr); 120 // FIXME: m_parent and m_startTime are placeholders, they depend on timing groups. 124 Timing m_specified;
|
TimedItemTest.cpp | 67 static PassRefPtr<TestTimedItem> create(const Timing& specified) 103 TestTimedItem(const Timing& specified, TestTimedItemEventDelegate* eventDelegate) 116 Timing timing; local 117 timing.hasIterationDuration = true; 118 timing.iterationDuration = 2; 119 RefPtr<TestTimedItem> timedItem = TestTimedItem::create(timing); 170 Timing timing; local 171 timing.hasIterationDuration = true 184 Timing timing; local 199 Timing timing; local 214 Timing timing; local 232 Timing timing; local 251 Timing timing; local 270 Timing timing; local 299 Timing timing; local 322 Timing timing; local 344 Timing timing; local 366 Timing timing; local 396 Timing timing; local 411 Timing timing; local 427 Timing timing; local 443 Timing timing; local 459 Timing timing; local 479 Timing timing; local 496 Timing timing; local 515 Timing timing; local 536 Timing timing; local 556 Timing timing; local 576 Timing timing; local 608 Timing timing; local 639 Timing timing; local 670 Timing timing; local 701 Timing timing; local 746 Timing timing; local [all...] |
Animation.h | 47 static PassRefPtr<Animation> create(PassRefPtr<Element>, PassRefPtr<AnimationEffect>, const Timing&, Priority = DefaultPriority, PassOwnPtr<EventDelegate> = nullptr); 79 Animation(PassRefPtr<Element>, PassRefPtr<AnimationEffect>, const Timing&, Priority, PassOwnPtr<EventDelegate>);
|
/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...] |