Home | History | Annotate | Download | only in tests

Lines Matching refs:destructors

363 52;actions.at:527;Printers and Destructors : ;;
364 53;actions.at:528;Printers and Destructors with union: ;;
365 54;actions.at:533;Printers and Destructors : %defines %skeleton "lalr1.cc";c++;
366 55;actions.at:534;Printers and Destructors with union: %defines %skeleton "lalr1.cc";c++;
367 56;actions.at:536;Printers and Destructors : %glr-parser;;
368 57;actions.at:537;Printers and Destructors with union: %glr-parser;;
461 150;glr-regression.at:740;No users destructors if stack 0 deleted;;
463 152;glr-regression.at:881;Undesirable destructors if user action cuts parse;;
6846 52 ) # 52. actions.at:527: Printers and Destructors :
6848 at_desc='Printers and Destructors : '
6849 $at_quiet $ECHO_N " 52: Printers and Destructors : $ECHO_C"
7358 53 ) # 53. actions.at:528: Printers and Destructors with union:
7360 at_desc='Printers and Destructors with union: '
7361 $at_quiet $ECHO_N " 53: Printers and Destructors with union: $ECHO_C"
7873 54 ) # 54. actions.at:533: Printers and Destructors : %defines %skeleton "lalr1.cc"
7875 at_desc='Printers and Destructors : %defines %skeleton "lalr1.cc"'
7876 $at_quiet $ECHO_N " 54: Printers and Destructors : %defines %skeleton "lalr1.cc"$ECHO_C"
8354 55 ) # 55. actions.at:534: Printers and Destructors with union: %defines %skeleton "lalr1.cc"
8356 at_desc='Printers and Destructors with union: %defines %skeleton "lalr1.cc"'
8357 $at_quiet $ECHO_N " 55: Printers and Destructors with union: %defines %skeleton "lalr1.cc"$ECHO_C"
8838 56 ) # 56. actions.at:536: Printers and Destructors : %glr-parser
8840 at_desc='Printers and Destructors : %glr-parser'
8841 $at_quiet $ECHO_N " 56: Printers and Destructors : %glr-parser $ECHO_C"
9281 57 ) # 57. actions.at:537: Printers and Destructors with union: %glr-parser
9283 at_desc='Printers and Destructors with union: %glr-parser'
9284 $at_quiet $ECHO_N " 57: Printers and Destructors with union: %glr-parser$ECHO_C"
65517 150 ) # 150. glr-regression.at:740: No users destructors if stack 0 deleted
65519 at_desc='No users destructors if stack 0 deleted'
65520 $at_quiet $ECHO_N "150: No users destructors if stack 0 deleted $ECHO_C"
65546 static int destructors = 0;
65555 destructors += 1;
65561 ambig0 'a' { destructors += 2; USE ($2); }
65562 | ambig1 start { destructors += 1; }
65563 | ambig2 start { destructors += 1; }
65590 if (tokens != destructors)
65592 fprintf (stderr, "Tokens = %d, Destructors = %d\n", tokens, destructors);
65837 152 ) # 152. glr-regression.at:881: Undesirable destructors if user action cuts parse
65839 at_desc='Undesirable destructors if user action cuts parse'
65840 $at_quiet $ECHO_N "152: Undesirable destructors if user action cuts parse$ECHO_C"
65863 static int destructors = 0;
65870 %destructor { destructors += 1; } 'a'
65875 'a' %dprec 2 { USE ($1); destructors += 1; YYACCEPT; }
65876 | 'a' %dprec 1 { USE ($1); destructors += 1; YYACCEPT; }
65898 if (destructors != 1)
65900 fprintf (stderr, "Destructor calls: %d\n", destructors);