Home | History | Annotate | Download | only in time

Lines Matching full:atoi

378 // Never printed, just needs to be non-nil for return by atoi.
382 func atoi(s string) (x int, err error) {
799 year, err = atoi(p)
811 year, err = atoi(p)
947 hr, err = atoi(hour)
949 mm, err = atoi(min)
952 ss, err = atoi(seconds)
1053 offset, _ = atoi(zoneName[3:]) // Guaranteed OK by parseGMT.
1145 if ns, err = atoi(value[1:nbytes]); err != nil {