Home
last modified time | relevance | path

Searched refs:TOK (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/test/Index/
H A DIBOutletCollection.m11 // RUN: c-index-test -test-annotate-tokens=%s:4:1:5:1 %s | FileCheck -check-prefix=CHECK-TOK %s
12 // CHECK-TOK: Identifier: "IBOutletCollection" [4:3 - 4:21] macro expansion=IBOutletCollection:1:9
14 // CHECK-TOK: Punctuation: "(" [4:21 - 4:22] attribute(iboutletcollection)= [IBOutletCollection=Obj…
15 // CHECK-TOK: Identifier: "Test" [4:22 - 4:26] ObjCClassRef=Test:3:12
17 // CHECK-TOK: Punctuation: ")" [4:26 - 4:27]
18 // CHECK-TOK: Identifier: "Test" [4:28 - 4:32] ObjCClassRef=Test:3:12
19 // CHECK-TOK: Punctuation: "*" [4:33 - 4:34] ObjCIvarDecl=anOutletCollection:4:34 (Definition)
20 // CHECK-TOK: Identifier: "anOutletCollection" [4:34 - 4:52] ObjCIvarDecl=anOutletCollection:4:34 (…
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTokenKinds.def17 #ifndef TOK
18 #define TOK(X)
21 #define PUNCTUATOR(X,Y) TOK(X)
24 #define KEYWORD(X,Y) TOK(kw_ ## X)
158 TOK(numeric_constant) // 0x123
161 TOK(char_constant) // 'a'
162 TOK(wide_char_constant) // L'b'
165 TOK(utf8_char_constant) // u8'a'
168 TOK(utf16_char_constant) // u'a'
169 TOK(utf32_char_constant) // U'a'
[all …]
H A DTokenKinds.h26 #define TOK(X) X, macro
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Ddebug-info-block-line.m44 TOK = 100, enum
80 [connection sendResponseCode:TOK dataFollows:YES
/llvm-project-15.0.7/clang/lib/Basic/
H A DTokenKinds.cpp18 #define TOK(X) #X, macro
H A DIdentifierTable.cpp218 #define ALIAS(NAME, TOK, FLAGS) \ in AddKeywords() argument
219 AddKeyword(StringRef(NAME), tok::kw_ ## TOK, \ in AddKeywords()
/llvm-project-15.0.7/clang-tools-extra/pseudo/lib/grammar/
H A DGrammar.cpp50 #define TOK(X) #X, in mangleSymbol() macro
202 #define TOK(Tok) TerminalNames[tok::Tok] = llvm::StringRef(#Tok).upper(); in getTerminalNames() macro