Home
last modified time | relevance | path

Searched refs:KEYWORD (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp496 #define KEYWORD(STR) \ in LexIdentifier() macro
502 KEYWORD(true); KEYWORD(false); in LexIdentifier()
503 KEYWORD(declare); KEYWORD(define); in LexIdentifier()
504 KEYWORD(global); KEYWORD(constant); in LexIdentifier()
506 KEYWORD(dso_local); in LexIdentifier()
507 KEYWORD(dso_preemptable); in LexIdentifier()
509 KEYWORD(private); in LexIdentifier()
510 KEYWORD(internal); in LexIdentifier()
511 KEYWORD(available_externally); in LexIdentifier()
512 KEYWORD(linkonce); in LexIdentifier()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTokenKinds.def11 // languages. Users of this file must optionally #define the TOK, KEYWORD,
22 #ifndef KEYWORD
23 #define KEYWORD(X,Y) TOK(kw_ ## X)
26 #define CXX11_KEYWORD(X,Y) KEYWORD(X,KEYCXX11|(Y))
29 #define CXX20_KEYWORD(X,Y) KEYWORD(X,KEYCXX20|(Y))
32 #define C99_KEYWORD(X,Y) KEYWORD(X,KEYC99|(Y))
35 #define C23_KEYWORD(X,Y) KEYWORD(X,KEYC23|(Y))
41 #define MODULES_KEYWORD(X) KEYWORD(X,KEYMODULES)
44 #define TYPE_TRAIT(N,I,K) KEYWORD(I,K)
56 #define ARRAY_TYPE_TRAIT(I,E,K) KEYWORD(I,K)
[all …]
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DTokenKinds.cpp19 #define KEYWORD(X,Y) #X, macro
42 #define KEYWORD(X,Y) case kw_ ## X: return #X; in getKeywordSpelling() macro
H A DIdentifierTable.cpp297 #define KEYWORD(NAME, FLAGS) \ in AddKeywords() macro
335 #define KEYWORD(NAME, FLAGS) \ in getTokenKwStatus() macro
845 #define KEYWORD(NAME, FLAGS) .Case(#NAME, FLAGS) in getFutureCompatDiagKind() macro
847 #undef KEYWORD in getFutureCompatDiagKind()
/freebsd/usr.bin/ident/
H A Dident.c46 KEYWORD, /* punctuation mark */ enumerator
93 state = KEYWORD; in scan()
104 case KEYWORD: in scan()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp380 KEYWORD("const") \ in DoExecute()
381 KEYWORD("volatile") \ in DoExecute()
382 KEYWORD("restrict") \ in DoExecute()
383 KEYWORD("struct") \ in DoExecute()
384 KEYWORD("class") \ in DoExecute()
385 KEYWORD("union") in DoExecute()
387 #define KEYWORD(s) s, in DoExecute() macro
389 #undef KEYWORD in DoExecute()
391 #define KEYWORD(s) (sizeof(s) - 1), in DoExecute() macro
393 #undef KEYWORD in DoExecute()
/freebsd/crypto/openssl/doc/internal/man7/
H A Dbuild.info.pod123 =item B<I<KEYWORD>> B<=> I<value> ...
125 =item B<I<KEYWORD>[>I<items>B<]> B<=> I<value> ...
129 Every B<I<KEYWORD>> represents some particular type of information.
175 =item B<I<KEYWORD>{> I<attrib> | I<attrib>B<=>I<attrib-value> [,...]B<}>
178 =item B<I<KEYWORD>[>I<items>B<]{> I<attrib> | I<attrib>B<=>I<attrib-value>
608 Any F<build.info> statement of the form B<I<KEYWORD>>=I<values>, with
613 Any F<build.info> statement of the form B<I<KEYWORD>[>I<items>B<]=>I<values>,
/freebsd/usr.bin/m4/TEST/
H A Dhash.m444 define(KEYWORD,<$1,hash($1),>) dnl macro
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.cpp30 #define KEYWORD(X, N) keywords.insert(#X); in ClangHighlighter() macro
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp760 #define KEYWORD(Name, Flags) {llvm::StringRef(#Name), tok::kw_##Name}, in GetKeywordsMap() macro
762 #undef KEYWORD in GetKeywordsMap()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp335 #define KEYWORD(NAME, FLAGS) RemoveCppKeyword(idents, llvm::StringRef(#NAME)); in RemoveAllCppKeywords() macro
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.h1718 #define KEYWORD(X, Y) case tok::kw_##X: macro
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp402 #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true) in sanitizeFilenameAsIdentifier() macro