Home | History | Annotate | Download | only in gob

Lines Matching full:reflect

11 	"reflect"
14 var decArrayHelper = map[reflect.Kind]decHelper{
15 reflect.Bool: decBoolArray,
16 reflect.Complex64: decComplex64Array,
17 reflect.Complex128: decComplex128Array,
18 reflect.Float32: decFloat32Array,
19 reflect.Float64: decFloat64Array,
20 reflect.Int: decIntArray,
21 reflect.Int16: decInt16Array,
22 reflect.Int32: decInt32Array,
23 reflect.Int64: decInt64Array,
24 reflect.Int8: decInt8Array,
25 reflect.String: decStringArray,
26 reflect.Uint: decUintArray,
27 reflect.Uint16: decUint16Array,
28 reflect.Uint32: decUint32Array,
29 reflect.Uint64: decUint64Array,
30 reflect.Uintptr: decUintptrArray,
33 var decSliceHelper = map[reflect.Kind]decHelper{
34 reflect.Bool: decBoolSlice,
35 reflect.Complex64: decComplex64Slice,
36 reflect.Complex128: decComplex128Slice,
37 reflect.Float32: decFloat32Slice,
38 reflect.Float64: decFloat64Slice,
39 reflect.Int: decIntSlice,
40 reflect.Int16: decInt16Slice,
41 reflect.Int32: decInt32Slice,
42 reflect.Int64: decInt64Slice,
43 reflect.Int8: decInt8Slice,
44 reflect.String: decStringSlice,
45 reflect.Uint: decUintSlice,
46 reflect.Uint16: decUint16Slice,
47 reflect.Uint32: decUint32Slice,
48 reflect.Uint64: decUint64Slice,
49 reflect.Uintptr: decUintptrSlice,
52 func decBoolArray(state *decoderState, v reflect.Value, length int, ovfl error) bool {
60 func decBoolSlice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
75 func decComplex64Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
83 func decComplex64Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
100 func decComplex128Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
108 func decComplex128Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
125 func decFloat32Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
133 func decFloat32Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
148 func decFloat64Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
156 func decFloat64Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
171 func decIntArray(state *decoderState, v reflect.Value, length int, ovfl error) bool {
179 func decIntSlice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
199 func decInt16Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
207 func decInt16Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
226 func decInt32Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
234 func decInt32Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
253 func decInt64Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
261 func decInt64Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
276 func decInt8Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
284 func decInt8Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
303 func decStringArray(state *decoderState, v reflect.Value, length int, ovfl error) bool {
311 func decStringSlice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
339 func decUintArray(state *decoderState, v reflect.Value, length int, ovfl error) bool {
347 func decUintSlice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
366 func decUint16Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
374 func decUint16Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
393 func decUint32Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
401 func decUint32Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
420 func decUint64Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
428 func decUint64Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
443 func decUintptrArray(state *decoderState, v reflect.Value, length int, ovfl error) bool {
451 func decUintptrSlice(state *decoderState, v reflect.Value, length int, ovfl error) bool {