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

  /external/pdfium/core/fxcrt/
cfx_datetime.h 23 hour_(0),
37 hour_(hour),
46 hour_ = 0;
53 return year_ != 0 || month_ != 0 || day_ != 0 || hour_ != 0 ||
67 hour_ = hour;
76 uint8_t GetHour() const { return hour_; }
88 uint8_t hour_; member in class:CFX_DateTime
cfx_datetime.cpp 131 hour_ == other.hour_ && minute_ == other.minute_ &&
  /external/v8/src/
dateparser.h 273 TimeZoneComposer() : sign_(kNone), hour_(kNone), minute_(kNone) {}
276 hour_ = offset_in_hours * sign_;
280 void SetAbsoluteHour(int hour) { hour_ = hour; }
283 return hour_ != kNone && minute_ == kNone && TimeComposer::IsMinute(n);
285 bool IsUTC() const { return hour_ == 0 && minute_ == 0; }
287 bool IsEmpty() { return hour_ == kNone; }
290 int hour_;
dateparser.cc 101 if (hour_ == kNone) hour_ = 0;
105 unsigned total_seconds_unsigned = hour_ * 3600U + minute_ * 60U;

Completed in 123 milliseconds