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

1 2

  /external/autotest/client/cros/video/
sequence_generator.py 33 start_total_ms = int(start.total_seconds() * 1000)
34 stop_total_ms = int(stop.total_seconds() * 1000)
67 start_total_s = int(start.total_seconds())
69 stop_total_s = int(stop.total_seconds())
screenshot_file_namer.py 54 hours, remainder = divmod(time_delta_value.total_seconds(), 3600)
vimeo_player.py 42 int(t.total_seconds())))
native_html5_player.py 99 cmd = '%s.currentTime=%.3f' % (self.video_id, t.total_seconds())
  /external/toolchain-utils/mem_tests/
utils.py 22 return (timestamp - base_time).total_seconds()
  /external/v8/src/
dateparser.cc 107 int total_seconds = static_cast<int>(total_seconds_unsigned); local
109 total_seconds = -total_seconds;
111 DCHECK(Smi::IsValid(total_seconds));
112 output->set(UTC_OFFSET, Smi::FromInt(total_seconds));
  /external/autotest/contrib/
compare_suite.py 196 self.get_first_task_start_time()).total_seconds()
202 time += task.time_used.total_seconds()
209 time += task.time_used_db.total_seconds()
216 self.time_used.total_seconds())
222 self.time_used.total_seconds())
243 total += task.time_used.total_seconds()
265 total += task.time_used_db.total_seconds()
311 [(HYPERLINK % (data[0].log, data[0].time_used.total_seconds()))
315 [HYPERLINK % (data[1].log, data[1].time_used.total_seconds())
389 delimiter.join([str(suite_job.time_used.total_seconds()/60
    [all...]
  /external/autotest/client/site_tests/cheets_StartAndroid/
cheets_StartAndroid.py 55 ).total_seconds()
  /external/autotest/server/site_tests/platform_SuspendResumeTiming/
platform_SuspendResumeTiming.py 91 time_to_susp = (suspend_end - suspend_start).total_seconds()
92 time_to_res = (resume_end - resume_start).total_seconds()
  /external/autotest/client/common_lib/
time_utils.py 121 return (utc_datetime - epoch).total_seconds()
  /external/chromium-trace/catapult/common/lab/
commits.py 81 commit_durations.append((time1 - time2).total_seconds())
  /external/autotest/site_utils/
job_history.py 100 self.time_used = (self.end_time - self.start_time).total_seconds()
223 self.time_used = (self.end_time - self.start_time).total_seconds()
343 self.time_used = (self.end_time - self.start_time).total_seconds()
  /external/autotest/client/site_tests/desktopui_ScreenLocker/
desktopui_ScreenLocker.py 97 perf_values['lock_seconds'] = (datetime.now() - start).total_seconds()
  /external/autotest/server/site_tests/network_WiFi_ChannelScanDwellTime/
network_WiFi_ChannelScanDwellTime.py 98 (last_ssid_tstamp - first_ssid_tstamp).total_seconds() *
  /external/skia/infra/bots/
utils.py 35 duration = (finish-self._start).total_seconds()
  /art/tools/runtime_memusage/
symbol_trace_info.py 52 elem[0] = int((elem_date_time - first_access_time).total_seconds() *
  /build/make/tools/releasetools/
add_img_to_target_files 243 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
322 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
469 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
add_img_to_target_files.py 243 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
322 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
469 timestamp = (datetime.datetime(2009, 1, 1) - epoch).total_seconds()
  /external/autotest/scheduler/
host_scheduler.py 315 queue_entry.job.created_on).total_seconds()
agent_task.py 705 self.task.time_started).total_seconds()
  /external/autotest/tko/
parse.py 653 duration_secs = (datetime.datetime.now() - start_time).total_seconds()
  /packages/services/Car/tools/bootanalyze/
bugreport_anayze.py 188 return int((dt - EPOCH).total_seconds() * 1000)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_datetime.py 275 self.assertEqual(td.total_seconds(), 31536000.0)
276 for total_seconds in [123456.789012, -123456.789012, 0.123456, 0, 1e6]:
277 td = timedelta(seconds=total_seconds)
278 self.assertEqual(td.total_seconds(), total_seconds)
279 # Issue8644: Test that td.total_seconds() has the same
283 self.assertEqual(td.total_seconds(),
    [all...]
  /external/python/cpython2/Lib/test/
test_datetime.py 275 self.assertEqual(td.total_seconds(), 31536000.0)
276 for total_seconds in [123456.789012, -123456.789012, 0.123456, 0, 1e6]:
277 td = timedelta(seconds=total_seconds)
278 self.assertEqual(td.total_seconds(), total_seconds)
279 # Issue8644: Test that td.total_seconds() has the same
283 self.assertEqual(td.total_seconds(),
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_datetime.py 275 self.assertEqual(td.total_seconds(), 31536000.0)
276 for total_seconds in [123456.789012, -123456.789012, 0.123456, 0, 1e6]:
277 td = timedelta(seconds=total_seconds)
278 self.assertEqual(td.total_seconds(), total_seconds)
279 # Issue8644: Test that td.total_seconds() has the same
283 self.assertEqual(td.total_seconds(),
    [all...]

Completed in 728 milliseconds

1 2