Lines Matching full:time
21 # base::Time type (or base::Clock/DefaultClock), whether in using decls,
23 base_time_type_pattern = r'(^|\W)base::(Time|Clock|DefaultClock)(\W|$)'
25 # Regular expression that should detect references to the base::Time class
26 # members, such as a call to base::Time::Now.
27 base_time_member_pattern = r'(^|\W)(Time|Clock|DefaultClock)::'
29 # Regular expression to detect "using base::Time" declarations. We want to
33 # using base::Time;
35 # int64 foo_us = foo_s * Time::kMicrosecondsPerSecond;
36 using_base_time_decl_pattern = r'^\s*using\s+(::)?base::Time\s*;'
39 # base::Time class. We want to prevent these from triggerring a warning.
40 base_time_konstant_pattern = r'(^|\W)Time::k\w+'
57 'You added one or more references to the base::Time class and/or one\n'
59 'code, it is rarely correct to use a clock susceptible to time skew!\n'
61 'real-world time?\n\n' +
84 'the run-time characteristics. In most cases, SingleThreadTaskRunner\n'