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

  /external/chromium_org/v8/src/
dateparser.cc 120 int total_seconds = sign_ * (hour_ * 3600 + minute_ * 60); local
121 if (!Smi::IsValid(total_seconds)) return false;
122 output->set(UTC_OFFSET, Smi::FromInt(total_seconds));
  /external/v8/src/
dateparser.cc 119 int total_seconds = sign_ * (hour_ * 3600 + minute_ * 60); local
120 if (!Smi::IsValid(total_seconds)) return false;
121 output->set(UTC_OFFSET, Smi::FromInt(total_seconds));
  /art/runtime/gc/
heap.cc 461 const double total_seconds = static_cast<double>(total_duration / 1000) / 1000000.0; local
464 << PrettySize(GetBytesFreedEver() / total_seconds) << "/s\n";
466 << (GetObjectsFreedEver() / total_seconds) << " objects/s\n";
    [all...]
  /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...]

Completed in 395 milliseconds