2 writes to ch
System.Web.Extensions (2)
UI\WebControls\Dynamic.cs (2)
1810
ch
= textPos < textLen ? text[textPos] : '\0';
1815
ch
= textPos < textLen ? text[textPos] : '\0';
30 references to ch
System.Web.Extensions (30)
UI\WebControls\Dynamic.cs (30)
1819
while (Char.IsWhiteSpace(
ch
)) NextChar();
1822
switch (
ch
) {
1825
if (
ch
== '=') {
1839
if (
ch
== '&') {
1885
if (
ch
== '=') {
1889
else if (
ch
== '>') {
1899
if (
ch
== '=') {
1909
if (
ch
== '=') {
1931
if (
ch
== '|') {
1941
char quote =
ch
;
1944
while (textPos < textLen &&
ch
!= quote) NextChar();
1948
} while (
ch
== quote);
1952
if (IsIdentifierStart(
ch
) ||
ch
== '@' ||
ch
== '_') {
1955
} while (IsIdentifierPart(
ch
) ||
ch
== '_');
1959
if (Char.IsDigit(
ch
)) {
1963
} while (Char.IsDigit(
ch
));
1964
if (
ch
== '.') {
1970
} while (Char.IsDigit(
ch
));
1972
if (
ch
== 'E' ||
ch
== 'e') {
1975
if (
ch
== '+' ||
ch
== '-') NextChar();
1979
} while (Char.IsDigit(
ch
));
1981
if (
ch
== 'F' ||
ch
== 'f') NextChar();
1988
throw ParseError(textPos, AtlasWeb.ExpressionParser_InvalidCharacter,
ch
);
2036
if (!Char.IsDigit(
ch
)) throw ParseError(textPos, AtlasWeb.ExpressionParser_DigitExpected);