reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
188 bool isAscii() const { return Kind == tok::char_constant; } 189 bool isWide() const { return Kind == tok::wide_char_constant; } 190 bool isUTF8() const { return Kind == tok::utf8_char_constant; } 191 bool isUTF16() const { return Kind == tok::utf16_char_constant; } 192 bool isUTF32() const { return Kind == tok::utf32_char_constant; }tools/clang/lib/Lex/LiteralSupport.cpp
1222 Kind = kind; 1227 if (Kind != tok::char_constant) 1229 if (Kind == tok::utf8_char_constant) 1271 if (tok::wide_char_constant == Kind) { 1274 } else if (tok::utf8_char_constant == Kind) { 1276 } else if (tok::utf16_char_constant == Kind) { 1278 } else if (tok::utf32_char_constant == Kind) { 1341 unsigned CharWidth = getCharWidth(Kind, PP.getTargetInfo());