Repository URL to install this package:
|
Version:
1.0 ▾
|
!<arch>
__.PKGDEF 0 0 0 644 11511 `
go object linux amd64 go1.6 X:none
build id "977541f021ad7a0ca15f933d308ebfaf74ef6094"
$$
package filepath
import runtime "runtime"
import errors "errors"
import os "os"
import sort "sort"
import strings "strings"
import utf8 "unicode/utf8"
var @"".ErrBadPattern error
func @"".Match (@"".pattern·3 string "esc:0x1", @"".name·4 string) (@"".matched·1 bool, @"".err·2 error)
func @"".Glob (@"".pattern·3 string) (@"".matches·1 []string, @"".err·2 error)
const @"".Separator = '/'
const @"".ListSeparator = ':'
func @"".Clean (@"".path·2 string) (? string)
func @"".ToSlash (@"".path·2 string) (? string)
func @"".FromSlash (@"".path·2 string) (? string)
func @"".SplitList (@"".path·2 string) (? []string)
func @"".Split (@"".path·3 string "esc:0x92") (@"".dir·1 string, @"".file·2 string)
func @"".Join (@"".elem·2 ...string "esc:0x9") (? string)
func @"".Ext (@"".path·2 string "esc:0x12") (? string)
func @"".EvalSymlinks (@"".path·3 string) (? string, ? error)
func @"".Abs (@"".path·3 string) (? string, ? error)
func @"".Rel (@"".basepath·3 string, @"".targpath·4 string) (? string, ? error)
var @"".SkipDir error
import time "time" // indirect
type @"time".zone struct { @"time".name string; @"time".offset int; @"time".isDST bool }
type @"time".zoneTrans struct { @"time".when int64; @"time".index uint8; @"time".isstd bool; @"time".isutc bool }
type @"time".Location struct { @"time".name string; @"time".zone []@"time".zone; @"time".tx []@"time".zoneTrans; @"time".cacheStart int64; @"time".cacheEnd int64; @"time".cacheZone *@"time".zone }
func (@"time".l·2 *@"time".Location "esc:0x22") String () (? string)
func (@"time".l·2 *@"time".Location "esc:0x1") @"time".firstZoneUsed () (? bool)
func (@"time".l·2 *@"time".Location "esc:0x12") @"time".get () (? *@"time".Location)
func (@"time".l·6 *@"time".Location "esc:0x32") @"time".lookup (@"time".sec·7 int64) (@"time".name·1 string, @"time".offset·2 int, @"time".isDST·3 bool, @"time".start·4 int64, @"time".end·5 int64)
func (@"time".l·2 *@"time".Location "esc:0x1") @"time".lookupFirstZone () (? int)
func (@"time".l·4 *@"time".Location "esc:0x1") @"time".lookupName (@"time".name·5 string "esc:0x1", @"time".unix·6 int64) (@"time".offset·1 int, @"time".isDST·2 bool, @"time".ok·3 bool)
type @"time".Duration int64
func (@"time".d·2 @"time".Duration) Hours () (? float64) { var @"time".hour·3 @"time".Duration; ; @"time".hour·3 = @"time".d·2 / @"time".Duration(0x34630b8a000); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x34630b8a000); return float64(@"time".hour·3) + float64(@"time".nsec·4) * float64(8190022623310637111963488201822504381538623676021880892417778544696899264837610290203272971060556344039023584360473938041055625214280336402169897364226048p-553) }
func (@"time".d·2 @"time".Duration) Minutes () (? float64) { var @"time".min·3 @"time".Duration; ; @"time".min·3 = @"time".d·2 / @"time".Duration(0xdf8475800); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0xdf8475800); return float64(@"time".min·3) + float64(@"time".nsec·4) * float64(7678146209353722106395056769533233877065564876941352542109479049699919628723768656821910653339403201031675627614471533358284117434246264392176261853609984p-547) }
func (@"time".d·2 @"time".Duration) Nanoseconds () (? int64) { return int64(@"time".d·2) }
func (@"time".d·2 @"time".Duration) Seconds () (? float64) { var @"time".sec·3 @"time".Duration; ; @"time".sec·3 = @"time".d·2 / @"time".Duration(0x3b9aca00); var @"time".nsec·4 @"time".Duration; ; @"time".nsec·4 = @"time".d·2 % @"time".Duration(0x3b9aca00); return float64(@"time".sec·3) + float64(@"time".nsec·4) * float64(7198262071269114660816079141112770740375861891461678802759824945047098083990024106014198994535558872472104883612039846078596891298747423852523262413111296p-541) }
func (@"time".d·2 @"time".Duration) String () (? string)
type @"time".Month int
func (@"time".m·2 @"time".Month) String () (? string) { return @"time".months[@"time".m·2 - @"time".Month(0x1)] }
type @"time".Weekday int
func (@"time".d·2 @"time".Weekday) String () (? string) { return @"time".days[@"time".d·2] }
type @"time".Time struct { @"time".sec int64; @"time".nsec int32; @"time".loc *@"time".Location }
func (@"time".t·2 @"time".Time "esc:0x12") Add (@"time".d·3 @"time".Duration) (? @"time".Time) { @"time".t·2.@"time".sec += int64(@"time".d·3 / @"time".Duration(0x3b9aca00)); var @"time".nsec·4 int32; ; @"time".nsec·4 = int32(@"time".t·2.@"time".nsec) + int32(@"time".d·3 % @"time".Duration(0x3b9aca00)); if @"time".nsec·4 >= int32(0x3b9aca00) { @"time".t·2.@"time".sec++; @"time".nsec·4 -= int32(0x3b9aca00) } else { if @"time".nsec·4 < int32(0x0) { @"time".t·2.@"time".sec--; @"time".nsec·4 += int32(0x3b9aca00) } }; @"time".t·2.@"time".nsec = @"time".nsec·4; return @"time".t·2 }
func (@"time".t·2 @"time".Time "esc:0x12") AddDate (@"time".years·3 int, @"time".months·4 int, @"time".days·5 int) (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x1") After (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec > @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec > @"time".u·3.@"time".nsec }
func (@"time".t·2 @"time".Time "esc:0x9") AppendFormat (@"time".b·3 []byte "esc:0x1a", @"time".layout·4 string "esc:0x9") (? []byte)
func (@"time".t·2 @"time".Time "esc:0x1") Before (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec < @"time".u·3.@"time".sec || @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec < @"time".u·3.@"time".nsec }
func (@"time".t·4 @"time".Time "esc:0x1") Clock () (@"time".hour·1 int, @"time".min·2 int, @"time".sec·3 int)
func (@"time".t·4 @"time".Time "esc:0x1") Date () (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int)
func (@"time".t·2 @"time".Time "esc:0x1") Day () (? int)
func (@"time".t·2 @"time".Time "esc:0x1") Equal (@"time".u·3 @"time".Time "esc:0x1") (? bool) { return @"time".t·2.@"time".sec == @"time".u·3.@"time".sec && @"time".t·2.@"time".nsec == @"time".u·3.@"time".nsec }
func (@"time".t·2 @"time".Time "esc:0x9") Format (@"time".layout·3 string "esc:0x9") (? string)
func (@"time".t·2 *@"time".Time "esc:0x1") GobDecode (@"time".data·3 []byte "esc:0x1") (? error)
func (@"time".t·3 @"time".Time "esc:0x1") GobEncode () (? []byte, ? error)
func (@"time".t·2 @"time".Time "esc:0x1") Hour () (? int)
func (@"time".t·3 @"time".Time "esc:0x1") ISOWeek () (@"time".year·1 int, @"time".week·2 int)
func (@"time".t·2 @"time".Time "esc:0x12") In (@"time".loc·3 *@"time".Location "esc:0x12") (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x1") IsZero () (? bool) { return @"time".t·2.@"time".sec == int64(0x0) && @"time".t·2.@"time".nsec == int32(0x0) }
func (@"time".t·2 @"time".Time "esc:0x12") Local () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".Local; return @"time".t·2 }
func (@"time".t·2 @"time".Time "esc:0x12") Location () (? *@"time".Location) { var @"time".l·3 *@"time".Location; ; @"time".l·3 = @"time".t·2.@"time".loc; if @"time".l·3 == nil { @"time".l·3 = @"time".UTC }; return @"time".l·3 }
func (@"time".t·3 @"time".Time "esc:0x1") MarshalBinary () (? []byte, ? error)
func (@"time".t·3 @"time".Time "esc:0x9") MarshalJSON () (? []byte, ? error)
func (@"time".t·3 @"time".Time "esc:0x9") MarshalText () (? []byte, ? error)
func (@"time".t·2 @"time".Time "esc:0x1") Minute () (? int)
func (@"time".t·2 @"time".Time "esc:0x1") Month () (? @"time".Month)
func (@"time".t·2 @"time".Time "esc:0x1") Nanosecond () (? int) { return int(@"time".t·2.@"time".nsec) }
func (@"time".t·2 @"time".Time "esc:0x12") Round (@"time".d·3 @"time".Duration) (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x1") Second () (? int)
func (@"time".t·2 @"time".Time "esc:0x9") String () (? string)
func (@"time".t·2 @"time".Time "esc:0x1") Sub (@"time".u·3 @"time".Time "esc:0x1") (? @"time".Duration)
func (@"time".t·2 @"time".Time "esc:0x12") Truncate (@"time".d·3 @"time".Duration) (? @"time".Time)
func (@"time".t·2 @"time".Time "esc:0x12") UTC () (? @"time".Time) { @"time".t·2.@"time".loc = @"time".UTC; return @"time".t·2 }
func (@"time".t·2 @"time".Time "esc:0x1") Unix () (? int64) { return @"time".t·2.@"time".sec + int64(-0xe7791f700) }
func (@"time".t·2 @"time".Time "esc:0x1") UnixNano () (? int64) { return (@"time".t·2.@"time".sec + int64(-0xe7791f700)) * int64(0x3b9aca00) + int64(@"time".t·2.@"time".nsec) }
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalBinary (@"time".data·3 []byte "esc:0x1") (? error)
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalJSON (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error)
func (@"time".t·2 *@"time".Time "esc:0x1") UnmarshalText (@"time".data·3 []byte "esc:0x1") (@"time".err·1 error)
func (@"time".t·2 @"time".Time "esc:0x1") Weekday () (? @"time".Weekday)
func (@"time".t·2 @"time".Time "esc:0x1") Year () (? int)
func (@"time".t·2 @"time".Time "esc:0x1") YearDay () (? int)
func (@"time".t·3 @"time".Time "esc:0x32") Zone () (@"time".name·1 string, @"time".offset·2 int)
func (@"time".t·2 @"time".Time "esc:0x1") @"time".abs () (? uint64)
func (@"time".t·5 @"time".Time "esc:0x1") @"time".date (@"time".full·6 bool) (@"time".year·1 int, @"time".month·2 @"time".Month, @"time".day·3 int, @"time".yday·4 int)
func (@"time".t·4 @"time".Time "esc:0x32") @"time".locabs () (@"time".name·1 string, @"time".offset·2 int, @"time".abs·3 uint64)
type @"os".FileMode uint32
func (@"os".m·2 @"os".FileMode) IsDir () (? bool) { return @"os".m·2 & @"os".FileMode(0x80000000) != @"os".FileMode(0x0) }
func (@"os".m·2 @"os".FileMode) IsRegular () (? bool) { return @"os".m·2 & @"os".FileMode(0x8f000000) == @"os".FileMode(0x0) }
func (@"os".m·2 @"os".FileMode) Perm () (? @"os".FileMode) { return @"os".m·2 & @"os".FileMode(0x1ff) }
func (@"os".m·2 @"os".FileMode) String () (? string)
type @"os".FileInfo interface { IsDir() (? bool); ModTime() (? @"time".Time); Mode() (? @"os".FileMode); Name() (? string); Size() (? int64); Sys() (? interface {}) }
type @"".WalkFunc func(@"".path string, @"".info @"os".FileInfo, @"".err error) (? error)
func @"".Walk (@"".root·2 string, @"".walkFn·3 @"".WalkFunc "esc:0x1") (? error)
func @"".Base (@"".path·2 string "esc:0x12") (? string)
func @"".Dir (@"".path·2 string) (? string)
func @"".VolumeName (@"".path·2 string "esc:0x12") (? string) { return @"".path·2[:@"".volumeNameLen(@"".path·2)] }
func @"".IsAbs (@"".path·2 string "esc:0x1") (? bool) { return @"strings".HasPrefix(@"".path·2, string("/")) }
func @"".HasPrefix (@"".p·2 string "esc:0x1", @"".prefix·3 string "esc:0x1") (? bool) { return @"strings".HasPrefix(@"".p·2, @"".prefix·3) }
func @"".init ()
var @"time".months [12]string
var @"time".days [7]string
var @"time".Local *@"time".Location
var @"time".UTC *@"time".Location
func @"".volumeNameLen (@"".path·2 string "esc:0x1") (? int) { return int(0x0) }
func @"strings".HasPrefix (@"strings".s·2 string "esc:0x1", @"strings".prefix·3 string "esc:0x1") (? bool) { return len(@"strings".s·2) >= len(@"strings".prefix·3) && @"strings".s·2[int(0x0):len(@"strings".prefix·3)] == @"strings".prefix·3 }
$$
_go_.o 0 0 0 644 112958 `
go object linux amd64 go1.6 X:none
!
go13lderrors.aos.aruntime.asort.astrings.aunicode/utf8.a þ"".Match à àdH% HD$ÈH;A Hì¸ H$¸ H$è L$È 1Û1ÛH$è H$ð Iø Á 1ÛH$ H$ H$À H$LD$è L$Ð H¼$Ø ¶\$Hl$HT$ HL$(HD$0H¬$ H$À H$È û \$OtcH$ Hú uUL$H|$H H\$HÇD$ è H\$ Hû $à 1ÛH$è H$ð è Hĸ ÃH,$H$ HT$LD$H|$è L$Ð L$È H¼$Ø LL$ HL$(¶\$0Hl$8HT$@LL$XHL$`Hl$xH$ û tHù ç Iø Ý Hý t%Ƅ$à H¬$è H$ð è Hĸ À|$O ô 1ÀH9øé H9ø I¶û/Ð HÃHD$PHÿÃHýH9û^ H)ÝMÐHý tMH$ H$H$ H\$L$¨ LD$H¬$° Hl$è L$Ð L$È H¼$Ø LL$ Hl$(¶\$0HT$8HL$@LL$hHl$pH$ H$ û Iø u>Hý ~8HD$PHÿÀH9øÿÿÿƄ$à 1ÛH$è H$ð è Hĸ ÃL$Ð H¬$Ø Iø ?ýÿÿH$Ø Hû $à 1ÛH$è H$ð è Hĸ ÃHú oÿÿÿƄ$à H$è H$ð è Hĸ Ãè è L$Ð H$Ø é®üÿÿè éXüÿÿÌÌÌÌÌÌÌÌ
X *runtime.racefuncenter ô "".scanChunk Ä go.string."/" ê strings.Index ¾ (runtime.racefuncexit "".matchChunk (runtime.racefuncexit  "".matchChunk â (runtime.racefuncexit
(runtime.racefuncexit Þ
(runtime.racefuncexit ø
$runtime.panicslice $runtime.panicindex ¾ 0runtime.morestack_noctxt pð 0"".autotmp_0021 type.bool "".autotmp_0020 type.bool "".autotmp_0019 type.int "".autotmp_0016 type.int "".autotmp_0015 type.error "".autotmp_0014 type.bool "".autotmp_0013 type.string "".autotmp_0012 type.string "".autotmp_0010 type.int "".autotmp_0008 type.int "".autotmp_0006 type.bool "".autotmp_0005 type.string "".autotmp_0002 type.string "".err _type.error "".t type.string "".i Ïtype.int "".err type.error "".t ¿type.string "".chunk ?type.string "".star Ñtype.bool "".err Ptype.error "".matched @type.bool "".name type.string "".pattern type.string Tðïð«ïð¥ïðNïð.ïð#ï ° ZL
WHh'($ª OP;
P(ST
GH , +ó(5 Tgclocals·0a205417b9c1fcd6347976483add74e1 Tgclocals·9a159523349a19333ea703e2f3b0abd2 D$GOROOT/src/path/filepath/match.goþ"".scanChunk dH% H;ae Hì(H\$(H$è Ht$0HL$81Û1Û1Û1ÛÆD$@ Hù ~?Hù % ¶û*u-HËHù HÿËHõHû tHÿÅHÙHîÆD$@Hù Á1ÿ1ÀH9È}*H9È H¶+@ý[¤ @ý*
@ÿ umH9ÈwaHÇHòHÍHL$8H9ÈwGH)ÅIðHt$0Hý tM HT$HT$HH|$ H|$PLD$LD$XHl$Hl$`è HÄ(Ãè è HÿÀH9È}H9Èaÿÿÿè @ý[uâHÇÇ ëÙ@ý\uHÃHÿÃH9Ë}HÿÀëÃëÁ@ý]u»1ÿë·è è è é~þÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ
B *runtime.racefuncenter (runtime.racefuncexit ¨ $runtime.panicslice ¶ $runtime.panicslice æ $runtime.panicindex Ö $runtime.panicslice ä $runtime.panicindex ò 0runtime.morestack_noctxt pP "".autotmp_0028 ?type.string "".autotmp_0027 type.string "".autotmp_0026 type.int "".autotmp_0023 type.int "".rest Ptype.string "".chunk 0type.string "".star type.bool "".pattern type.string PûOPeO t¸<"
U56% é
} Tgclocals·e2dac4d95c44c6890bbbb3eb980ca3b3 Tgclocals·64ca935d1a2110a30e2d604686188539 D$GOROOT/src/path/filepath/match.goþ"".matchChunk À ÀdH% H;aw Hì`H\$`H$è LL$xH¼$ HT$hHD$p1Û1Û1ÛH$ H$¨ Ƅ$ 1ÛH$ H$ HD$pHø Ã H¼$ Hÿ u
è HÄ`ÃHø æ ¶*@ý?
å Hÿ Ô A¶û/u
è HÄ`ÃL$H|$è H\$H¬$ H9ë LD$xH)ÝHý tMHïMÁLD$xH\$pHûrgHÿËHl$hHû tHÿÅHØHêHl$hHD$pHø =ÿÿÿL$ H¼$ H¼$ Ƅ$ 1ÛH$ H$¨ è HÄ`Ãè è è @ý[
ê L$H|$è D$HL$D$@H¬$ H9é· LD$xH)ÍHý tMHïH¬$ MÁLD$xH\$pHû| HÿËHl$hHû tHÿÅHØHéHl$hH\$pHû u8H H$è H H$ H H$¨ è HÄ`ÃHû ¶] û^D$>|$>