HomeSort by relevance Sort by last modified time
    Searched refs:TOK (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/Basic/
TokenKinds.cpp 19 #define TOK(X) #X,
25 const char *tok::getTokenName(TokenKind Kind) {
26 if (Kind < tok::NUM_TOKENS)
32 const char *tok::getPunctuatorSpelling(TokenKind Kind) {
41 const char *tok::getKeywordSpelling(TokenKind Kind) {
IdentifierTable.cpp 33 TokenID = tok::identifier;
154 tok::TokenKind TokenCode, unsigned Flags,
171 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode);
179 tok::TokenKind TokenCode,
188 tok::ObjCKeywordKind ObjCID,
198 AddKeyword(StringRef(#NAME), tok::kw_ ## NAME, \
200 #define ALIAS(NAME, TOK, FLAGS) \
201 AddKeyword(StringRef(NAME), tok::kw_ ## TOK, \
205 AddCXXOperatorKeyword(StringRef(#NAME), tok::ALIAS, *this)
    [all...]
  /external/clang/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
74 return (K == tok::identifier) || (K == tok::raw_identifier);
80 return K == tok::string_literal || K == tok::wide_string_literal ||
81 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
82 K == tok::utf32_string_literal;
88 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]

Completed in 90 milliseconds