Lines Matching refs:UTC
27 // since January 1, 1970 UTC, to match the argument
37 offset int // seconds east of UTC
55 // UTC represents Universal Coordinated Time (UTC).
56 var UTC *Location = &utcLoc
60 // even if a badly behaved client has changed UTC.
61 var utcLoc = Location{name: "UTC"}
88 // the given zone name and offset (seconds east of UTC).
102 // instant in time expressed as seconds since January 1, 1970 00:00:00 UTC.
106 // the offset in seconds east of UTC (such as -5*60*60), and whether
112 name = "UTC"
222 // (what the given time of day would be in UTC).
261 // If the name is "" or "UTC", LoadLocation returns UTC.
274 if name == "" || name == "UTC" {
275 return UTC, nil