Home
last modified time | relevance | path

Searched refs:tstruct (Results 1 - 1 of 1) sorted by relevance

/third_party/skia/src/core/
H A DSkTime.cpp56 struct tm tstruct; in GetDateTime() local
57 gmtime_r(&m_time, &tstruct); in GetDateTime()
59 dt->fYear = tstruct.tm_year + 1900; in GetDateTime()
60 dt->fMonth = SkToU8(tstruct.tm_mon + 1); in GetDateTime()
61 dt->fDayOfWeek = SkToU8(tstruct.tm_wday); in GetDateTime()
62 dt->fDay = SkToU8(tstruct.tm_mday); in GetDateTime()
63 dt->fHour = SkToU8(tstruct.tm_hour); in GetDateTime()
64 dt->fMinute = SkToU8(tstruct.tm_min); in GetDateTime()
65 dt->fSecond = SkToU8(tstruct.tm_sec); in GetDateTime()

Completed in 1 milliseconds