HomeSort by: relevance | last modified time | path
    Searched defs:TOK (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
TokenKinds.cpp 18 #define TOK(X) #X,
24 const char *tok::getTokenName(TokenKind Kind) {
25 if (Kind < tok::NUM_TOKENS)
31 const char *tok::getPunctuatorSpelling(TokenKind Kind) {
40 const char *tok::getKeywordSpelling(TokenKind Kind) {
49 bool tok::isAnnotation(TokenKind Kind) {
59 bool tok::isPragmaAnnotation(TokenKind Kind) {
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TokenKinds.h 22 namespace tok { namespace in namespace:clang
26 #define TOK(X) X,
73 return (K == tok::identifier) || (K == tok::raw_identifier);
79 return K == tok::string_literal || K == tok::wide_string_literal ||
80 K == tok::utf8_string_literal || K == tok::utf16_string_literal ||
81 K == tok::utf32_string_literal;
87 return K == tok::numeric_constant || K == tok::char_constant |
    [all...]
  /src/external/bsd/tcpdump/dist/
print-dsa.c 69 #define TOK(tag, byte, mask, shift) ((GET_U_1(&(((const u_char *) tag)[byte])) & (mask)) >> (shift))
72 #define DSA_MODE(tag) TOK(tag, 0, 0xc0, 6)
77 #define DSA_TAGGED(tag) TOK(tag, 0, 0x20, 5)
78 #define DSA_DEV(tag) TOK(tag, 0, 0x1f, 0)
79 #define DSA_PORT(tag) TOK(tag, 1, 0xf8, 3)
80 #define DSA_TRUNK(tag) TOK(tag, 1, 0x04, 2)
81 #define DSA_RX_SNIFF(tag) TOK(tag, 1, 0x04, 2)
82 #define DSA_CFI(tag) TOK(tag, 1, 0x01, 0)
83 #define DSA_PRI(tag) TOK(tag, 2, 0xe0, 5)
84 #define DSA_VID(tag) ((u_short)((TOK(tag, 2, 0x0f, 0) << 8) | (TOK(tag, 3, 0xff, 0)))
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
tokens.h 35 enum class TOK : unsigned char
455 TOK value;
482 static const char *toChars(TOK value);

Completed in 21 milliseconds