Home
last modified time | relevance | path

Searched refs:kDaysInMonth (Results 1 – 1 of 1) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dtime.cc58 static const int kDaysInMonth[13] = { variable
64 return kSecondsPerDay * (kDaysInMonth[month] + 1); in SecondsPerMonth()
66 return kSecondsPerDay * kDaysInMonth[month]; in SecondsPerMonth()
83 return time.month <= kDaysInMonth[time.month] + 1; in ValidateDateTime()
85 return time.month <= kDaysInMonth[time.month]; in ValidateDateTime()
122 ? kDaysInMonth[month] + 1 in SecondsSinceCommonEra()
123 : kDaysInMonth[month])); in SecondsSinceCommonEra()