Home | History | Annotate | Download | only in edify

Lines Matching refs:gPos

26 int gPos = 0;
32 #define ADVANCE do {yylloc.start=gPos; yylloc.end=gPos+yyleng; \
33 gColumn+=yyleng; gPos+=yyleng;} while(0)
47 yylloc.start = gPos;
49 ++gPos;
55 ++gPos;
59 yylloc.end = gPos;
63 \\n { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\n'; }
64 \\t { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\t'; }
65 \\\" { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\"'; }
66 \\\\ { gColumn += yyleng; gPos += yyleng; *string_pos++ = '\\'; }
70 gPos += yyleng;
78 ++gPos;
85 ++gPos;
110 (#.*)?\n gPos += yyleng; ++gLine; gColumn = 1;