OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "base/time.h" | 5 #include "base/time.h" |
6 | 6 |
7 #include <math.h> | 7 #include <math.h> |
8 #if defined(OS_WIN) | 8 #if defined(OS_WIN) |
9 #include <float.h> | 9 #include <float.h> |
10 #endif | 10 #endif |
11 | 11 |
12 #include <limits> | 12 #include <limits> |
13 | 13 |
14 #include "base/sys_string_conversions.h" | 14 #include "base/strings/sys_string_conversions.h" |
15 #include "base/third_party/nspr/prtime.h" | 15 #include "base/third_party/nspr/prtime.h" |
16 | 16 |
17 #include "base/logging.h" | 17 #include "base/logging.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 | 20 |
21 namespace { | 21 namespace { |
22 #if defined(OS_WIN) | 22 #if defined(OS_WIN) |
23 inline bool isnan(double num) { return !!_isnan(num); } | 23 inline bool isnan(double num) { return !!_isnan(num); } |
24 #endif | 24 #endif |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 return is_in_range(month, 1, 12) && | 187 return is_in_range(month, 1, 12) && |
188 is_in_range(day_of_week, 0, 6) && | 188 is_in_range(day_of_week, 0, 6) && |
189 is_in_range(day_of_month, 1, 31) && | 189 is_in_range(day_of_month, 1, 31) && |
190 is_in_range(hour, 0, 23) && | 190 is_in_range(hour, 0, 23) && |
191 is_in_range(minute, 0, 59) && | 191 is_in_range(minute, 0, 59) && |
192 is_in_range(second, 0, 60) && | 192 is_in_range(second, 0, 60) && |
193 is_in_range(millisecond, 0, 999); | 193 is_in_range(millisecond, 0, 999); |
194 } | 194 } |
195 | 195 |
196 } // namespace base | 196 } // namespace base |
OLD | NEW |