Lines Matching full:if

73 	if l <= 0 {
81 if l <= 0 {
214 if e := p.OutputListBegin(); e != nil {
217 if e := p.WriteString(ctx, name); e != nil {
220 if e := p.WriteByte(ctx, int8(typeId)); e != nil {
223 if e := p.WriteI32(ctx, seqId); e != nil {
234 if e := p.OutputObjectBegin(); e != nil {
245 if e := p.WriteString(ctx, name); e != nil {
258 if e := p.OutputListBegin(); e != nil {
261 if e := p.WriteByte(ctx, int8(keyType)); e != nil {
264 if e := p.WriteByte(ctx, int8(valueType)); e != nil {
323 if e := p.OutputPreValue(); e != nil {
326 if _, e := p.write(JSON_QUOTE_BYTES); e != nil {
330 if _, e := writer.Write(v); e != nil {
334 if e := writer.Close(); e != nil {
337 if _, e := p.write(JSON_QUOTE_BYTES); e != nil {
350 if isNull, err := p.ParseListBegin(); isNull || err != nil {
353 if name, err = p.ReadString(ctx); err != nil {
358 if err != nil {
361 if seqId, err = p.ReadI32(ctx); err != nil {
381 if err := p.ParsePreValue(); err != nil {
385 if len(b) > 0 {
395 if err != nil {
411 if isNull, e := p.ParseListBegin(); isNull || e != nil {
418 if e != nil {
425 if e != nil {
431 if err != nil {
435 if err != nil {
465 if err := p.ParsePreValue(); err != nil {
469 if len(f) > 0 {
474 if err != nil {
477 if string(b) == string(JSON_TRUE) {
486 if err != nil {
489 if string(b) == string(JSON_FALSE) {
498 if err != nil {
501 if string(b) == string(JSON_NULL) {
542 if err := p.ParsePreValue(); err != nil {
546 if len(f) > 0 && f[0] == JSON_QUOTE {
550 if err != nil {
553 } else if len(f) > 0 && f[0] == JSON_NULL[0] {
556 if err != nil {
559 if string(b) != string(JSON_NULL) {
572 if err := p.ParsePreValue(); err != nil {
576 if len(f) > 0 && f[0] == JSON_QUOTE {
580 if err != nil {
583 } else if len(f) > 0 && f[0] == JSON_NULL[0] {
586 if err != nil {
589 if string(b) != string(JSON_NULL) {
604 if err != nil {
625 if !ok {
630 if _, e := p.write(JSON_COMMA); e != nil {
634 if _, e := p.write(JSON_COLON); e != nil {
643 if !ok {
664 if e := p.OutputPreValue(); e != nil {
668 if value {
674 if !ok {
681 if e := p.OutputStringData(v); e != nil {
688 if e := p.OutputPreValue(); e != nil {
691 if _, e := p.write(JSON_NULL); e != nil {
698 if e := p.OutputPreValue(); e != nil {
702 if math.IsNaN(value) {
704 } else if math.IsInf(value, 1) {
706 } else if math.IsInf(value, -1) {
710 if !ok {
719 if e := p.OutputStringData(v); e != nil {
726 if e := p.OutputPreValue(); e != nil {
730 if !ok {
738 if e := p.OutputStringData(v); e != nil {
745 if e := p.OutputPreValue(); e != nil {
748 if e := p.OutputStringData(jsonQuote(s)); e != nil {
760 if e := p.OutputPreValue(); e != nil {
763 if _, e := p.write(JSON_LBRACE); e != nil {
771 if _, e := p.write(JSON_RBRACE); e != nil {
775 if !ok {
778 if e := p.OutputPostValue(); e != nil {
785 if e := p.OutputPreValue(); e != nil {
788 if _, e := p.write(JSON_LBRACKET); e != nil {
796 if _, e := p.write(JSON_RBRACKET); e != nil {
800 if !ok {
803 if e := p.OutputPostValue(); e != nil {
810 if e := p.OutputListBegin(); e != nil {
813 if e := p.OutputI64(int64(elemType)); e != nil {
816 if e := p.OutputI64(int64(size)); e != nil {
823 if e := p.readNonSignificantWhitespace(); e != nil {
827 if !ok {
833 if len(b) > 0 {
839 if e := p.readNonSignificantWhitespace(); e != nil {
849 if len(b) > 0 {
855 if e := p.readNonSignificantWhitespace(); e != nil {
865 if len(b) > 0 {
869 if e := p.readNonSignificantWhitespace(); e != nil {
883 if e := p.readNonSignificantWhitespace(); e != nil {
887 if !ok {
907 if len(b) < 1 {
922 if err != nil {
926 // count number of escapes to see if we need to keep going
929 if line[l-i-1] != '\\' {
933 if i&0x01 == 1 {
935 if !ok {
941 if err != nil {
946 if !ok {
955 if err != nil {
959 // count number of escapes to see if we need to keep going
962 if line[l-i-1] != '\\' {
966 if i&0x01 == 1 {
970 if err != nil {
979 if err != nil {
984 if (l % 4) != 0 {
996 if err := p.ParsePreValue(); err != nil {
1001 if p.safePeekContains(JSON_NULL) {
1007 if !isnull {
1010 if err != nil {
1018 if err := p.ParsePreValue(); err != nil {
1023 if p.safePeekContains(JSON_NULL) {
1029 if !isnull {
1032 if err != nil {
1040 if err := p.ParsePreValue(); err != nil {
1045 if err != nil {
1048 if len(b) > 0 && b[0] == JSON_LBRACE[0] {
1052 } else if p.safePeekContains(JSON_NULL) {
1060 if isNull, err := p.readIfNull(); isNull || err != nil {
1064 if (cxt != _CONTEXT_IN_OBJECT_FIRST) && (cxt != _CONTEXT_IN_OBJECT_NEXT_KEY) {
1069 if err != nil {
1086 if e := p.ParsePreValue(); e != nil {
1091 if err != nil {
1094 if len(b) >= 1 && b[0] == JSON_LBRACKET[0] {
1098 } else if p.safePeekContains(JSON_NULL) {
1107 if isNull, e := p.ParseListBegin(); isNull || e != nil {
1112 if err != nil {
1116 if err != nil {
1120 if err != nil {
1128 if isNull, err := p.readIfNull(); isNull || err != nil {
1132 if cxt != _CONTEXT_IN_LIST {
1137 if err != nil {
1150 if cxt, ok := p.parseContextStack.peek(); !ok {
1152 } else if cxt == _CONTEXT_IN_TOPLEVEL {
1162 if len(b) < 1 {
1174 if p.safePeekContains(JSON_NULL) {
1183 if len(b) > 0 && b[0] == JSON_QUOTE {
1190 if isNull || err != nil {
1202 if err != nil {
1203 if err == io.EOF {
1213 if hasDecimalPoint {
1217 if hasE {
1224 if hasE {
1231 if !nextCanBeSign {
1241 if buf.Len() == 0 {
1245 if e != nil {
1248 if JSON_NAN != string(buffer) {
1252 if inQuotes {
1261 if buf.Len() == 0 || (buf.Len() == 1 && buf.Bytes()[0] == '+') {
1265 if e != nil {
1268 if JSON_INFINITY != string(buffer) {
1272 if inQuotes {
1276 } else if buf.Len() == 1 && buf.Bytes()[0] == JSON_NEGATIVE_INFINITY[0] {
1281 if e != nil {
1284 if JSON_NEGATIVE_INFINITY != string(buffer) {
1288 if inQuotes {
1297 if !inQuotes {
1305 if buf.Len() == 0 {
1316 if len(a) < (i+1) || a[i] != b[i] {
1331 if err != nil {