OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TOK
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/Basic/
TokenKinds.cpp
19
#define
TOK
(X) #X,
25
const char *
tok
::getTokenName(enum TokenKind Kind) {
26
assert(Kind <
tok
::NUM_TOKENS);
30
const char *
tok
::getTokenSimpleSpelling(enum TokenKind Kind) {
/external/clang/include/clang/Basic/
TokenKinds.h
20
namespace
tok
{
namespace in namespace:clang
24
#define
TOK
(X) X,
68
return (K ==
tok
::identifier) || (K ==
tok
::raw_identifier);
74
return K ==
tok
::string_literal || K ==
tok
::wide_string_literal ||
75
K ==
tok
::utf8_string_literal || K ==
tok
::utf16_string_literal ||
76
K ==
tok
::utf32_string_literal;
82
return K ==
tok
::numeric_constant || K == tok::char_constant |
[
all
...]
Completed in 166 milliseconds