Searched refs:is_in_range (Results 1 - 4 of 4) sorted by relevance

/external/chromium/base/
H A Dtime.cc118 inline bool is_in_range(int value, int lo, int hi) { function in namespace:base
123 return is_in_range(month, 1, 12) &&
124 is_in_range(day_of_week, 0, 6) &&
125 is_in_range(day_of_month, 1, 31) &&
126 is_in_range(hour, 0, 23) &&
127 is_in_range(minute, 0, 59) &&
128 is_in_range(second, 0, 60) &&
129 is_in_range(millisecond, 0, 999);
/external/chromium_org/base/time/
H A Dtime.cc181 inline bool is_in_range(int value, int lo, int hi) { function in namespace:base
186 return is_in_range(month, 1, 12) &&
187 is_in_range(day_of_week, 0, 6) &&
188 is_in_range(day_of_month, 1, 31) &&
189 is_in_range(hour, 0, 23) &&
190 is_in_range(minute, 0, 59) &&
191 is_in_range(second, 0, 60) &&
192 is_in_range(millisecond, 0, 999);
/external/chromium_org/v8/test/cctest/
H A Dtest-macro-assembler-x64.cc127 bool is_in_range = number >= Smi::kMinValue && number <= Smi::kMaxValue; local
128 CHECK_EQ(is_in_range, is_valid);
/external/v8/test/cctest/
H A Dtest-macro-assembler-x64.cc127 bool is_in_range = number >= Smi::kMinValue && number <= Smi::kMaxValue; local
128 CHECK_EQ(is_in_range, is_valid);

Completed in 132 milliseconds