Home | History | Annotate | Download | only in src

Lines Matching defs:Keyword

92         char*            Keyword;       // Name of variable
196 // A keyword
202 } KEYWORD;
204 // The keyword->symbol translation table. Sorting is required.
205 static const KEYWORD TabKeys[] = {
215 {"KEYWORD", SKEYWORD}
218 #define NUMKEYS (sizeof(TabKeys)/sizeof(KEYWORD))
283 // name-value pair following the WEIGHTING_FUNCTION tag/keyword. The first attribute
287 // the weighting function keyword. A semi-colon separates attribute pairs from each
510 // Try to see if current identifier is a keyword, if so return the referred symbol
1132 if (cmsstrcasecmp(Key, p->Keyword) == 0)
1187 p->Keyword = AllocString(it8, Key);
1625 if (*p ->Keyword == '#') {
1645 if (!IsAvailableOnList(it8-> ValidKeywords, p->Keyword, NULL, NULL)) {
1648 WriteStr(fp, "KEYWORD\t\"");
1649 WriteStr(fp, p->Keyword);
1653 AddAvailableProperty(it8, p->Keyword, WRITE_UNCOOKED);
1656 WriteStr(fp, p->Keyword);
1935 if (!GetVal(it8, Buffer, MAXSTR-1, "Keyword expected")) return FALSE;
1943 if (!GetVal(it8, Buffer, MAXSTR-1, "Keyword expected")) return FALSE;
1956 return SynError(it8, "Undefined keyword '%s'", VarName);
2016 return SynError(it8, "expected keyword or identifier");
2423 Props[n++] = p -> Keyword;