Home
last modified time | relevance | path

Searched refs:new_time (Results 1 – 9 of 9) sorted by relevance

/external/libweave/src/privet/
Dauth_manager_unittest.cc82 auto new_time = clock_.Now() + base::TimeDelta::FromDays(11); in TEST_F() local
83 EXPECT_CALL(clock_, Now()).WillRepeatedly(Return(new_time)); in TEST_F()
205 auto new_time = clock_.Now() + base::TimeDelta::FromDays(15); in TEST_F() local
206 EXPECT_CALL(clock_, Now()).WillRepeatedly(Return(new_time)); in TEST_F()
285 auto new_time = clock_.Now() + base::TimeDelta::FromSeconds(15); in TEST_F() local
286 EXPECT_CALL(clock_, Now()).WillRepeatedly(Return(new_time)); in TEST_F()
299 auto new_time = clock_.Now() + base::TimeDelta::FromSeconds(15); in TEST_F() local
300 EXPECT_CALL(clock_, Now()).WillRepeatedly(Return(new_time)); in TEST_F()
314 auto new_time = clock_.Now() + base::TimeDelta::FromSeconds(200); in TEST_F() local
315 EXPECT_CALL(clock_, Now()).WillRepeatedly(Return(new_time)); in TEST_F()
/external/libweave/examples/provider/
Devent_task_runner.cc20 base::Time new_time = base::Time::Now() + delay; in PostDelayedTask() local
21 if (queue_.empty() || new_time < queue_.top().first.first) { in PostDelayedTask()
24 queue_.emplace(std::make_pair(new_time, ++counter_), task); in PostDelayedTask()
/external/llvm/include/llvm/Support/
DTimeValue.h106 explicit TimeValue( double new_time ) in TimeValue() argument
108 SecondsType integer_part = static_cast<SecondsType>( new_time ); in TimeValue()
110 nanos_ = static_cast<NanoSecondsType>( (new_time - in TimeValue()
/external/skia/bench/
Dbench_compare.py171 , new_time='new'
187 , new_time=bench_diff.new.time
Dbench_util.py141 for new_time in TIME_RE_COMPILED.finditer(times):
142 current_time_type = new_time.group(1)
144 new_time.group(2).strip().split(',')]
/external/autotest/client/site_tests/video_YouTubePage/
Dvideo_YouTubePage.py88 def seek_video(self, new_time): argument
94 self.tab.ExecuteJavaScript('window.__seek(%f);' % new_time)
/external/fonttools/Lib/fontTools/
Dmerge.py873 new_time = time.time()
874 print("Took %0.3fs to %s" %(new_time - self.last_time,
876 self.last_time = new_time
Dsubset.py2091 new_time = time.time()
2092 print("Took %0.3fs to %s" %(new_time - self.last_time,
2094 self.last_time = new_time
/external/autotest/client/cros/
Dpower_status.py1660 new_time = time.time()
1662 self._stats[state] += new_time - self._time
1664 self._stats[state] = new_time - self._time
1665 self._time = new_time