Lines Matching full:nil
47 if e := recover(); e != nil {
136 state := &encoderState{enc: nil, b: b}
149 instr := &encInstr{encBool, 6, nil, 0}
161 instr := &encInstr{encInt, 6, nil, 0}
173 instr := &encInstr{encUint, 6, nil, 0}
185 instr := &encInstr{encInt, 6, nil, 0}
197 instr := &encInstr{encUint, 6, nil, 0}
209 instr := &encInstr{encInt, 6, nil, 0}
221 instr := &encInstr{encUint, 6, nil, 0}
233 instr := &encInstr{encInt, 6, nil, 0}
245 instr := &encInstr{encUint, 6, nil, 0}
257 instr := &encInstr{encInt, 6, nil, 0}
269 instr := &encInstr{encUint, 6, nil, 0}
281 instr := &encInstr{encFloat, 6, nil, 0}
293 instr := &encInstr{encFloat, 6, nil, 0}
305 instr := &encInstr{encUint8Array, 6, nil, 0}
317 instr := &encInstr{encString, 6, nil, 0}
351 instr := &decInstr{decBool, 6, nil, ovfl}
361 instr := &decInstr{decOpTable[reflect.Int], 6, nil, ovfl}
372 instr := &decInstr{decOpTable[reflect.Uint], 6, nil, ovfl}
383 instr := &decInstr{decInt8, 6, nil, ovfl}
394 instr := &decInstr{decUint8, 6, nil, ovfl}
405 instr := &decInstr{decInt16, 6, nil, ovfl}
416 instr := &decInstr{decUint16, 6, nil, ovfl}
427 instr := &decInstr{decInt32, 6, nil, ovfl}
438 instr := &decInstr{decUint32, 6, nil, ovfl}
449 instr := &decInstr{decOpTable[reflect.Uintptr], 6, nil, ovfl}
460 instr := &decInstr{decInt64, 6, nil, ovfl}
471 instr := &decInstr{decUint64, 6, nil, ovfl}
482 instr := &decInstr{decFloat32, 6, nil, ovfl}
493 instr := &decInstr{decFloat64, 6, nil, ovfl}
504 instr := &decInstr{decOpTable[reflect.Complex64], 6, nil, ovfl}
515 instr := &decInstr{decOpTable[reflect.Complex128], 6, nil, ovfl}
526 instr := &decInstr{decUint8Slice, 6, nil, ovfl}
537 instr := &decInstr{decString, 6, nil, ovfl}
555 EmptyMap map[string]int // to check that we receive a non-nil map.
582 if err != nil {
587 if err != nil {
593 // Be absolutely sure the received map is non-nil.
594 if t1.EmptyMap == nil {
595 t.Errorf("nil map sent")
597 if _t1.EmptyMap == nil {
598 t.Errorf("nil map received")
630 if err == nil || err.Error() != `value for "Maxi" out of range` {
639 if err == nil || err.Error() != `value for "Mini" out of range` {
655 if err == nil || err.Error() != `value for "Maxi" out of range` {
664 if err == nil
680 if err == nil || err.Error() != `value for "Maxi" out of range` {
689 if err == nil || err.Error() != `value for "Mini" out of range` {
704 if err == nil || err.Error() != `value for "Maxu" out of range` {
719 if err == nil || err.Error() != `value for "Maxu" out of range` {
734 if err == nil || err.Error() != `value for "Maxu" out of range` {
750 if err == nil || err.Error() != `value for "Maxf" out of range` {
766 if err == nil || err.Error() != `value for "Maxc" out of range` {
785 if err != nil {
791 if drt.Next == nil {
917 if err != nil {
960 if err != nil {
973 if err == nil {
1014 if err != nil {
1035 if err != nil {
1105 item1 := &InterfaceItem{1, iVal, fVal, vVal, 11.5, []Squarer{iVal, fVal, nil, vVal}}
1111 if err != nil {
1117 if err != nil {
1123 if item2.Sq1 == nil || item2.Sq1.Square() != iVal.Square() {
1126 if item2.Sq2 == nil || item2.Sq2.Square() != fVal.Square() {
1129 if item2.Sq3 == nil || item2.Sq3.Square() != vVal.Square() {
1135 // Now check that we received a slice of Squarers correctly, including a nil element
1141 if v1 == nil || v2 == nil {
1142 if v1 != nil || v2 != nil {
1174 if err != nil {
1180 if err != nil {
1215 if err != nil {
1221 if err != nil {
1240 item1 := &InterfaceItem{1, iVal, fVal, pVal, 11.5, nil}
1246 if err != nil {
1252 if err != nil {
1282 if err != nil {
1304 if debugFunc == nil {
1311 if err != nil {
1343 dt.I_nil = nil
1351 if debugFunc == nil {
1358 if err != nil {
1364 if err != nil {
1373 if err := enc.Encode(&in); err != nil {
1386 if err := dec.Decode(&e); err != nil {
1389 return nil
1442 if err := NewEncoder(buf).Encode(dt); err != nil {
1465 if p := recover(); p != nil {