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

1 2

  /external/webrtc/webrtc/base/
timing.h 20 class Timing {
22 Timing();
23 virtual ~Timing();
33 // timing unit, they do not necessarily correlate because wall-clock
49 // Timing object for each thread.
timing.cc 11 #include "webrtc/base/timing.h"
29 Timing::Timing() {
42 Timing::~Timing() {
50 double Timing::WallTimeNow() {
67 double Timing::TimerNow() {
71 double Timing::BusyWait(double period) {
78 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/webrtc/talk/media/base/
rtpdataengine.h 37 #include "webrtc/base/timing.h"
54 void SetTiming(rtc::Timing* timing) {
55 timing_.reset(timing);
60 rtc::scoped_ptr<rtc::Timing> timing_;
87 // Timing* Used for the RtpClock
88 explicit RtpDataMediaChannel(rtc::Timing* timing);
89 // Sets Timing == NULL, so you'll need to call set_timer() before
94 void set_timing(rtc::Timing* timing)
    [all...]
rtpdataengine.cc 38 #include "webrtc/base/timing.h"
58 SetTiming(new rtc::Timing());
81 RtpDataMediaChannel::RtpDataMediaChannel(rtc::Timing* timing) {
82 Construct(timing);
89 void RtpDataMediaChannel::Construct(rtc::Timing* timing) {
92 timing_ = timing;
videocapturer.h 49 #include "webrtc/base/timing.h"
367 rtc::Timing frame_length_time_reporter_;
rtpdataengine_unittest.cc 39 #include "webrtc/base/timing.h"
41 class FakeTiming : public rtc::Timing {
98 cricket::RtpDataEngine* CreateEngine(FakeTiming* timing) {
100 dme->SetTiming(timing);
163 // Timing passed into dme_. Owned by dme_;
mediachannel.h 51 class Timing;
    [all...]
  /art/runtime/base/
timing_logger.h 77 // A timing logger that knows when a split starts for the purposes of logging tools, like systrace.
82 class Timing {
84 Timing(uint64_t time, const char* name) : time_(time), name_(name) {
140 // Starts a timing.
142 // Ends the current timing.
144 // End the current timing and start a new timing. Usage not recommended.
151 // Find the index of a timing by name.
155 // Scoped timing splits that can be nested and composed with the explicit split
165 // Closes the current timing and opens a new timing
    [all...]
timing_logger.cc 72 const std::vector<TimingLogger::Timing>& timings = logger.GetTimings();
140 timings_.push_back(Timing(NanoTime(), label));
145 timings_.push_back(Timing(NanoTime(), nullptr));
190 CHECK(open_stack.empty()) << "Missing ending for timing "
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
network_quiescence.js 23 // Set the Resource Timing interface functions that will be used below
59 * This method uses the Resource Timing interface, which is described at
60 * http://www.w3.org/TR/resource-timing/. It determines whether the time
86 // objects are all in milliseconds since performance.timing.navigationStart,
88 var timing = real_performance.timing;
89 var loadTime = timing.loadEventEnd - timing.navigationStart;
92 // If there have been no resource timing entries, or the last entry was
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguardgui.jar 
  /external/icu/icu4c/source/test/perf/collationperf/
CollPerf.pl 188 <td>Timing for string collation, an incremental compare of strings.</td>
193 <td>Timing for generation of sort keys, used to 'precompile' information so
  /external/proguard/lib/
proguardgui.jar 
  /external/llvm/lib/Target/Hexagon/
HexagonGenInsert.cpp 49 static cl::opt<bool> OptTiming("insert-timing", cl::init(false), cl::Hidden,
50 cl::ZeroOrMore, cl::desc("Enable timing of insert generation"));
51 static cl::opt<bool> OptTimingDetail("insert-timing-detail", cl::init(false),
52 cl::Hidden, cl::ZeroOrMore, cl::desc("Enable detailed timing of insert "
    [all...]
  /external/webrtc/talk/app/webrtc/
statscollector.cc 38 #include "webrtc/base/timing.h"
378 return rtc::Timing::WallTimeNow() * rtc::kNumMillisecsPerSec;
    [all...]

Completed in 857 milliseconds

1 2