Lines Matching refs:ival
385 int ival;
394 ]m4_ifval([$6], [%type <ival> '(' 'x' 'y' ')' ';' thing line input END])[
509 int c = ]AT_VAL[]m4_ifval([$6], [.ival])[ = counter++;
1440 int ival;
1449 report (std::ostream& yyo, int ival, float fval)
1451 yyo << "ival: " << ival << ", fval: " << fval;
1456 report (FILE* yyo, int ival, float fval)
1458 fprintf (yyo, "ival: %d, fval: %1.1f", ival, fval);
1470 %token <ival> INT
1472 %printer { report (yyo, $$, $<fval>$); } <ival>;
1473 %printer { report (yyo, $<ival>$, $$ ); } <fval>;
1474 %printer { report (yyo, $<ival>$, $<fval>$); } <>;
1478 $<ival>$ = 42;
1486 $<ival>$ = $<ival>1 + $][2;
1494 [AT_VAL.ival = toknum * 10; AT_VAL.fval = toknum / 10.0;])[
1513 AT_CHECK([[sed -ne 's/([-0-9.]*: /(/;/ival:/p' stderr]], 0,
1514 [[Reading a token: Next token is token UNTYPED (ival: 10, fval: 0.1)
1515 Shifting token UNTYPED (ival: 10, fval: 0.1)
1516 Reading a token: Next token is token INT (ival: 20, fval: 0.2)
1517 Shifting token INT (ival: 20, fval: 0.2)
1518 $][1 = token UNTYPED (ival: 10, fval: 0.1)
1519 $][2 = token INT (ival: 20, fval: 0.2)
1520 -> $$ = nterm float (ival: 30, fval: 0.3)
1521 Cleanup: popping nterm float (ival: 30, fval: 0.3)