Lines Matching full:if

37 		if e := p.WriteBool(context.Background(), value); e != nil {
40 if e := p.Flush(context.Background()); e != nil {
45 if value {
50 if s != expected {
54 if err := json.Unmarshal([]byte(s), &v); err != nil || (v != 0) != value {
67 if value {
75 if e != nil {
78 if v != value {
82 if err := json.Unmarshal([]byte(s), &vv); err != nil || (vv != 0) != value {
95 if e := p.WriteByte(context.Background(), value); e != nil {
98 if e := p.Flush(context.Background()); e != nil {
102 if s != fmt.Sprint(value) {
106 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
123 if e != nil {
126 if v != value {
129 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
142 if e := p.WriteI16(context.Background(), value); e != nil {
145 if e := p.Flush(context.Background()); e != nil {
149 if s != fmt.Sprint(value) {
153 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
170 if e != nil {
173 if v != value {
176 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
189 if e := p.WriteI32(context.Background(), value); e != nil {
192 if e := p.Flush(context.Background()); e != nil {
196 if s != fmt.Sprint(value) {
200 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
217 if e != nil {
220 if v != value {
223 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
236 if e := p.WriteI64(context.Background(), value); e != nil {
239 if e := p.Flush(context.Background()); e != nil {
243 if s != fmt.Sprint(value) {
247 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
264 if e != nil {
267 if v != value {
270 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
283 if e := p.WriteDouble(context.Background(), value); e != nil {
286 if e := p.Flush(context.Background()); e != nil {
290 if math.IsInf(value, 1) {
291 if s != jsonQuote(JSON_INFINITY) {
294 } else if math.IsInf(value, -1) {
295 if s != jsonQuote(JSON_NEGATIVE_INFINITY) {
298 } else if math.IsNaN(value) {
299 if s != jsonQuote(JSON_NAN) {
303 if s != fmt.Sprint(value) {
307 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
326 if e != nil {
329 if math.IsInf(value, 1) {
330 if !math.IsInf(v, 1) {
333 } else if math.IsInf(value, -1) {
334 if !math.IsInf(v, -1) {
337 } else if math.IsNaN(value) {
338 if !math.IsNaN(v) {
342 if v != value {
345 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
359 if e := p.WriteString(context.Background(), value); e != nil {
362 if e := p.Flush(context.Background()); e != nil {
366 if s[0] != '"' || s[len(s)-1] != '"' {
370 if err := json.Unmarshal([]byte(s), v); err != nil || *v != value {
387 if e != nil {
390 if v != value {
394 if err := json.Unmarshal([]byte(s), v1); err != nil || *v1 != value {
410 if e := p.WriteBinary(context.Background(), value); e != nil {
413 if e := p.Flush(context.Background()); e != nil {
418 if s != expectedString {
422 if err != nil {
425 if len(v1) != len(value) {
429 if v1[k] != v {
448 if e != nil {
451 if len(v) != len(value) {
455 if v[i] != value[i] {
460 if err := json.Unmarshal([]byte(s), v1); err != nil || *v1 != b64String {
473 if e := p.WriteDouble(context.Background(), value); e != nil {
478 if e := p.Flush(context.Background()); e != nil {
484 if err != nil {
488 if len(l) < 2 {
491 if l[0] != "dbl" {
494 if int(l[1].(float64)) != len(DOUBLE_VALUES) {
499 if math.IsInf(value, 1) {
500 if s.(string) != JSON_INFINITY {
503 } else if math.IsInf(value, 0) {
504 if s.(string) != JSON_NEGATIVE_INFINITY {
507 } else if math.IsNaN(value) {
508 if s.(string) != JSON_NAN {
512 if s.(float64) != value {
527 if e := p.WriteDouble(context.Background(), value); e != nil {
532 if e := p.Flush(context.Background()); e != nil {
538 if err != nil {
542 if len(l) < 2 {
545 if l[0] != "dbl" {
548 if int(l[1].(float64)) != len(DOUBLE_VALUES) {
553 if math.IsInf(value, 1) {
554 if s.(string) != JSON_INFINITY {
557 } else if math.IsInf(value, 0) {
558 if s.(string) != JSON_NEGATIVE_INFINITY {
561 } else if math.IsNaN(value) {
562 if s.(string) != JSON_NAN {
566 if s.(float64) != value {
581 if e := p.WriteI32(context.Background(), int32(k)); e != nil {
584 if e := p.WriteDouble(context.Background(), value); e != nil {
589 if e := p.Flush(context.Background()); e != nil {
593 if str[0] != '[' || str[len(str)-1] != ']' {
597 if err != nil {
600 if expectedKeyType != I32 {
603 if expectedValueType != DOUBLE {
606 if expectedSize != len(DOUBLE_VALUES) {
611 if err != nil {
614 if int(ik) != k {
618 if err != nil {
622 if math.IsInf(value, 1) {
623 if !math.IsInf(dv, 1) {
626 } else if math.IsInf(value, 0) {
627 if !math.IsInf(dv, 0) {
630 } else if math.IsNaN(value) {
631 if !math.IsNaN(dv) {
636 if s != expected {
640 if err := json.Unmarshal([]byte(s), &v); err != nil || v != value {
646 if err != nil {