Lines Matching full:print
30 print msg;
94 print "/* Generated file. Do not edit. */";
95 print "";
99 print "static teken_state_t " l_prefix_name[p] ";";
103 print "";
104 print "/* '" p "' */";
105 print "static void";
106 print l_prefix_name[p] "(teken_t *t, teken_char_t c)";
107 print "{";
110 print "";
111 print "\tif (teken_state_numbers(t, c))";
112 print "\t\treturn;";
115 print "";
116 print "\tswitch (c) {";
121 print "\tcase '" cchar(l_cmd_suffix[c]) "': /* " l_cmd_abbr[c] ": " l_cmd_name[c] " */";
124 print "\t\t" l_cmd_c_name[c] "(t, t->t_curnum, t->t_nums);";
136 print ");";
138 print "\t\tbreak;";
143 print "\tcase '" cchar(l_prefix_suffix[pc]) "':";
144 print "\t\tteken_state_switch(t, " l_prefix_name[pc] ");";
145 print "\t\treturn;";
148 print "\tdefault:";
150 print "\t\tteken_subr_regular_character(t, c);";
152 …print "\t\tteken_printf(\"Unsupported sequence in " l_prefix_name[p] ": %u\\n\", (unsigned int)c);…
154 print "\t\tbreak;";
156 print "\t}";
159 print "";
160 print "\tt->t_last = 0;";
161 print "\tteken_state_switch(t, teken_state_init);";
163 print "}";