Home | History | Annotate | Download | only in Basic

Lines Matching refs:tok

22 namespace tok {
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 ||
89 K == tok::wide_char_constant || K == tok::utf8_char_constant ||
90 K == tok::utf16_char_constant || K == tok::utf32_char_constant ||
91 isStringLiteral(K) || K == tok::angle_string_literal;
94 /// \brief Return true if this is any of tok::annot_* kinds.
97 if (K == tok::annot_##NAME) \
103 } // end namespace tok