Searched refs:TOK (Results 1 – 4 of 4) sorted by relevance
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Basic/ |
| D | TokenKinds.def | 12 // languages. Users of this file must optionally #define the TOK, KEYWORD, 17 #ifndef TOK 18 #define TOK(X) 21 #define PUNCTUATOR(X,Y) TOK(X) 24 #define KEYWORD(X,Y) TOK(kw_ ## X) 45 #define ANNOTATION(X) TOK(annot_ ## X) 102 TOK(unknown) // Not a token. 103 TOK(eof) // End of file. 104 TOK(eod) // End of preprocessing directive (end of line inside a 106 TOK(code_completion) // Code completion marker [all …]
|
| D | TokenKinds.h | 24 #define TOK(X) X, macro
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Basic/ |
| D | TokenKinds.cpp | 19 #define TOK(X) #X, macro
|
| D | IdentifierTable.cpp | 178 #define ALIAS(NAME, TOK, FLAGS) \ in AddKeywords() argument 179 AddKeyword(StringRef(NAME), tok::kw_ ## TOK, \ in AddKeywords()
|