Home
last modified time | relevance | path

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

/external/libchrome/base/time/
Dtime.cc41 if (is_max()) { in InDays()
49 if (is_max()) { in InDaysFloored()
62 if (is_max()) { in InHours()
70 if (is_max()) { in InMinutes()
78 if (is_max()) { in InSecondsF()
86 if (is_max()) { in InSeconds()
94 if (is_max()) { in InMillisecondsF()
102 if (is_max()) { in InMilliseconds()
110 if (is_max()) { in InMillisecondsRoundedUp()
123 if (is_max()) { in InMicroseconds()
[all …]
Dtime_unittest.cc628 EXPECT_TRUE(max.is_max()); in TEST_F()
639 EXPECT_TRUE(t.is_max()); in TEST_F()
643 EXPECT_TRUE(t.is_max()); in TEST_F()
647 EXPECT_TRUE(t.is_max()); in TEST_F()
655 EXPECT_TRUE(t.is_max()); in TEST_F()
664 EXPECT_TRUE(t.is_max()); in TEST_F()
674 EXPECT_TRUE(t.is_max()); in TEST_F()
684 EXPECT_FALSE(t.is_max()); in TEST_F()
1258 static_assert(kMax.is_max(), ""); in TEST()
1284 static_assert(TimeDelta::FromDays(std::numeric_limits<int>::max()).is_max(), in TEST()
[all …]
Dtime_conversion_posix.cc56 if (is_max()) { in ToTimeVal()
Dtime.h173 constexpr bool is_max() const { in is_max() function
357 bool is_max() const { return us_ == std::numeric_limits<int64_t>::max(); } in is_max() function
/external/libbrillo/brillo/streams/
Dfile_stream.cc138 if (!timeout.is_max()) { in WaitForDataBlocking()
143 timeout.is_max() ? nullptr : &timeout_val)); in WaitForDataBlocking()
/external/libchrome/base/task_scheduler/
Dscheduler_worker.cc32 if (sleep_time.is_max()) { in WaitForWork()
Dscheduler_single_thread_task_runner_manager.cc234 sleep_time.is_max() ? INFINITE : sleep_time.InMilliseconds(); in WaitForWork()
/external/bcc/src/lua/bcc/vendor/
Dargparse.lua810 local function bound(noun, min, max, is_max)
814 res = "at " .. (is_max and "most" or "least") .. " "
817 local number = is_max and max or min
/external/libchrome/base/synchronization/
Dwaitable_event_posix.cc170 const bool finite_time = !end_time.is_max(); in TimedWaitUntil()