HomeSort by relevance Sort by last modified time
    Searched defs:Now (Results 1 - 25 of 27) sorted by null

1 2

  /external/google-benchmark/src/
cycleclock.h 56 inline BENCHMARK_ALWAYS_INLINE int64_t Now() {
  /external/libchrome/base/time/
default_clock.cc 11 Time DefaultClock::Now() {
12 return Time::Now();
time_mac.cc 31 // now - KERN_BOOTTIME to get a time difference that is not impacted by clock
39 base::TimeDelta time_difference = base::Time::Now() -
136 Time Time::Now() {
166 // Just use Now() because Now() returns the system time.
167 return Now();
252 TimeTicks TimeTicks::Now() {
271 ThreadTicks ThreadTicks::Now() {
time_posix.cc 129 // function for TimeTicks::Now() on Mac OS X.
151 Time Time::Now() {
170 // Just use Now() because Now() returns the system time.
171 return Now();
328 TimeTicks TimeTicks::Now() {
343 ThreadTicks ThreadTicks::Now() {
  /external/libcxx/utils/google-benchmark/src/
cycleclock.h 56 inline BENCHMARK_ALWAYS_INLINE int64_t Now() {
  /external/stressapptest/src/
clock.h 26 virtual time_t Now() { return time(NULL); }
  /external/libchrome/base/test/
simple_test_clock.cc 13 Time SimpleTestClock::Now() {
23 void SimpleTestClock::SetNow(Time now) {
25 now_ = now;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Now.java 19 * A {@link NowOrLater} object that is always ready now.
21 public class Now<C> implements NowOrLater<C> {
25 public Now(C value) {
  /external/libchrome/base/profiler/
tracked_time.cc 54 TrackedTime TrackedTime::Now() {
55 return TrackedTime(base::TimeTicks::Now());
  /external/v8/src/base/platform/
elapsed-timer.h 25 start_ticks_ = Now();
57 TimeTicks ticks = Now();
69 TimeDelta elapsed = Now() - start_ticks_;
83 static V8_INLINE TimeTicks Now() {
84 TimeTicks now = TimeTicks::HighResolutionNow(); local
85 DCHECK(!now.IsNull());
86 return now;
time.cc 241 Time Now() {
272 return TimeTicks::Now();
292 Time Time::Now() {
293 return clock.Pointer()->Now();
341 Time Time::Now() {
351 return Now();
456 virtual int64_t Now() = 0;
497 int64_t Now() override {
498 uint64_t now = QPCNowRaw(); variable
502 int64_t whole_seconds = now / ticks_per_second_
537 uint32_t now = static_cast<uint32_t>(timeGetTime()); variable
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
tick_util.h 44 static TickTime Now();
46 // Now in the time domain in ms.
49 // Now in the time domain in us.
158 inline TickTime TickTime::Now() {
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_time.py 220 assert _NOW_FUNCTION, 'Now function not properly set during initialization.'
224 def Now():
  /frameworks/compile/mclinker/include/mcld/MC/
ZOption.h 39 Now,
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_device.cc 260 uint64_t start_in_sec = Now();
287 uint64_t end_in_sec = Now();
347 // so disabling this for now until we get a fix into the upstream driver.
819 uint64_t V4L2Device::Now() {
  /external/pdfium/xfa/fgas/localization/
fgas_datetime.cpp 137 void CFX_Unitime::Now() {
  /prebuilts/go/darwin-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 181 func Now() Time {
182 var now Time
183 return now
189 PublicTime: Now(),
  /prebuilts/go/linux-x86/src/cmd/api/testdata/src/pkg/p1/
p1.go 181 func Now() Time {
182 var now Time
183 return now
189 PublicTime: Now(),
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 504 auto Now = llvm::TimeRecord::getCurrentTime(true);
506 *Bucket += Now;
508 *NewBucket -= Now;
    [all...]
  /external/libchrome/base/
tracked_objects.cc 340 random_number_ ^= (Now() - TrackedTime()).InMilliseconds();
488 // Lock since the map may get relocated now, and other threads sometimes
514 base::AutoLock lock(map_lock_); // Lock as the map may get relocated now.
688 // Perform the "real" TLS initialization now, and leave it intact through
738 TrackedTime ThreadData::Now() {
742 return TrackedTime::Now();
756 // now.
841 start_time_ = ThreadData::Now();
859 const TrackedTime end_time = ThreadData::Now();
    [all...]
  /external/webrtc/webrtc/p2p/base/
pseudotcp.cc 204 uint32_t PseudoTcp::Now() {
223 uint32_t now = Now(); local
246 m_lastrecv = m_lastsend = m_lasttraffic = now;
287 void PseudoTcp::NotifyClock(uint32_t now) {
292 if (m_rto_base && (rtc::TimeDiff(m_rto_base + m_rx_rto, now) <= 0)) {
301 << ") (now: " << now
305 if (!transmit(m_slist.begin(), now)) {
318 m_rto_base = now;
519 uint32_t now = Now(); local
656 uint32_t now = Now(); local
1034 uint32_t now = Now(); local
    [all...]
  /prebuilts/go/darwin-x86/src/time/
time.go 360 // The week number is now correct under the assumption
516 // u is now integer seconds
520 // u is now integer minutes
527 // u is now integer hours
652 // It is shorthand for time.Now().Sub(t).
654 return Now().Sub(t)
658 // It is shorthand for t.Sub(time.Now()).
660 return t.Sub(Now())
794 func now() (sec int64, nsec int32) func
796 // Now returns the current local time
    [all...]
  /prebuilts/go/linux-x86/src/time/
time.go 360 // The week number is now correct under the assumption
516 // u is now integer seconds
520 // u is now integer minutes
527 // u is now integer hours
652 // It is shorthand for time.Now().Sub(t).
654 return Now().Sub(t)
658 // It is shorthand for t.Sub(time.Now()).
660 return t.Sub(Now())
794 func now() (sec int64, nsec int32) func
796 // Now returns the current local time
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberRegressionTests.java 299 logln(it.Now());
308 it.Now();
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberRegressionTests.java 298 logln(it.Now());
307 it.Now();
    [all...]

Completed in 760 milliseconds

1 2