Lines Matching full:reflect
10 import reflect "reflect"
69 type @"reflect".typeAlg struct { @"reflect".hash func(? @"unsafe".Pointer, ? uintptr) (? uintptr); @"reflect".equal func(? @"unsafe".Pointer, ? @"unsafe".Pointer) (? bool) }
70 type @"reflect".method struct { @"reflect".name *string; @"reflect".pkgPath *string; @"reflect".mtyp *@"reflect".rtype; @"reflect".typ *@"reflect".rtype; @"reflect".ifn @"unsafe".Pointer; @"reflect".tfn @"unsafe".Pointer }
71 type @"reflect".ChanDir int
72 func (@"reflect".d·2 @"reflect".ChanDir) String () (? string)
73 type @"reflect".StructTag string
74 func (@"reflect".tag·2 @"reflect".StructTag "esc:0x12") Get (@"reflect".key·3 string "esc:0x1") (? string)
75 type @"reflect".StructField struct { Name string; PkgPath string; Type @"reflect".Type; Tag @"reflect".StructTag; Offset uintptr; Index []int; Anonymous bool }
76 type @"reflect".Kind uint
77 func (@"reflect".k·2 @"reflect".Kind) String () (? string)
78 type @"reflect".Type interface { Align() (? int); AssignableTo(@"reflect".u @"reflect".Type) (? bool); Bits() (? int); ChanDir() (? @"reflect".ChanDir); Comparable() (? bool); ConvertibleTo(@"reflect".u @"reflect".Type) (? bool); Elem() (? @"reflect".Type); Field(@"reflect".i int) (? @"reflect".StructField); FieldAlign() (? int); FieldByIndex(@"reflect".index []int) (? @"reflect".StructField); FieldByName(@"reflect".name string) (? @"reflect".StructField, ? bool); FieldByNameFunc(@"reflect".match func(? string) (? bool)) (? @"reflect".StructField, ? bool); Implements(@"reflect".u @"reflect".Type) (? bool); In(@"reflect".i int) (? @"reflect".Type); IsVariadic() (? bool); Key() (? @"reflect".Type); Kind() (? @"reflect".Kind); Len() (? int); Method(? int) (? @"reflect".Method); MethodByName(? string) (? @"reflect".Method, ? bool); Name() (? string); NumField() (? int); NumIn() (? int); NumMethod() (? int); NumOut() (? int); Out(@"reflect".i int) (? @"reflect".Type); PkgPath() (? string); Size() (? uintptr); String() (? string); @"reflect".common() (? *@"reflect".rtype); @"reflect".uncommon() (? *@"reflect".uncommonType) }
79 type @"reflect".Method struct { Name string; PkgPath string; Type @"reflect".Type; Func @"reflect".Value; Index int }
80 type @"reflect".uncommonType struct { @"reflect".name *string; @"reflect".pkgPath *string; @"reflect".methods []@"reflect".method }
81 func (@"reflect".t·2 *@"reflect".uncommonType "esc:0x22") Method (@"reflect".i·3 int) (@"reflect".m·1 @"reflect".Method)
82 func (@"reflect".t·3 *@"reflect".uncommonType "esc:0x22") MethodByName (@"reflect".name·4 string "esc:0x1") (@"reflect".m·1 @"reflect".Method, @"reflect".ok·2 bool)
83 func (@"reflect".t·2 *@"reflect".uncommonType "esc:0x32") Name () (? string) { if @"reflect".t·2 == nil || @"reflect".t·2.@"reflect".name == nil { return "" }; return *@"reflect".t·2.@"reflect".name }
84 func (@"reflect".t·2 *@"reflect".uncommonType "esc:0x1") NumMethod () (? int) { if @"reflect".t·2 == nil { return 0x0 }; return len(@"reflect".t·2.@"reflect".methods) }
85 func (@"reflect".t·2 *@"reflect".uncommonType "esc:0x32") PkgPath () (? string) { if @"reflect".t·2 == nil || @"reflect".t·2.@"reflect".pkgPath == nil { return "" }; return *@"reflect".t·2.@"reflect".pkgPath }
86 func (@"reflect".t·2 *@"reflect".uncommonType "esc:0x12") @"reflect".uncommon () (? *@"reflect".uncommonType) { return @"reflect".t·2 }
87 type @"reflect".rtype struct { @"reflect".size uintptr; @"reflect".ptrdata uintptr; @"reflect".hash uint32; _ uint8; @"reflect".align uint8; @"reflect".fieldAlign uint8; @"reflect".kind uint8; @"reflect".alg *@"reflect".typeAlg; @"reflect".gcdata *byte; @"reflect".string *string; @"reflect".? *@"reflect".uncommonType; @"reflect".ptrToThis *@"reflect".rtype; @"reflect".zero @"unsafe".Pointer }
88 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") Align () (? int) { return int(@"reflect".t·2.@"reflect".align) }
89 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") AssignableTo (@"reflect".u·3 @"reflect".Type "esc:0x1") (? bool)
90 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") Bits () (? int)
91 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") ChanDir () (? @"reflect".ChanDir)
92 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") Comparable () (? bool) { return @"reflect".t·2.@"reflect".alg != nil && @"reflect".t·2.@"reflect".alg.@"reflect".equal != nil }
93 func (@"reflect".t·2 *@"reflect".rtype "esc:0x9") ConvertibleTo (@"reflect".u·3 @"reflect".Type "esc:0x9") (? bool)
94 func (@"reflect".t·2 *@"reflect".rtype "esc:0x22") Elem () (? @"reflect".Type)
95 func (@"reflect".t·2 *@"reflect".rtype "esc:0x3a") Field (@"reflect".i·3 int) (? @"reflect".StructField)
96 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") FieldAlign () (? int) { return int(@"reflect".t·2.@"reflect".fieldAlign) }
97 func (@"reflect".t·2 *@"reflect".rtype) FieldByIndex (@"reflect".index·3 []int "esc:0x1") (? @"reflect".StructField)
98 func (@"reflect".t·3 *@"reflect".rtype) FieldByName (@"reflect".name·4 string "esc:0x1") (? @"reflect".StructField, ? bool)
99 func (@"reflect".t·3 *@"reflect".rtype) FieldByNameFunc (@"reflect".match·4 func(? string) (? bool) "esc:0x1") (? @"reflect".StructField, ? bool)
100 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") Implements (@"reflect".u·3 @"reflect".Type) (? bool)
101 func (@"reflect".t·2 *@"reflect".rtype "esc:0x32") In (@"reflect".i·3 int) (? @"reflect".Type)
102 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") IsVariadic () (? bool)
103 func (@"reflect".t·2 *@"reflect".rtype "esc:0x22") Key () (? @"reflect".Type)
104 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") Kind () (? @"reflect".Kind) { return @"reflect".Kind(@"reflect".t·2.@"reflect".kind & 0x1f) }
105 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") Len () (? int)
106 func (@"reflect".t·2 *@"reflect".rtype "esc:0x32") Method (@"reflect".i·3 int) (@"reflect".m·1 @"reflect".Method)
107 func (@"reflect".t·3 *@"reflect".rtype "esc:0x32") MethodByName (@"reflect".name·4 string "esc:0x1") (@"reflect".m·1 @"reflect".Method, @"reflect".ok·2 bool)
108 func (@"reflect".t·2 *@"reflect".rtype "esc:0x42") Name () (? string) { return @"reflect".t·2.@"reflect".uncommonType.Name() }
109 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") NumField () (? int)
110 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") NumIn () (? int)
111 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") NumMethod () (? int) { if @"reflect".t·2.Kind() == @"reflect".Kind(0x14) { var @"reflect".tt·3 *@"reflect".interfaceType; ; @"reflect".tt·3 = (*@"reflect".interfaceType)(@"unsafe".Pointer(@"reflect".t·2)); return @"reflect".tt·3.NumMethod() }; return @"reflect".t·2.@"reflect".uncommonType.NumMethod() }
112 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") NumOut () (? int)
113 func (@"reflect".t·2 *@"reflect".rtype "esc:0x32") Out (@"reflect".i·3 int) (? @"reflect".Type)
114 func (@"reflect".t·2 *@"reflect".rtype "esc:0x42") PkgPath () (? string) { return @"reflect".t·2.@"reflect".uncommonType.PkgPath() }
115 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") Size () (? uintptr) { return @"reflect".t·2.@"reflect".size }
116 func (@"reflect".t·2 *@"reflect".rtype "esc:0x32") String () (? string) { return *@"reflect".t·2.@"reflect".string }
117 func (@"reflect".t·2 *@"reflect".rtype "esc:0x12") @"reflect".common () (? *@"reflect".rtype) { return @"reflect".t·2 }
118 func (@"reflect".t·2 *@"reflect".rtype "esc:0x1") @"reflect".pointers () (? bool) { return @"reflect".t·2.@"reflect".kind & 0x80 == 0x0 }
119 func (@"reflect".t·2 *@"reflect".rtype) @"reflect".ptrTo () (? *@"reflect".rtype)
120 type @"reflect".flag uintptr
121 func (@"reflect".f·2 @"reflect".flag) @"reflect".kind () (? @"reflect".Kind) { return @"reflect".Kind(@"reflect".f·2 & @"reflect".flag(0x1f)) }
122 func (@"reflect".f·1 @"reflect".flag) @"reflect".mustBe (@"reflect".expected·2 @"reflect".Kind)
123 func (@"reflect".f·1 @"reflect".flag) @"reflect".mustBeAssignable ()
124 func (@"reflect".f·1 @"reflect".flag) @"reflect".mustBeExported ()
125 type @"reflect".Value struct { @"reflect".typ *@"reflect".rtype; @"reflect".ptr @"unsafe".Pointer; @"reflect".? @"reflect".flag }
126 func (@"reflect".v·2 @"reflect".Value) Addr () (? @"reflect".Value)
127 func (@"reflect".v·2 @"reflect".Value "esc:0x1") Bool () (? bool)
128 func (@"reflect".v·2 @"reflect".Value "esc:0x2a") Bytes () (? []byte)
129 func (@"reflect".v·2 @"reflect".Value) Call (@"reflect".in·3 []@"reflect".Value "esc:0x9") (? []@"reflect".Value)
130 func (@"reflect".v·2 @"reflect".Value) CallSlice (@"reflect".in·3 []@"reflect".Value "esc:0x9") (? []@"reflect".Value)
131 func (@"reflect".v·2 @"reflect".Value "esc:0x1") CanAddr () (? bool) { return @"reflect".v·2.@"reflect".flag & @"reflect".flag(0x80) != @"reflect".flag(0x0) }
132 func (@"reflect".v·2 @"reflect".Value "esc:0x1") CanInterface () (? bool)
133 func (@"reflect".v·2 @"reflect".Value "esc:0x1") CanSet () (? bool) { return @"reflect".v·2.@"reflect".flag & @"reflect".flag(0xa0) == @"reflect".flag(0x80) }
134 func (@"reflect".v·2 @"reflect".Value) Cap () (? int)
135 func (@"reflect".v·1 @"reflect".Value) Close ()
136 func (@"reflect".v·2 @"reflect".Value "esc:0x1") Complex () (? complex128)
137 func (@"reflect".v·2 @"reflect".Value) Convert (@"reflect".t·3 @"reflect".Type) (? @"reflect".Value)
138 func (@"reflect".v·2 @"reflect".Value "esc:0x12") Elem () (? @"reflect".Value)
139 func (@"reflect".v·2 @"reflect".Value "esc:0x12") Field (@"reflect".i·3 int) (? @"reflect".Value)
140 func (@"reflect".v·2 @"reflect".Value "esc:0x1a") FieldByIndex (@"reflect".index·3 []int "esc:0x1") (? @"reflect".Value)
141 func (@"reflect".v·2 @"reflect".Value) FieldByName (@"reflect".name·3 string "esc:0x1") (? @"reflect".Value)
142 func (@"reflect".v·2 @"reflect".Value) FieldByNameFunc (@"reflect".match·3 func(? string) (? bool) "esc:0x1") (? @"reflect".Value)
143 func (@"reflect".v·2 @"reflect".Value "esc:0x1") Float () (? float64)
144 func (@"reflect".v·2 @"reflect".Value "esc:0x12") Index (@"reflect".i·3 int) (? @"reflect".Value)
145 func (@"reflect".v·2 @"reflect".Value "esc:0x1") Int () (? int64)
146 func (@"reflect".v·2 @"reflect".Value) Interface () (@"reflect".i·1 interface {})
147 func (@"reflect".v·2 @"reflect".Value "esc:0x1") InterfaceData () (? [2]uintptr)
148 func (@"reflect".v·2 @"reflect".Value "esc:0x1") IsNil () (? bool)
149 func (@"reflect".v·2 @"reflect".Value "esc:0x1") IsValid () (? bool) { return @"reflect".v·2.@"reflect".flag != @"reflect".flag(0x0) }
150 func (@"reflect".v·2 @"reflect".Value "esc:0x1") Kind () (? @"reflect".Kind) { return @"reflect".v·2.@"reflect".flag.@"reflect".kind() }
151 func (@"reflect".v·2 @"reflect".Value) Len () (? int)
152 func (@"reflect".v·2 @"reflect".Value "esc:0x2a") MapIndex (@"reflect".key·3 @"reflect".Value) (? @"reflect".Value)
153 func (@"reflect".v·2 @"reflect".Value "esc:0x9") MapKeys () (? []@"reflect".Value)
154 func (@"reflect".v·2 @"reflect".Value "esc:0x12") Method (@"reflect".i·3 int) (? @"reflect".Value)
155 func (@"reflect".v·2 @"reflect".Value "esc:0x12") MethodByName (@"reflect".name·3 string "esc:0x1") (? @"reflect".Value)
156 func (@"reflect".v·2 @"reflect".Value "esc:0x1") NumField () (? int)
157 func (@"reflect".v·2 @"reflect".Value "esc:0x1") NumMethod () (? int)
158 func (@"reflect".v·2 @"reflect".Value "esc:0x1") OverflowComplex (@"reflect".x·3 complex128) (? bool)
159 func (@"reflect".v·2 @"reflect".Value "esc:0x1") OverflowFloat (@"reflect".x·3 float64) (? bool)
160 reflect".v·2 @"reflect".Value "esc:0x1") OverflowInt (@"reflect".x·3 int64) (? bool)
161 func (@"reflect".v·2 @"reflect".Value "esc:0x1") OverflowUint (@"reflect".x·3 uint64) (? bool)
162 func (@"reflect".v·2 @"reflect".Value "esc:0x12") Pointer () (? uintptr)
163 func (@"reflect".v·3 @"reflect".Value) Recv () (@"reflect".x·1 @"reflect".Value, @"reflect".ok·2 bool)
164 func (@"reflect".v·1 @"reflect".Value "esc:0x9") Send (@"reflect".x·2 @"reflect".Value)
165 func (@"reflect".v·1 @"reflect".Value) Set (@"reflect".x·2 @"reflect".Value)
166 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetBool (@"reflect".x·2 bool)
167 func (@"reflect".v·1 @"reflect".Value "esc:0x9") SetBytes (@"reflect".x·2 []byte)
168 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetCap (@"reflect".n·2 int)
169 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetComplex (@"reflect".x·2 complex128)
170 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetFloat (@"reflect".x·2 float64)
171 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetInt (@"reflect".x·2 int64)
172 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetLen (@"reflect".n·2 int)
173 func (@"reflect".v·1 @"reflect".Value) SetMapIndex (@"reflect".key·2 @"reflect".Value, @"reflect".val·3 @"reflect".Value)
174 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetPointer (@"reflect".x·2 @"unsafe".Pointer)
175 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetString (@"reflect".x·2 string)
176 func (@"reflect".v·1 @"reflect".Value "esc:0x1") SetUint (@"reflect".x·2 uint64)
177 func (@"reflect".v·2 @"reflect".Value) Slice (@"reflect".i·3 int, @"reflect".j·4 int) (? @"reflect".Value)
178 func (@"reflect".v·2 @"reflect".Value) Slice3 (@"reflect".i·3 int, @"reflect".j·4 int, @"reflect".k·5 int) (? @"reflect".Value)
179 func (@"reflect".v·2 @"reflect".Value) String () (? string)
180 func (@"reflect".v·3 @"reflect".Value) TryRecv () (@"reflect".x·1 @"reflect".Value, @"reflect".ok·2 bool)
181 func (@"reflect".v·2 @"reflect".Value "esc:0x9") TrySend (@"reflect".x·3 @"reflect".Value) (? bool)
182 func (@"reflect".v·2 @"reflect".Value "esc:0x12") Type () (? @"reflect".Type)
183 func (@"reflect".v·2 @"reflect".Value "esc:0x1") Uint () (? uint64)
184 func (@"reflect".v·2 @"reflect".Value "esc:0x12") UnsafeAddr () (? uintptr)
185 func (@"reflect".v·2 @"reflect".Value) @"reflect".assignTo (@"reflect".context·3 string "esc:0x1", @"reflect".dst·4 *@"reflect".rtype, @"reflect".target·5 @"unsafe".Pointer) (? @"reflect".Value)
186 func (@"reflect".v·2 @"reflect".Value) @"reflect".call (@"reflect".op·3 string "esc:0x1", @"reflect".in·4 []@"reflect".Value "esc:0x9") (? []@"reflect".Value)
187 func (@"reflect".v·2 @"reflect".Value "esc:0x12") @"reflect".pointer () (? @"unsafe".Pointer)
188 func (@"reflect".v·3 @"reflect".Value) @"reflect".recv (@"reflect".nb·4 bool) (@"reflect".val·1 @"reflect".Value, @"reflect".ok·2 bool)
189 func (@"reflect".v·2 @"reflect".Value "esc:0x2a") @"reflect".runes () (? []rune)
190 func (@"reflect".v·2 @"reflect".Value "esc:0x9") @"reflect".send (@"reflect".x·3 @"reflect".Value, @"reflect".nb·4 bool) (@"reflect".selected·1 bool)
191 func (@"reflect".v·1 @"reflect".Value "esc:0x9") @"reflect".setRunes (@"reflect".x·2 []rune)
192 type @"".decOp func(@"".i *@"".decInstr, @"".state *@"".decoderState, @"".v @"reflect".Value)
195 type @"".userTypeInfo struct { @"".user @"reflect".Type; @"".base @"reflect".Type; @"".indir int; @"".externalEnc int; @"".externalDec int; @"".encIndir int8; @"".decIndir int8 }
196 type @"".decHelper func(@"".state *@"".decoderState, @"".v @"reflect".Value, @"".length int, @"".ovfl error) (? bool)
197 type @"".Decoder struct { @"".mutex @"sync".Mutex; @"".r @"io".Reader; @"".buf @"".decBuffer; @"".wireType map[@"".typeId]*@"".wireType; @"".decoderCache map[@"reflect".Type]map[@"".typeId]**@"".decEngine; @"".ignorerCache map[@"".typeId]**@"".decEngine; @"".freeList *@"".decoderState; @"".countBuf []byte; @"".err error }
199 func (@"".dec·2 *@"".Decoder) DecodeValue (@"".v·3 @"reflect".Value) (? error)
200 func (@"".dec·2 *@"".Decoder "esc:0x1") @"".compatibleType (@"".fr·3 @"reflect".Type, @"".fw·4 @"".typeId, @"".inProgress·5 map[@"reflect".Type]@"".typeId "esc:0x1") (? bool)
205 func (@"".dec·2 *@"".Decoder) @"".decOpFor (@"".wireId·3 @"".typeId, @"".rt·4 @"reflect".Type, @"".name·5 string "esc:0x1", @"".inProgress·6 map[@"reflect".Type]*@"".decOp "esc:0x1") (? *@"".decOp)
206 func (@"".dec·1 *@"".Decoder "esc:0x1") @"".decodeArray (@"".atyp·2 @"reflect".Type "esc:0x1", @"".state·3 *@"".decoderState, @"".value·4 @"reflect".Value, @"".elemOp·5 @"".decOp, @"".length·6 int, @"".ovfl·7 error, @"".helper·8 @"".decHelper "esc:0x1")
207 func (@"".dec·1 *@"".Decoder "esc:0x1") @"".decodeArrayHelper (@"".state·2 *@"".decoderState, @"".value·3 @"reflect".Value, @"".elemOp·4 @"".decOp, @"".length·5 int, @"".ovfl·6 error, @"".helper·7 @"".decHelper "esc:0x1")
208 func (@"".dec·1 *@"".Decoder "esc:0x1") @"".decodeGobDecoder (@"".ut·2 *@"".userTypeInfo "esc:0x1", @"".state·3 *@"".decoderState "esc:0x9", @"".value·4 @"reflect".Value)
210 func (@"".dec·1 *@"".Decoder) @"".decodeInterface (@"".ityp·2 @"reflect".Type, @"".state·3 *@"".decoderState "esc:0x9", @"".value·4 @"reflect".Value)
211 func (@"".dec·1 *@"".Decoder "esc:0x1") @"".decodeMap (@"".mtyp·2 @"reflect".Type, @"".state·3 *@"".decoderState, @"".value·4 @"reflect".Value, @"".keyOp·5 @"".decOp, @"".elemOp·6 @"".decOp, @"".ovfl·7 error)
212 func (@"".dec·1 *@"".Decoder) @"".decodeSingle (@"".engine·2 *@"".decEngine "esc:0x9", @"".ut·3 *@"".userTypeInfo "esc:0x1", @"".value·4 @"reflect".Value)
213 func (@"".dec·1 *@"".Decoder "esc:0x1") @"".decodeSlice (@"".state·2 *@"".decoderState, @"".value·3 @"reflect".Value, @"".elemOp·4 @"".decOp, @"".ovfl·5 error, @"".helper·6 @"".decHelper "esc:0x1")
214 func (@"".dec·1 *@"".Decoder) @"".decodeStruct (@"".engine·2 *@"".decEngine "esc:0x9", @"".ut·3 *@"".userTypeInfo "esc:0x1", @"".value·4 @"reflect".Value)
216 func (@"".dec·1 *@"".Decoder) @"".decodeValue (@"".wireId·2 @"".typeId, @"".value·3 @"reflect".Value)
236 func @"".NewDecoder (@"".r·2 @"io".Reader) (? *@"".Decoder) { var @"".dec·3 *@"".Decoder; @"".dec·3 = new(@"".Decoder); { var @"".ok·4 bool; _, @"".ok·4 = @"".r·2.(@"io".ByteReader); if !@"".ok·4 { @"".r·2 = @"bufio".NewReader(@"".r·2) }}; @"".dec·3.@"".r = @"".r·2; @"".dec·3.@"".wireType = make(map[@"".typeId]*@"".wireType); @"".dec·3.@"".decoderCache = make(map[@"reflect".Type]map[@"".typeId]**@"".decEngine); @"".dec·3.@"".ignorerCache = make(map[@"".typeId]**@"".decEngine); @"".dec·3.@"".countBuf = make([]byte, 0x9); return @"".dec·3 }
245 type @"".encOp func(@"".i *@"".encInstr, @"".state *@"".encoderState, @"".v @"reflect".Value)
252 type @"".encHelper func(@"".state *@"".encoderState, @"".v @"reflect".Value) (? bool)
253 type @"".Encoder struct { @"".mutex @"sync".Mutex; @"".w []@"io".Writer; @"".sent map[@"reflect".Type]@"".typeId; @"".countState *@"".encoderState; @"".freeList *@"".encoderState; @"".byteBuf @"".encBuffer; @"".err error }
255 func (@"".enc·2 *@"".Encoder) EncodeValue (@"".value·3 @"reflect".Value) (? error)
256 func (@"".enc·1 *@"".Encoder) @"".encode (@"".b·2 *@"".encBuffer, @"".value·3 @"reflect".Value, @"".ut·4 *@"".userTypeInfo "esc:0x9")
257 func (@"".enc·1 *@"".Encoder) @"".encodeArray (@"".b·2 *@"".encBuffer, @"".value·3 @"reflect".Value, @"".op·4 @"".encOp "esc:0x1", @"".elemIndir·5 int, @"".length·6 int, @"".helper·7 @"".encHelper "esc:0x1")
258 func (@"".enc·1 *@"".Encoder) @"".encodeGobEncoder (@"".b·2 *@"".encBuffer, @"".ut·3 *@"".userTypeInfo "esc:0x1", @"".v·4 @"reflect".Value)
259 func (@"".enc·1 *@"".Encoder) @"".encodeInterface (@"".b·2 *@"".encBuffer, @"".iv·3 @"reflect".Value)
260 func (@"".enc·1 *@"".Encoder) @"".encodeMap (@"".b·2 *@"".encBuffer, @"".mv·3 @"reflect".Value "esc:0x9", @"".keyOp·4 @"".encOp "esc:0x1", @"".elemOp·5 @"".encOp "esc:0x1", @"".keyIndir·6 int, @"".elemIndir·7 int)
261 func (@"".enc·1 *@"".Encoder) @"".encodeSingle (@"".b·2 *@"".encBuffer, @"".engine·3 *@"".encEngine "esc:0x9", @"".value·4 @"reflect".Value)
262 func (@"".enc·1 *@"".Encoder) @"".encodeStruct (@"".b·2 *@"".encBuffer, @"".engine·3 *@"".encEngine "esc:0x9", @"".value·4 @"reflect".Value)
267 func (@"".enc·2 *@"".Encoder) @"".sendActualType (@"".w·3 @"io".Writer, @"".state·4 *@"".encoderState "esc:0x9", @"".ut·5 *@"".userTypeInfo "esc:0x9", @"".actual·6 @"reflect".Type) (@"".sent·1 bool)
268 func (@"".enc·2 *@"".Encoder) @"".sendType (@"".w·3 @"io".Writer, @"".state·4 *@"".encoderState "esc:0x9", @"".origt·5 @"reflect".Type) (@"".sent·1 bool)
282 type @"reflect".imethod struct { @"reflect".name *string; @"reflect".pkgPath *string; @"reflect".typ *@"reflect".rtype }
283 type @"reflect".interfaceType struct { @"reflect".? @"reflect".rtype "reflect:\"interface\""; @"reflect".methods []@"reflect".imethod }
284 func (@"reflect".t·2 *@"reflect".interfaceType "esc:0x32") Method (@"reflect".i·3 int) (@"reflect".m·1 @"reflect".Method) { if @"reflect".i·3 < 0x0 || @"reflect".i·3 >= len(@"reflect".t·2.@"reflect".methods) { return }; var @"reflect".p·4 *@"reflect".imethod; ; @"reflect".p·4 = &@"reflect".t·2.@"reflect".methods[@"reflect".i·3]; @"reflect".m·1.Name = *@"reflect".p·4.@"reflect".name; if @"reflect".p·4.@"reflect".pkgPath != nil { @"reflect".m·1.PkgPath = *@"reflect".p·4.@"reflect".pkgPath }; @"reflect".m·1.Type = @"reflect".toType(@"reflect".p·4.@"reflect".typ); @"reflect".m·1.Index = @"reflect".i·3; return }
285 func (@"reflect".t·3 *@"reflect".interfaceType "esc:0x32") MethodByName (@"reflect".name·4 string "esc:0x1") (@"reflect".m·1 @"reflect".Method, @"reflect".ok·2 bool)
286 func (@"reflect".t·2 *@"reflect".interfaceType "esc:0x1") NumMethod () (? int) { return len(@"reflect".t·2.@"reflect".methods) }
310 func @"reflect".toType (@"reflect".t·2 *@"reflect".rtype "esc:0x12") (? @"reflect".Type) { if @"reflect".t·2 == nil { return nil }; return @"reflect".t·2 }
321 go13ldmath.areflect.aencoding.aerrors.aio.abufio.async.a
328 "reflect.Value.Len ?
329 &reflect.Value.Slice ?
331 0runtime.morestack_noctxt ?? "".autotmp_0007 type.bool "".autotmp_0006 /$type.reflect.Value reflect.v·2 _$type.reflect.Value "".~r4 ptype.bool "".ovfl Ptype.error "".length @type.int "".v $type.reflect.Value "".state *type.*"".decoderState &?H????? ? j/$ ? n? Tgclocals·87c0235e27d91390e67202f272120f9f Tgclocals·709a14768fab2805a378215c02f0d27f lprebuilts/go/linux-x86/src/encoding/gob/dec_helpers.go?"".decBoolSlice ?
343 .reflect.Value.Interface ? type.[]bool ?
351 0runtime.morestack_noctxt ?? "".autotmp_0020 "type.interface {} "".autotmp_0019 ?(type.[1]interface {} "".autotmp_0016 _&type.[]interface {} "".autotmp_0012 ?type.int "".autotmp_0011 type.int "".autotmp_0010 /type.[]bool "".autotmp_0009 ?"type.interface {} "".i ?type.int "".slice ?type.[]bool "".~r4 ptype.bool "".ovfl Ptype.error "".length @type.int "".v $type.reflect.Value "".state *type.*"".decoderState (???????4 ? :z+?!?= QU?gf Tgclocals·8fb62c812cb64ff7ae3bed3d44af3fe6 Tgclocals·2772cf525f26078961ba2e942a14dade lprebuilts/go/linux-x86/src/encoding/gob/dec_helpers.go?("".decComplex64Array ? ?dH?% H;a? H??pH??$? H??$? H??$? H?l$@H?T$HH??H?L$PH?? H?? ??<