Home | History | Annotate | Download | only in time

Lines Matching refs:UTC

29 	// since January 1, 1970 UTC, to match the argument
39 offset int // seconds east of UTC
57 // UTC represents Universal Coordinated Time (UTC).
58 var UTC *Location = &utcLoc
62 // even if a badly behaved client has changed UTC.
63 var utcLoc = Location{name: "UTC"}
90 // the given zone name and offset (seconds east of UTC).
104 // instant in time expressed as seconds since January 1, 1970 00:00:00 UTC.
108 // the offset in seconds east of UTC (such as -5*60*60), and whether
114 name = "UTC"
224 // (what the given time of day would be in UTC).
263 // If the name is "" or "UTC", LoadLocation returns UTC.
276 if name == "" || name == "UTC" {
277 return UTC, nil