Lines Matching refs:ct
65 matrix : MATRIX { $$ = ct; } ;
77 lcol : LCOL { $$ = ct++; } ;
78 ccol : CCOL { $$ = ct++; } ;
79 rcol : RCOL { $$ = ct++; } ;
80 col : COL { $$ = ct++; } ;
95 | lpile '{' list '}' { lpile('L', $1, ct); ct = $1; }
96 | cpile '{' list '}' { lpile('C', $1, ct); ct = $1; }
97 | rpile '{' list '}' { lpile('R', $1, ct); ct = $1; }
98 | pile '{' list '}' { lpile('-', $1, ct); ct = $1; }
155 list : eqn { lp[ct++] = $1; }
156 | list ABOVE eqn { lp[ct++] = $3; }
159 lpile : LPILE { $$ = ct; } ;
160 cpile : CPILE { $$ = ct; } ;
161 pile : PILE { $$ = ct; } ;
162 rpile : RPILE { $$ = ct; } ;