time.Location.lookup (method)

10 uses

	time (current package)
		format.go#L1155: 		name, offset, _, _ := local.lookup(t.unixSec())
		time.go#L443: 			_, offset, _, _ := l.lookup(sec)
		time.go#L464: 			name, offset, _, _ = l.lookup(sec)
		time.go#L1117: 	name, offset, _, _ = t.loc.lookup(t.unixSec())
		time.go#L1215: 	} else if _, localoff, _, _ := Local.lookup(t.unixSec()); offset == localoff {
		time.go#L1380: 	_, offset, start, end := loc.lookup(unix)
		time.go#L1384: 			_, offset, _, _ = loc.lookup(start - 1)
		time.go#L1386: 			_, offset, _, _ = loc.lookup(end)
		zoneinfo.go#L124: func (l *Location) lookup(sec int64) (name string, offset int, start, end int64) {
		zoneinfo.go#L590: 			nam, offset, _, _ := l.lookup(unix - int64(zone.offset))