Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkTime.cpp13 int timeZoneMinutes = SkToInt(fTimeZoneMinutes); in toISO8601() local
14 char timezoneSign = timeZoneMinutes >= 0 ? '+' : '-'; in toISO8601()
15 int timeZoneHours = abs(timeZoneMinutes) / 60; in toISO8601()
16 timeZoneMinutes = abs(timeZoneMinutes) % 60; in toISO8601()
22 timeZoneMinutes); in toISO8601()