Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp535 #define KEYWORD(STR) \ in LexIdentifier() macro
541 KEYWORD(true); KEYWORD(false); in LexIdentifier()
542 KEYWORD(declare); KEYWORD(define); in LexIdentifier()
543 KEYWORD(global); KEYWORD(constant); in LexIdentifier()
545 KEYWORD(dso_local); in LexIdentifier()
546 KEYWORD(dso_preemptable); in LexIdentifier()
548 KEYWORD(private); in LexIdentifier()
549 KEYWORD(internal); in LexIdentifier()
550 KEYWORD(available_externally); in LexIdentifier()
551 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/include/clang/Lex/
H A DHLSLRootSignatureTokenKinds.def11 // file must optionally #define the TOK, KEYWORD, ENUM or specific ENUM macros
22 #ifndef KEYWORD
23 #define KEYWORD(X) TOK(kw_ ## X, #X)
91 KEYWORD(RootSignature) // used only for diagnostic messaging
92 KEYWORD(RootFlags)
93 KEYWORD(DescriptorTable)
94 KEYWORD(RootConstants)
95 KEYWORD(StaticSampler)
98 KEYWORD(num32BitConstants)
101 KEYWORD(CBV)
[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.cpp322 #define KEYWORD(NAME, FLAGS) \ in AddKeywords() macro
362 #define KEYWORD(NAME, FLAGS) \ in getTokenKwStatus() macro
875 #define KEYWORD(NAME, FLAGS) .Case(#NAME, FLAGS) in getFutureCompatDiagKind() macro
877 #undef KEYWORD in getFutureCompatDiagKind()
/freebsd/usr.bin/ident/
H A Dident.c51 KEYWORD, /* punctuation mark */ enumerator
99 state = KEYWORD; in scan()
110 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/contrib/llvm-project/clang/lib/Lex/
H A DLexHLSLRootSignature.cpp107 #define KEYWORD(NAME) Switch.CaseLower(#NAME, TokenKind::kw_##NAME); in lexToken() macro
H A DModuleMap.cpp390 #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true) in sanitizeFilenameAsIdentifier() macro
/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>
641 Any F<build.info> statement of the form B<I<KEYWORD>>=I<values>, with
646 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.cpp421 #define KEYWORD(NAME, FLAGS) RemoveCppKeyword(idents, llvm::StringRef(#NAME)); in RemoveAllCppKeywords() macro
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.h1697 #define KEYWORD(X, Y) case tok::kw_##X: macro