HomeSort by relevance Sort by last modified time
    Searched refs: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 181 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/
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...]
  /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 1845 milliseconds