2 writes to textPos
System.Web.Extensions (2)
UI\WebControls\Dynamic.cs (2)
1809
textPos
= pos;
1814
if (textPos < textLen)
textPos
++;
13 references to textPos
System.Web.Extensions (13)
UI\WebControls\Dynamic.cs (13)
1810
ch =
textPos
< textLen ? text[
textPos
] : '\0';
1814
if (
textPos
< textLen) textPos++;
1815
ch =
textPos
< textLen ? text[
textPos
] : '\0';
1821
int tokenPos =
textPos
;
1944
while (
textPos
< textLen && ch != quote) NextChar();
1945
if (
textPos
== textLen)
1946
throw ParseError(
textPos
, AtlasWeb.ExpressionParser_UnterminatedStringLiteral);
1984
if (
textPos
== textLen) {
1988
throw ParseError(
textPos
, AtlasWeb.ExpressionParser_InvalidCharacter, ch);
1991
token.text = text.Substring(tokenPos,
textPos
- tokenPos);
2036
if (!Char.IsDigit(ch)) throw ParseError(
textPos
, AtlasWeb.ExpressionParser_DigitExpected);