Lines Matching defs:keyword
36 * keyword look-up routine for the C symbol scanner
41 /* keyword text for fast testing of keywords in the scanner */
46 * This keyword table is also used for keyword text compression. Keywords
52 struct keystruct keyword[] = {
96 #define KEYWORDS (sizeof (keyword) / sizeof (struct keystruct))
111 p = &keyword[i];
118 /* see if this identifier is a keyword */
126 /* look up the identifier in the keyword table */
129 if (compress == YES && (c = p - keyword) < ' ') {
130 ident[0] = c; /* compress the keyword */