Home | History | Annotate | Download | only in builtins

Lines Matching defs:timezone_offset

150   int timezone_offset = -date_cache->TimezoneOffset(time_ms);
151 int timezone_hour = std::abs(timezone_offset) / 60;
152 int timezone_min = std::abs(timezone_offset) % 60;
162 (timezone_offset < 0) ? '-' : '+', timezone_hour, timezone_min,
169 min, sec, (timezone_offset < 0) ? '-' : '+', timezone_hour,