3 writes to c
Microsoft.TestPlatform.CommunicationUtilities (3)
Json\Jsonite\Jsonite.cs (3)
385
c
= Eof;
929
c
= Eof;
944
c
= (char)nextChar;
64 references to c
Microsoft.TestPlatform.CommunicationUtilities (64)
Json\Jsonite\Jsonite.cs (64)
396
switch (
c
)
411
if (
c
== '-' || IsDigit(
c
))
416
if (
c
!= Eof)
459
while (
c
!= Eof)
461
if (
c
== '"')
466
if (
c
!= ':')
485
if (
c
== ',')
493
if (
c
== '}')
501
if (
c
== Eof)
528
while (
c
!= Eof)
530
if (
c
== ']')
541
if (
c
== ']')
546
if (
c
== ',')
557
if (
c
== Eof)
580
switch (
c
)
584
switch (
c
)
621
if (IsHex(
c
)) // 1
623
var value = HexToInt(
c
);
625
if (IsHex(
c
)) // 2
627
value = (value << 4) | HexToInt(
c
);
629
if (IsHex(
c
)) // 3
631
value = (value << 4) | HexToInt(
c
);
633
if (IsHex(
c
)) // 4
635
value = (value << 4) | HexToInt(
c
);
655
if (
c
< ' ')
659
builder.Append(
c
);
676
if (
c
== '-')
679
builder.Append(
c
);
683
if (!IsDigit(
c
))
689
if (
c
== '0')
691
builder.Append(
c
);
695
if (IsDigit(
c
))
705
builder.Append(
c
);
707
} while (IsDigit(
c
));
710
if (
c
== '.')
716
if (!IsDigit(
c
))
723
builder.Append(
c
);
725
} while (IsDigit(
c
));
728
if (
c
== 'e' ||
c
== 'E')
732
builder.Append(
c
);
734
if (
c
== '+' ||
c
== '-')
736
builder.Append(
c
);
740
if (!IsDigit(
c
))
747
builder.Append(
c
);
749
} while (IsDigit(
c
));
753
while (IsWhiteSpace(
c
))
838
if (
c
== 'r')
841
if (
c
== 'u')
844
if (
c
== 'e')
858
if (
c
== 'a')
861
if (
c
== 'l')
864
if (
c
== 's')
867
if (
c
== 'e')
882
if (
c
== 'u')
885
if (
c
== 'l')
888
if (
c
== 'l')
906
RaiseException((isEof ? "Unexpected EOF " : $"Unexpected character '{EscapeChar(
c
)}' ") + message);
914
} while (IsWhiteSpace(
c
));
923
if (
c
!= Eof)
933
if (
c
== '\n')
939
else if (
c
!= Eof)