HomeSort by relevance Sort by last modified time
    Searched refs:is_in_range (Results 1 - 3 of 3) 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/webkit/Source/WebCore/html/canvas/
CheckedInt.h 253 template<typename T, typename U> inline T is_in_range(U x) function in namespace:WebCore::CheckedInt_internal
290 return is_in_range<T>(product);
301 return is_in_range<T>(product);
430 mIsValid(CheckedInt_internal::is_in_range<T>(value))
  /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 61 milliseconds