/openbsd-src/gnu/llvm/clang/lib/ExtractAPI/ |
H A D | DeclarationFragments.cpp | 44 case DeclarationFragments::FragmentKind::Keyword: in getFragmentKindString() 72 .Case("keyword", DeclarationFragments::FragmentKind::Keyword) in parseFragmentKindFromString() 132 Fragments.append("__super", DeclarationFragments::FragmentKind::Keyword); in getFragmentsForNNS() 137 Fragments.append("template", DeclarationFragments::FragmentKind::Keyword); in getFragmentsForNNS() 203 Fragments.append("static", DeclarationFragments::FragmentKind::Keyword); in getFragmentsForType() 230 ElaboratedTypeKeyword Keyword = ET->getKeyword(); in getFragmentsForType() local 231 if (Keyword != ETK_None) { in getFragmentsForType() 233 .append(ElaboratedType::getKeywordName(Keyword), in getFragmentsForType() 234 DeclarationFragments::FragmentKind::Keyword) in getFragmentsForType() 253 DeclarationFragments::FragmentKind::Keyword); in getFragmentsForType() [all …]
|
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
H A D | PrettyTypedefDumper.cpp | 32 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in start() 51 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; in dump() 57 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump() 59 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump() 73 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict"; in dump() 82 WithColor(Printer, PDB_ColorItem::Keyword).get() << "class "; in dump()
|
H A D | PrettyFunctionDumper.cpp | 77 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start() 87 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in start() 114 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in start() 116 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in start() 152 WithColor(Printer, PDB_ColorItem::Keyword).get() << "virtual "; in start() 175 WithColor(Printer, PDB_ColorItem::Keyword).get() in start() 203 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in start() 205 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in start() 257 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in dump() 259 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in dump() [all …]
|
H A D | PrettyVariableDumper.cpp | 56 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static "; in start() 170 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const"; in dumpRight() 172 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile"; in dumpRight() 175 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict"; in dumpRight() 187 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " "; in dump() 193 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const "; in dump() 195 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile "; in dump() 198 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict "; in dump() 214 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef "; in dump()
|
H A D | PrettyEnumDumper.cpp | 28 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in start() 30 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in start() 32 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned "; in start() 33 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; in start() 38 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum "; in start()
|
H A D | PrettyClassDefinitionDumper.cpp | 55 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in prettyPrintClassIntro() 57 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in prettyPrintClassIntro() 59 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned "; in prettyPrintClassIntro() 61 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " "; in prettyPrintClassIntro() 76 WithColor(Printer, PDB_ColorItem::Keyword).get() << Base.getAccess(); in prettyPrintClassIntro() 78 WithColor(Printer, PDB_ColorItem::Keyword).get() << " virtual"; in prettyPrintClassIntro()
|
H A D | PrettyBuiltinDumper.cpp | 22 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in start() 24 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in start()
|
H A D | PrettyTypeDumper.cpp | 185 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const "; in printClassDecl() 187 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "; in printClassDecl() 189 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned "; in printClassDecl() 191 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " "; in printClassDecl() 354 WithColor(Printer, PDB_ColorItem::Keyword).get() in dumpClassLayout()
|
/openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 492 StringRef Keyword(StartChar, CurPtr - StartChar); in LexIdentifier() local 496 if (Keyword == #STR) \ in LexIdentifier() 791 if (Keyword == STR) { \ in LexIdentifier() 811 if (Keyword == "ptr") { in LexIdentifier() 825 if (Keyword == #STR) { \ in LexIdentifier() 894 if (Keyword.startswith("DW_" #TYPE "_")) { \ in LexIdentifier() 895 StrVal.assign(Keyword.begin(), Keyword.end()); \ in LexIdentifier() 910 if (Keyword.startswith("DIFlag")) { in LexIdentifier() 911 StrVal.assign(Keyword.begin(), Keyword.end()); in LexIdentifier() 915 if (Keyword.startswith("DISPFlag")) { in LexIdentifier() [all …]
|
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/ |
H A D | COFFMasmParser.cpp | 283 StringRef Keyword; in ParseDirectiveSegment() local 284 if (getParser().parseIdentifier(Keyword)) { in ParseDirectiveSegment() 287 if (Keyword.equals_insensitive("byte")) { in ParseDirectiveSegment() 289 } else if (Keyword.equals_insensitive("word")) { in ParseDirectiveSegment() 291 } else if (Keyword.equals_insensitive("dword")) { in ParseDirectiveSegment() 293 } else if (Keyword.equals_insensitive("para")) { in ParseDirectiveSegment() 295 } else if (Keyword.equals_insensitive("page")) { in ParseDirectiveSegment() 297 } else if (Keyword.equals_insensitive("align")) { in ParseDirectiveSegment() 309 } else if (Keyword.equals_insensitive("alias")) { in ParseDirectiveSegment() 321 } else if (Keyword.equals_insensitive("readonly")) { in ParseDirectiveSegment() [all …]
|
/openbsd-src/gnu/usr.bin/cvs/doc/ |
H A D | cvs.info-9 | 98 * Author keyword: Keyword list. 225 * Date keyword: Keyword list. 306 * Header keyword: Keyword list. 315 * Id keyword: Keyword list. 318 * Identifying files: Keyword substitution. 339 * Keyword expansion: Keyword substitution. 340 * Keyword List: Keyword list. 341 * Keyword substitution: Keyword substitution. 342 * Keyword substitution, and merging: Merging and keywords. 343 * Keyword substitution, changing modes: Substitution modes. [all …]
|
H A D | cvs.aux | 289 'xrdef {Keyword substitution-title}{Keyword substitution} 290 'xrdef {Keyword substitution-pg}{75} 291 'xrdef {Keyword substitution-snt}{Chapter'tie12} 292 'xrdef {Keyword list-title}{Keyword List} 293 'xrdef {Keyword list-pg}{75} 294 'xrdef {Keyword list-snt}{Section'tie12.1}
|
/openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
H A D | Attr.td | 309 class Keyword<string name> : Spelling<name, "Keyword">; 705 let Spellings = [GCC<"aligned">, Declspec<"align">, Keyword<"alignas">, 706 Keyword<"_Alignas">]; 709 Accessor<"isC11", [Keyword<"_Alignas">]>, 710 Accessor<"isAlignas", [Keyword<"alignas">, 711 Keyword<"_Alignas">]>, 752 C2x<"clang", "always_inline">, Keyword<"__forceinline">]; 874 let Spellings = [Keyword<"asm">, Keyword<"__asm__">]; 989 let Spellings = [GCC<"cdecl">, Keyword<"__cdecl">, Keyword<"_cdecl">]; 1114 let Spellings = [Keyword<"constinit">, [all …]
|
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/Syntax/ |
H A D | Nodes.td | 118 Role<"LiteralToken", Keyword<"nullptr">>, 136 Role<"LiteralToken", Keyword<"numeric_constant">>, 144 Role<"LiteralToken", Keyword<"numeric_constant">>, 175 Role<"TemplateKeyword", Optional<Keyword<"template">>>, 193 Role<"TemplateKeyword", Optional<Keyword<"template">>>, 202 Role<"IntroducerKeyword", Keyword<"this">>,
|
/openbsd-src/usr.bin/awk/ |
H A D | lex.c | 41 typedef struct Keyword { struct 45 } Keyword; typedef 47 const Keyword keywords[] = { /* keep sorted: binary searched */ 499 static int binsearch(char *w, const Keyword *kp, int n) in binsearch() 519 const Keyword *kp; in word()
|
/openbsd-src/gnu/llvm/clang/lib/AST/ |
H A D | QualTypeNames.cpp | 443 ElaboratedTypeKeyword Keyword = ETK_None; in getFullyQualifiedType() local 447 Keyword = ETypeInput->getKeyword(); in getFullyQualifiedType() 474 if (Prefix || Keyword != ETK_None) { in getFullyQualifiedType() 475 QT = Ctx.getElaboratedType(Keyword, Prefix, QT); in getFullyQualifiedType()
|
H A D | Type.cpp | 2883 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { in getTagTypeKindForKeyword() argument 2884 switch (Keyword) { in getTagTypeKindForKeyword() 2898 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { in KeywordIsTagTypeKind() argument 2899 switch (Keyword) { in KeywordIsTagTypeKind() 2913 StringRef TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { in getKeywordName() argument 2914 switch (Keyword) { in getKeywordName() 2928 ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, in DependentTemplateSpecializationType() argument 2930 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, in DependentTemplateSpecializationType() 2950 ElaboratedTypeKeyword Keyword, in Profile() argument 2954 ID.AddInteger(Keyword); in Profile() [all …]
|
/openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
H A D | CodeCompleteConsumer.h | 775 const char *Keyword; member 890 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword) 891 : Keyword(Keyword), Priority(Priority), Kind(RK_Keyword), in Keyword() function 941 return Keyword; in getKeyword()
|
/openbsd-src/gnu/llvm/clang/lib/Sema/ |
H A D | SemaCoroutine.cpp | 184 StringRef Keyword) { in isValidCoroutineContext() argument 195 : diag::err_coroutine_outside_function) << Keyword; in isValidCoroutineContext() 212 S.Diag(Loc, diag::err_coroutine_invalid_func_context) << ID << Keyword; in isValidCoroutineContext() 586 StringRef Keyword, in checkCoroutineContext() argument 588 if (!isValidCoroutineContext(S, Loc, Keyword)) in checkCoroutineContext() 597 ScopeInfo->setFirstCoroutineStmt(Loc, Keyword); in checkCoroutineContext() 691 StringRef Keyword) { in ActOnCoroutineBodyStart() argument 692 if (!checkCoroutineContext(*this, KWLoc, Keyword)) in ActOnCoroutineBodyStart() 722 Diag(KWLoc, diag::note_declared_coroutine_here) << Keyword; in ActOnCoroutineBodyStart() 772 StringRef Keyword) { in checkSuspensionContext() argument [all …]
|
/openbsd-src/gnu/llvm/clang/lib/Basic/ |
H A D | IdentifierTable.cpp | 251 static void AddKeyword(StringRef Keyword, in AddKeyword() argument 260 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode); in AddKeyword() 267 static void AddCXXOperatorKeyword(StringRef Keyword, in AddCXXOperatorKeyword() argument 270 IdentifierInfo &Info = Table.get(Keyword, TokenCode); in AddCXXOperatorKeyword()
|
/openbsd-src/gnu/gcc/gcc/doc/ |
H A D | gcc.texi | 149 * Keyword Index:: Index of concepts and symbol names. 192 @node Keyword Index 193 @unnumbered Keyword Index
|
/openbsd-src/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/lib/ |
H A D | perlxs.pod | 246 (See L<The INPUT: Keyword>.) 364 =head2 The MODULE Keyword 380 =head2 The PACKAGE Keyword 406 =head2 The PREFIX Keyword 421 =head2 The OUTPUT: Keyword 472 =head2 The NO_OUTPUT Keyword 497 =head2 The CODE: Keyword 521 =head2 The INIT: Keyword 549 =head2 The NO_INIT Keyword 571 =head2 The TYPEMAP: Keyword [all...] |
/openbsd-src/gnu/usr.bin/gcc/gcc/doc/ |
H A D | gcc.texi | 166 * Keyword Index:: Index of concepts and symbol names. 208 @node Keyword Index 209 @unnumbered Keyword Index
|
/openbsd-src/gnu/llvm/clang/lib/Parse/ |
H A D | ParseDecl.cpp | 1162 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); in ParseAvailabilityAttribute() local 1165 if (Keyword == Ident_strict) { in ParseAvailabilityAttribute() 1168 << Keyword << SourceRange(StrictLoc); in ParseAvailabilityAttribute() 1174 if (Keyword == Ident_unavailable) { in ParseAvailabilityAttribute() 1177 << Keyword << SourceRange(UnavailableLoc); in ParseAvailabilityAttribute() 1183 if (Keyword == Ident_deprecated && Platform->Ident && in ParseAvailabilityAttribute() 1188 << Keyword in ParseAvailabilityAttribute() 1199 Diag(Tok, diag::err_expected_after) << Keyword << tok::equal; in ParseAvailabilityAttribute() 1204 if (Keyword == Ident_message || Keyword == Ident_replacement) { in ParseAvailabilityAttribute() 1211 if (Keyword == Ident_message) in ParseAvailabilityAttribute() [all …]
|
/openbsd-src/gnu/llvm/clang/include/clang/AST/ |
H A D | Type.h | 1747 unsigned Keyword : 8; 1791 unsigned Keyword : 2; 5256 AutoType(QualType DeducedAsType, AutoTypeKeyword Keyword, 5283 return (AutoTypeKeyword)AutoTypeBits.Keyword; 5288 QualType Deduced, AutoTypeKeyword Keyword, 5594 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, 5597 TypeWithKeywordBits.Keyword = Keyword; 5602 return static_cast<ElaboratedTypeKeyword>(TypeWithKeywordBits.Keyword); 5618 static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword); 5620 static bool KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword); [all …]
|