2029 lines
No EOL
475 KiB
Text
2029 lines
No EOL
475 KiB
Text
!<arch>
|
||
__.PKGDEF 0 0 0 644 12200 `
|
||
go object linux amd64 go1.5.1 X:none
|
||
build id "21d713d62312cabe6689c2c313ede92a005dbe2a"
|
||
|
||
$$
|
||
package time
|
||
import runtime "runtime"
|
||
import errors "errors"
|
||
import syscall "syscall"
|
||
import sync "sync"
|
||
const @"".ANSIC = "Mon Jan _2 15:04:05 2006"
|
||
const @"".UnixDate = "Mon Jan _2 15:04:05 MST 2006"
|
||
const @"".RubyDate = "Mon Jan 02 15:04:05 -0700 2006"
|
||
const @"".RFC822 = "02 Jan 06 15:04 MST"
|
||
const @"".RFC822Z = "02 Jan 06 15:04 -0700"
|
||
const @"".RFC850 = "Monday, 02-Jan-06 15:04:05 MST"
|
||
const @"".RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST"
|
||
const @"".RFC1123Z = "Mon, 02 Jan 2006 15:04:05 -0700"
|
||
const @"".RFC3339 = "2006-01-02T15:04:05Z07:00"
|
||
const @"".RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00"
|
||
const @"".Kitchen = "3:04PM"
|
||
const @"".Stamp = "Jan _2 15:04:05"
|
||
const @"".StampMilli = "Jan _2 15:04:05.000"
|
||
const @"".StampMicro = "Jan _2 15:04:05.000000"
|
||
const @"".StampNano = "Jan _2 15:04:05.000000000"
|
||
type @"".ParseError struct { Layout string; Value string; LayoutElem string; ValueElem string; Message string }
|
||
func (@"".e·2 *@"".ParseError "esc:0x1") Error () (? string) { if @"".e·2.Message == "" { return "parsing time " + @"".quote(@"".e·2.Value) + " as " + @"".quote(@"".e·2.Layout) + ": cannot parse " + @"".quote(@"".e·2.ValueElem) + " as " + @"".quote(@"".e·2.LayoutElem) }; return "parsing time " + @"".quote(@"".e·2.Value) + @"".e·2.Message }
|
||
type @"".zone struct { @"".name string; @"".offset int; @"".isDST bool }
|
||
type @"".zoneTrans struct { @"".when int64; @"".index uint8; @"".isstd bool; @"".isutc bool }
|
||
type @"".Location struct { @"".name string; @"".zone []@"".zone; @"".tx []@"".zoneTrans; @"".cacheStart int64; @"".cacheEnd int64; @"".cacheZone *@"".zone }
|
||
func (@"".l·2 *@"".Location "esc:0x22") String () (? string)
|
||
func (@"".l·2 *@"".Location "esc:0x1") @"".firstZoneUsed () (? bool)
|
||
func (@"".l·2 *@"".Location "esc:0x12") @"".get () (? *@"".Location)
|
||
func (@"".l·6 *@"".Location "esc:0x32") @"".lookup (@"".sec·7 int64) (@"".name·1 string, @"".offset·2 int, @"".isDST·3 bool, @"".start·4 int64, @"".end·5 int64)
|
||
func (@"".l·2 *@"".Location "esc:0x1") @"".lookupFirstZone () (? int)
|
||
func (@"".l·4 *@"".Location "esc:0x1") @"".lookupName (@"".name·5 string "esc:0x1", @"".unix·6 int64) (@"".offset·1 int, @"".isDST·2 bool, @"".ok·3 bool)
|
||
type @"".Month int
|
||
func (@"".m·2 @"".Month) String () (? string) { return @"".months[@"".m·2 - @"".Month(0x1)] }
|
||
type @"".Weekday int
|
||
func (@"".d·2 @"".Weekday) String () (? string) { return @"".days[@"".d·2] }
|
||
type @"".Duration int64
|
||
func (@"".d·2 @"".Duration) Hours () (? float64) { var @"".hour·3 @"".Duration; @"".hour·3 = @"".d·2 / @"".Duration(0x34630b8a000); var @"".nsec·4 @"".Duration; @"".nsec·4 = @"".d·2 % @"".Duration(0x34630b8a000); return float64(@"".hour·3) + float64(@"".nsec·4) * 8190022623310637111963488201822504381538623676021880892417778544696899264837610290203272971060556344039023584360473938041055625214280336402169897364226048p-553 }
|
||
func (@"".d·2 @"".Duration) Minutes () (? float64) { var @"".min·3 @"".Duration; @"".min·3 = @"".d·2 / @"".Duration(0xdf8475800); var @"".nsec·4 @"".Duration; @"".nsec·4 = @"".d·2 % @"".Duration(0xdf8475800); return float64(@"".min·3) + float64(@"".nsec·4) * 7678146209353722106395056769533233877065564876941352542109479049699919628723768656821910653339403201031675627614471533358284117434246264392176261853609984p-547 }
|
||
func (@"".d·2 @"".Duration) Nanoseconds () (? int64) { return int64(@"".d·2) }
|
||
func (@"".d·2 @"".Duration) Seconds () (? float64) { var @"".sec·3 @"".Duration; @"".sec·3 = @"".d·2 / @"".Duration(0x3b9aca00); var @"".nsec·4 @"".Duration; @"".nsec·4 = @"".d·2 % @"".Duration(0x3b9aca00); return float64(@"".sec·3) + float64(@"".nsec·4) * 7198262071269114660816079141112770740375861891461678802759824945047098083990024106014198994535558872472104883612039846078596891298747423852523262413111296p-541 }
|
||
func (@"".d·2 @"".Duration) String () (? string)
|
||
type @"".Time struct { @"".sec int64; @"".nsec int32; @"".loc *@"".Location }
|
||
func (@"".t·2 @"".Time "esc:0x12") Add (@"".d·3 @"".Duration) (? @"".Time) { @"".t·2.@"".sec += int64(@"".d·3 / @"".Duration(0x3b9aca00)); var @"".nsec·4 int32; @"".nsec·4 = int32(@"".t·2.@"".nsec) + int32(@"".d·3 % @"".Duration(0x3b9aca00)); if @"".nsec·4 >= 0x3b9aca00 { @"".t·2.@"".sec++; @"".nsec·4 -= 0x3b9aca00 } else { if @"".nsec·4 < 0x0 { @"".t·2.@"".sec--; @"".nsec·4 += 0x3b9aca00 } }; @"".t·2.@"".nsec = @"".nsec·4; return @"".t·2 }
|
||
func (@"".t·2 @"".Time "esc:0x12") AddDate (@"".years·3 int, @"".months·4 int, @"".days·5 int) (? @"".Time)
|
||
func (@"".t·2 @"".Time "esc:0x1") After (@"".u·3 @"".Time "esc:0x1") (? bool) { return @"".t·2.@"".sec > @"".u·3.@"".sec || @"".t·2.@"".sec == @"".u·3.@"".sec && @"".t·2.@"".nsec > @"".u·3.@"".nsec }
|
||
func (@"".t·2 @"".Time "esc:0x9") AppendFormat (@"".b·3 []byte "esc:0x1a", @"".layout·4 string "esc:0x9") (? []byte)
|
||
func (@"".t·2 @"".Time "esc:0x1") Before (@"".u·3 @"".Time "esc:0x1") (? bool) { return @"".t·2.@"".sec < @"".u·3.@"".sec || @"".t·2.@"".sec == @"".u·3.@"".sec && @"".t·2.@"".nsec < @"".u·3.@"".nsec }
|
||
func (@"".t·4 @"".Time "esc:0x1") Clock () (@"".hour·1 int, @"".min·2 int, @"".sec·3 int)
|
||
func (@"".t·4 @"".Time "esc:0x1") Date () (@"".year·1 int, @"".month·2 @"".Month, @"".day·3 int)
|
||
func (@"".t·2 @"".Time "esc:0x1") Day () (? int)
|
||
func (@"".t·2 @"".Time "esc:0x1") Equal (@"".u·3 @"".Time "esc:0x1") (? bool) { return @"".t·2.@"".sec == @"".u·3.@"".sec && @"".t·2.@"".nsec == @"".u·3.@"".nsec }
|
||
func (@"".t·2 @"".Time "esc:0x9") Format (@"".layout·3 string "esc:0x9") (? string)
|
||
func (@"".t·2 *@"".Time "esc:0x1") GobDecode (@"".data·3 []byte "esc:0x1") (? error)
|
||
func (@"".t·3 @"".Time "esc:0x1") GobEncode () (? []byte, ? error)
|
||
func (@"".t·2 @"".Time "esc:0x1") Hour () (? int)
|
||
func (@"".t·3 @"".Time "esc:0x1") ISOWeek () (@"".year·1 int, @"".week·2 int)
|
||
func (@"".t·2 @"".Time "esc:0x12") In (@"".loc·3 *@"".Location "esc:0x12") (? @"".Time)
|
||
func (@"".t·2 @"".Time "esc:0x1") IsZero () (? bool) { return @"".t·2.@"".sec == 0x0 && @"".t·2.@"".nsec == 0x0 }
|
||
func (@"".t·2 @"".Time "esc:0x12") Local () (? @"".Time) { @"".t·2.@"".loc = @"".Local; return @"".t·2 }
|
||
func (@"".t·2 @"".Time "esc:0x12") Location () (? *@"".Location) { var @"".l·3 *@"".Location; @"".l·3 = @"".t·2.@"".loc; if @"".l·3 == nil { @"".l·3 = @"".UTC }; return @"".l·3 }
|
||
func (@"".t·3 @"".Time "esc:0x1") MarshalBinary () (? []byte, ? error)
|
||
func (@"".t·3 @"".Time "esc:0x9") MarshalJSON () (? []byte, ? error)
|
||
func (@"".t·3 @"".Time "esc:0x9") MarshalText () (? []byte, ? error)
|
||
func (@"".t·2 @"".Time "esc:0x1") Minute () (? int)
|
||
func (@"".t·2 @"".Time "esc:0x1") Month () (? @"".Month)
|
||
func (@"".t·2 @"".Time "esc:0x1") Nanosecond () (? int) { return int(@"".t·2.@"".nsec) }
|
||
func (@"".t·2 @"".Time "esc:0x12") Round (@"".d·3 @"".Duration) (? @"".Time)
|
||
func (@"".t·2 @"".Time "esc:0x1") Second () (? int)
|
||
func (@"".t·2 @"".Time "esc:0x9") String () (? string)
|
||
func (@"".t·2 @"".Time "esc:0x1") Sub (@"".u·3 @"".Time "esc:0x1") (? @"".Duration)
|
||
func (@"".t·2 @"".Time "esc:0x12") Truncate (@"".d·3 @"".Duration) (? @"".Time)
|
||
func (@"".t·2 @"".Time "esc:0x12") UTC () (? @"".Time) { @"".t·2.@"".loc = @"".UTC; return @"".t·2 }
|
||
func (@"".t·2 @"".Time "esc:0x1") Unix () (? int64) { return @"".t·2.@"".sec + -0xe7791f700 }
|
||
func (@"".t·2 @"".Time "esc:0x1") UnixNano () (? int64) { return (@"".t·2.@"".sec + -0xe7791f700) * 0x3b9aca00 + int64(@"".t·2.@"".nsec) }
|
||
func (@"".t·2 *@"".Time "esc:0x1") UnmarshalBinary (@"".data·3 []byte "esc:0x1") (? error)
|
||
func (@"".t·2 *@"".Time "esc:0x1") UnmarshalJSON (@"".data·3 []byte "esc:0x1") (@"".err·1 error)
|
||
func (@"".t·2 *@"".Time "esc:0x1") UnmarshalText (@"".data·3 []byte "esc:0x1") (@"".err·1 error)
|
||
func (@"".t·2 @"".Time "esc:0x1") Weekday () (? @"".Weekday)
|
||
func (@"".t·2 @"".Time "esc:0x1") Year () (? int)
|
||
func (@"".t·2 @"".Time "esc:0x1") YearDay () (? int)
|
||
func (@"".t·3 @"".Time "esc:0x32") Zone () (@"".name·1 string, @"".offset·2 int)
|
||
func (@"".t·2 @"".Time "esc:0x1") @"".abs () (? uint64)
|
||
func (@"".t·5 @"".Time "esc:0x1") @"".date (@"".full·6 bool) (@"".year·1 int, @"".month·2 @"".Month, @"".day·3 int, @"".yday·4 int)
|
||
func (@"".t·4 @"".Time "esc:0x32") @"".locabs () (@"".name·1 string, @"".offset·2 int, @"".abs·3 uint64)
|
||
func @"".Parse (@"".layout·3 string, @"".value·4 string) (? @"".Time, ? error)
|
||
func @"".ParseInLocation (@"".layout·3 string, @"".value·4 string, @"".loc·5 *@"".Location "esc:0x12") (? @"".Time, ? error)
|
||
func @"".ParseDuration (@"".s·3 string "esc:0x1") (? @"".Duration, ? error)
|
||
func @"".Sleep (@"".d·1 @"".Duration)
|
||
type @"".runtimeTimer struct { @"".i int; @"".when int64; @"".period int64; @"".f func(? interface {}, ? uintptr); @"".arg interface {}; @"".seq uintptr }
|
||
type @"".Timer struct { C <-chan @"".Time; @"".r @"".runtimeTimer }
|
||
func (@"".t·2 *@"".Timer) Reset (@"".d·3 @"".Duration) (? bool)
|
||
func (@"".t·2 *@"".Timer) Stop () (? bool)
|
||
func @"".NewTimer (@"".d·2 @"".Duration) (? *@"".Timer)
|
||
func @"".After (@"".d·2 @"".Duration) (? <-chan @"".Time)
|
||
func @"".AfterFunc (@"".d·2 @"".Duration, @"".f·3 func()) (? *@"".Timer)
|
||
type @"".Ticker struct { C <-chan @"".Time; @"".r @"".runtimeTimer }
|
||
func (@"".t·1 *@"".Ticker) Stop ()
|
||
func @"".NewTicker (@"".d·2 @"".Duration) (? *@"".Ticker)
|
||
func @"".Tick (@"".d·2 @"".Duration) (? <-chan @"".Time)
|
||
const @"".January @"".Month = 0x1
|
||
const @"".February @"".Month = 0x2
|
||
const @"".March @"".Month = 0x3
|
||
const @"".April @"".Month = 0x4
|
||
const @"".May @"".Month = 0x5
|
||
const @"".June @"".Month = 0x6
|
||
const @"".July @"".Month = 0x7
|
||
const @"".August @"".Month = 0x8
|
||
const @"".September @"".Month = 0x9
|
||
const @"".October @"".Month = 0xa
|
||
const @"".November @"".Month = 0xb
|
||
const @"".December @"".Month = 0xc
|
||
const @"".Sunday @"".Weekday = 0x0
|
||
const @"".Monday @"".Weekday = 0x1
|
||
const @"".Tuesday @"".Weekday = 0x2
|
||
const @"".Wednesday @"".Weekday = 0x3
|
||
const @"".Thursday @"".Weekday = 0x4
|
||
const @"".Friday @"".Weekday = 0x5
|
||
const @"".Saturday @"".Weekday = 0x6
|
||
const @"".Nanosecond @"".Duration = 0x1
|
||
const @"".Microsecond @"".Duration = 0x3e8
|
||
const @"".Millisecond @"".Duration = 0xf4240
|
||
const @"".Second @"".Duration = 0x3b9aca00
|
||
const @"".Minute @"".Duration = 0xdf8475800
|
||
const @"".Hour @"".Duration = 0x34630b8a000
|
||
func @"".Since (@"".t·2 @"".Time "esc:0x1") (? @"".Duration)
|
||
func @"".Now () (? @"".Time)
|
||
func @"".Unix (@"".sec·2 int64, @"".nsec·3 int64) (? @"".Time) { if @"".nsec·3 < 0x0 || @"".nsec·3 >= 0x3b9aca00 { var @"".n·4 int64; @"".n·4 = @"".nsec·3 / 0x3b9aca00; @"".sec·2 += @"".n·4; @"".nsec·3 -= @"".n·4 * 0x3b9aca00; if @"".nsec·3 < 0x0 { @"".nsec·3 += 0x3b9aca00; @"".sec·2-- } }; return (@"".Time{ @"".sec:@"".sec·2 + 0xe7791f700, @"".nsec:int32(@"".nsec·3), @"".loc:@"".Local }) }
|
||
func @"".Date (@"".year·2 int, @"".month·3 @"".Month, @"".day·4 int, @"".hour·5 int, @"".min·6 int, @"".sec·7 int, @"".nsec·8 int, @"".loc·9 *@"".Location "esc:0x12") (? @"".Time)
|
||
var @"".UTC *@"".Location
|
||
var @"".Local *@"".Location
|
||
func @"".FixedZone (@"".name·2 string, @"".offset·3 int) (? *@"".Location) { var @"".l·4 *@"".Location; @"".l·4 = (&@"".Location{ @"".name:@"".name·2, @"".zone:([]@"".zone{ 0x0:(@"".zone{ @"".name:@"".name·2, @"".offset:@"".offset·3, @"".isDST:false }) }), @"".tx:([]@"".zoneTrans{ 0x0:(@"".zoneTrans{ @"".when:-0x8000000000000000, @"".index:0x0, @"".isstd:false, @"".isutc:false }) }), @"".cacheStart:-0x8000000000000000, @"".cacheEnd:0x7fffffffffffffff }); @"".l·4.@"".cacheZone = &@"".l·4.@"".zone[0x0]; return @"".l·4 }
|
||
func @"".LoadLocation (@"".name·3 string) (? *@"".Location, ? error)
|
||
func @"".init ()
|
||
func @"".quote (@"".s·2 string "esc:0x1") (? string) { return "\"" + @"".s·2 + "\"" }
|
||
var @"".months [12]string
|
||
var @"".days [7]string
|
||
const @"".internalToUnix int64 = -0xe7791f700
|
||
const @"".unixToInternal int64 = 0xe7791f700
|
||
const @"".alpha = -0x8000000000000000
|
||
const @"".omega = 0x7fffffffffffffff
|
||
|
||
$$
|
||
_go_.o 0 0 0 644 473740 `
|
||
go object linux amd64 go1.5.1 X:none
|
||
|
||
!
|
||
|