Lines Matching refs:KEY
50 * accompanied by lex KEY state.
54 * accompanied by lex KEY state.
71 char *key, *cont; /* keyword pieces */
75 SYM k; /* temporary sym pointer -- for key removal */
100 %Start KEY OUT CUTS
103 BEGIN KEY;
126 /* remove _RTS key, if it exists, before replacing it */
139 BEGIN KEY;
177 BEGIN KEY;
205 <KEY>[a-zA-Z_-]+=\"[^\"\n]+\" {
206 key = yytext;
214 printf("A quoted keyword: %s = %s\n", key, cont);
216 sym_put(keys, key, strdup(cont), 0);
222 <KEY>[a-zA-Z_-]+=[^\t \n]+ {
223 key = yytext;
228 printf("A keyword: %s = %s\n", key, cont);
230 sym_put(keys, key, strdup(cont), 0);
236 <KEY>[ \t\n]* {