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