HomeSort by relevance Sort by last modified time
    Searched full:total_seconds (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/v8/src/
dateparser.cc 97 int total_seconds = sign_ * (hour_ * 3600 + minute_ * 60); local
98 if (!Smi::IsValid(total_seconds)) return false;
99 output->set(UTC_OFFSET, Smi::FromInt(total_seconds));
  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/
www_server.py 191 time_delta = int((timestamp - first_timestamp).total_seconds())
544 time_delta = '%d s.' % (timestamp - first_timestamp).total_seconds()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
datetime.so 
  /prebuilts/python/darwin-x86/2.7.5/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...]
  /prebuilts/python/linux-x86/2.7.5/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...]
  /art/runtime/gc/
heap.cc 830 const double total_seconds = static_cast<double>(total_duration \/ 1000) \/ 1000000.0; local
    [all...]

Completed in 940 milliseconds