HomeSort by relevance Sort by last modified time
    Searched full:is_in_range (Results 1 - 4 of 4) sorted by null

  /external/chromium/base/
time.cc 118 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/
time.cc 218 inline bool is_in_range(int value, int lo, int hi) { function in namespace:base
223 return is_in_range(month, 1, 12) &&
224 is_in_range(day_of_week, 0, 6) &&
225 is_in_range(day_of_month, 1, 31) &&
226 is_in_range(hour, 0, 23) &&
227 is_in_range(minute, 0, 59) &&
228 is_in_range(second, 0, 60) &&
229 is_in_range(millisecond, 0, 999);
  /external/chromium_org/v8/test/cctest/
test-macro-assembler-x64.cc 131 bool is_in_range = number >= Smi::kMinValue && number <= Smi::kMaxValue; local
132 CHECK_EQ(is_in_range, is_valid);
    [all...]
  /external/v8/test/cctest/
test-macro-assembler-x64.cc 127 bool is_in_range = number >= Smi::kMinValue && number <= Smi::kMaxValue; local
128 CHECK_EQ(is_in_range, is_valid);
    [all...]

Completed in 2103 milliseconds