OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimeAndBool
(Results
1 - 2
of
2
) sorted by null
/external/chromium/net/url_request/
url_request_throttler_unittest.cc
193
struct
TimeAndBool
{
194
TimeAndBool
(const TimeTicks& time_value, bool expected, int line_num) {
294
TimeAndBool
test_values[] = {
295
TimeAndBool
(now_, false, __LINE__),
296
TimeAndBool
(now_ - kFiveMs, false, __LINE__),
297
TimeAndBool
(now_ + kFiveMs, false, __LINE__),
298
TimeAndBool
(now_ - (lifetime - kFiveMs), false, __LINE__),
299
TimeAndBool
(now_ - lifetime, true, __LINE__),
300
TimeAndBool
(now_ - (lifetime + kFiveMs), true, __LINE__)};
/external/chromium_org/net/url_request/
url_request_throttler_unittest.cc
148
struct
TimeAndBool
{
149
TimeAndBool
(const TimeTicks& time_value, bool expected, int line_num) {
322
TimeAndBool
test_values[] = {
323
TimeAndBool
(now_, false, __LINE__),
324
TimeAndBool
(now_ - kFiveMs, false, __LINE__),
325
TimeAndBool
(now_ + kFiveMs, false, __LINE__),
326
TimeAndBool
(now_ - (lifetime - kFiveMs), false, __LINE__),
327
TimeAndBool
(now_ - lifetime, true, __LINE__),
328
TimeAndBool
(now_ - (lifetime + kFiveMs), true, __LINE__)};
Completed in 81 milliseconds