Searched refs:time (Results 251 - 275 of 3443) sorted by relevance

<<11121314151617181920>>

/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalyze_slices_test.js115 assertEquals(0, table.rows[1].time);
116 assertAlmostEquals(0.002, table.rows[2].time);
131 assertEquals(0, table.rows[2].time);
132 assertAlmostEquals(0.002, table.rows[3].time);
156 assertAlmostEquals(0, table.rows[4].time);
159 assertAlmostEquals(0.18, table.rows[5].time);
181 assertObjectEquals({label: 'Selection start', time: 0}, t.rows[1]);
182 assertObjectEquals({label: 'Selection extent', time: 0.18}, t.rows[2]);
187 assertObjectEquals({label: 'Start', time: 0}, t.rows[1]);
188 assertObjectEquals({label: 'Duration', time
[all...]
/external/chromium_org/content/child/
H A Dtouch_fling_gesture_curve.cc64 // complicated time scaling is required.
69 // displacement at any point in time. This guarantees that fling
112 // Compute time-offset for start velocity.
115 // Compute curve position at offset time
125 bool TouchFlingGestureCurve::apply(double time, WebGestureCurveTarget* target) { argument
128 if (time <= 0)
133 if (time + time_offset_ < curve_duration_) {
134 displacement = position(time + time_offset_) - position_offset_;
135 speed = velocity(time + time_offset_);
150 if (time
[all...]
/external/chromium_org/media/blink/
H A Dwebsourcebuffer_impl.cc18 static base::TimeDelta DoubleToTimeDelta(double time) { argument
19 DCHECK(!base::IsNaN(time));
20 DCHECK_NE(time, -std::numeric_limits<double>::infinity());
22 if (time == std::numeric_limits<double>::infinity())
25 // Don't use base::TimeDelta::Max() here, as we want the largest finite time
30 if (time >= max_time_in_seconds)
34 time * base::Time::kMicrosecondsPerSecond);
/external/chromium_org/media/cast/test/utility/
H A Dnetload.py12 import time namespace
37 last_report = time.time()
41 time.sleep(5)
42 now = time.time();
/external/chromium_org/tools/site_compare/drivers/win32/
H A Dkeyboard.py13 import time # for sleep namespace
48 keystroke_time: length of time (in seconds) to "hold down" the key
57 time.sleep(keystroke_time)
83 keystroke_time: length of time (in secondes) to "hold down" the key
84 time_between_keystrokes: length of time (seconds) to pause between keys
127 time.sleep(1)
162 time.sleep(time_between_keystrokes)
179 time.sleep(1)
185 time.sleep(1)
H A Dmouse.py13 import time # for sleep namespace
26 the size of the screen is fixed at module load time and does not change
80 time.sleep(click_time)
90 time_between_clicks: time to pause between clicks
96 time.sleep(time_between_clicks)
101 """Move the mouse cursor to a specified location, taking the specified time.
105 duration: amount of time the move should take
106 tick: amount of time between successive moves of the mouse
134 time.sleep(tick)
183 time_between_clicks: length of time t
[all...]
/external/eigen/bench/btl/generic_bench/timers/
H A Dx86_timer.hh23 #include <sys/time.h>
89 initial = time(0);
94 while(time(0)==initial);
96 initial = time(0);
101 while(time(0)==initial);
102 final=time(0);
104 // INFOS("fine grained time : "<< get_elapsed_time_in_second());
105 // INFOS("coarse grained time : "<< final-initial);
/external/antlr/antlr-3.4/runtime/Python/
H A Dxmlrunner.py13 import time namespace
30 def __init__(self, test, time):
32 self._time = time
37 def create_success(test, time):
39 return _TestInfo(test, time)
42 def create_failure(test, time, failure):
44 info = _TestInfo(test, time)
49 def create_error(test, time, error):
51 info = _TestInfo(test, time)
60 stream.write(' <testcase classname="%(class)s" name="%(method)s" time
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dintegration_test.py16 import time namespace
104 start_time = time.time()
113 print('Took %s seconds' % (time.time() - start_time))
120 #start_time = time.time()
150 #print('Took %s seconds.' % (time.time() - start_time))
153 #start_time = time
[all...]
/external/chromium_org/tools/coverity/
H A Dcoverity.py33 import time namespace
122 start_time = time.time()
129 # the time to read the password is after we do the chdir().
139 print 'Elapsed time: %ds' % (time.time() - start_time)
169 print 'Elapsed time: %ds' % (time.time()
[all...]
/external/chromium_org/build/android/pylib/device/
H A Ddecorators_test.py13 import time namespace
40 time.sleep(100)
42 start_time = time.time()
45 elapsed_time = time.time() - start_time
120 time.sleep(100)
122 start_time = time.time()
125 elapsed_time = time
[all...]
/external/blktrace/btt/
H A Dtrace_remap.c55 update_q2a(q_iop, tdelta(q_iop->t.time, a_iop->t.time));
/external/ceres-solver/internal/ceres/
H A Dwall_time.cc42 #include <sys/time.h>
53 return static_cast<double>(std::time(NULL));
/external/chromium_org/build/android/pylib/utils/
H A Dxvfb.py11 import time namespace
46 time.sleep(0.25)
/external/chromium_org/cc/blink/
H A Dweb_filter_animation_curve_impl.cc35 keyframe.time(), filter_operations, CreateTimingFunction(type)));
47 keyframe.time(),
H A Dweb_scroll_offset_animation_curve_impl.cc36 WebFloatPoint WebScrollOffsetAnimationCurveImpl::getValue(double time) const {
37 gfx::Vector2dF value = curve_->GetValue(time);
/external/chromium_org/content/test/plugin/
H A Dplugin_schedule_timer_test.h9 #include "base/time/time.h"
33 int time; member in struct:NPAPIClient::ScheduleTimerTest::Event
59 int FindUnreceivedEvent(int time, uint32 timer_id);
/external/chromium_org/mojo/services/test_service/
H A Dtest_time_service_impl.cc5 #include "base/time/time.h"
38 int64 time(frozen_time.ToInternalValue());
39 callback.Run(time);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DClock.cpp41 void Clock::setCurrentTime(double time) argument
44 m_offset = time;
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DRunAllTests.cpp41 #include <base/time/time.h>
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dtztrans.h27 * <code>TimeZoneTransition</code> is a class representing a time zone transition.
28 * An instance has a time of transition and rules for both before and after the transition.
34 * Constructs a <code>TimeZoneTransition</code> with the time and the rules before/after
37 * @param time The time of transition in milliseconds since the base time.
38 * @param from The time zone rule used before the transition.
39 * @param to The time zone rule used after the transition.
42 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to);
97 * Returns the time o
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dprofiler.cc20 // suffix for a time value given in seconds.
24 double time() const { return time_; } function in class:__anon15678::FormattedTime
29 std::ostream& operator<<(std::ostream& stream, const FormattedTime& time) { argument
30 if (time.time() < 1.0) {
31 stream << (time.time() * 1000.0) << "ms";
33 stream << time.time() << 's';
110 // Get the time ASA
[all...]
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.h47 // of the logged/plotted string/value last. Plot *time* is inherited down the
50 // so it can be easily filtered, plus it outputs the current time.
72 // Set current time (only affects PLOT output). Down the call tree, the latest
73 // time set always takes precedence.
74 // |time| is an int64_t time in ms, or -1 to inherit time from previous context.
75 #define BWE_TEST_LOGGING_TIME(time)
89 // PLOT Context1_Context2_Name time value
91 // |time| i
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Devent_posix.h17 #include <time.h>
38 virtual bool StartTimer(bool periodic, unsigned long time) OVERRIDE;
/external/chromium_org/third_party/webrtc/video_engine/
H A Dcall_stats.h52 // Helper struct keeping track of the time a rtt value is reported.
55 : rtt(new_rtt), time(rtt_time) {}
57 const int64_t time; member in struct:webrtc::CallStats::RttTime
64 // The last time 'Process' resulted in statistic update.
69 // All Rtt reports within valid time interval, oldest first.

Completed in 617 milliseconds

<<11121314151617181920>>