Lines Matching full:keyword
2 * keyword-gen.c -- generate keyword scanner finite state machine and
7 * the same time as keyword-gen.c:
9 * keyword-gen-utd
11 * keyword-gen-utd is a sentinel used by Makefile.am to avoid compiling
12 * keyword_gen.c and generating ntp_keyword.h if the input keyword-gen.c
30 /* Define a structure to hold a (keyword, token) pair */
32 char * key; /* Keyword */
268 u_short finishes_token; /* nonzero ID if last keyword char */
290 const char * progname = "keyword-gen";
331 " * NOTE: edit this file with caution, it is generated by keyword-gen.c\n"
364 * Sort ntp_keywords in alphabetical keyword order. This is
383 "keyword-gen sst[%u] too small "
384 "for keyword '%s' id %d\n",
414 "keyword-gen internal error "
423 "keyword-gen internal error "
432 "keyword-gen internal error "
444 "keyword-gen internal error "
451 * Determine the keyword prefix that leads to this
452 * state. This is expensive but keyword-gen is run
453 * only when it changes. Distributing keyword-gen-utd
455 * at the same time as keyword-gen.c and ntp_keyword.h.
462 * using the spelling of the keyword as its T_* token
515 * This function takes a suffix of a keyword, the token to be returned on
516 * recognizing the complete keyword, and any pre-existing state that exists
517 * for some other keyword that has the same prefix as the current one.
545 * Check if a previously seen keyword has the same prefix as
546 * the current keyword. If so, simply use the state for that
547 * keyword as my_state, otherwise, allocate a new state.
553 "Duplicate entries for keyword '%s' in"
565 "fatal, keyword scanner state array "
567 "keyword-gen.c to increase.\n",
571 /* Store the next character of the keyword */
622 /* Define a function that takes a list of (keyword, token) values and
752 "Edit keyword-gen.c to raise.\n",