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

  /src/external/gpl2/rcs/dist/src/
rcskeys.c 3 /* RCS keyword table and match operation */
38 * Add Name keyword.
72 char const *const Keyword[] = {
87 /* function: Checks whether string starts with a keyword followed
94 for (j = sizeof(Keyword)/sizeof(*Keyword); (--j); ) {
95 /* try next keyword */
96 p = Keyword[j];
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
ahaml.c 238 * FUNCTION: AhFindAmlTypes (entry point for AML grammar keyword search)
254 const AH_AML_TYPE *Keyword;
260 for (Keyword = Gbl_AmlTypesInfo; Keyword->Name; Keyword++)
264 printf (" %s\n", Keyword->Name);
271 AhDisplayAmlType (Keyword);
278 strcpy (Gbl_Buffer, Keyword->Name);
283 AhDisplayAmlType (Keyword);
ahasl.c 64 * FUNCTION: AhFindAslKeywords (entry point for ASL keyword search)
66 * PARAMETERS: Name - Name or prefix for an ASL keyword.
80 const AH_ASL_KEYWORD *Keyword;
86 for (Keyword = Gbl_AslKeywordInfo; Keyword->Name; Keyword++)
90 AhDisplayAslKeyword (Keyword);
97 strcpy (Gbl_Buffer, Keyword->Name);
102 AhDisplayAslKeyword (Keyword);
118 * PARAMETERS: Op - Pointer to ASL keyword with syntax inf
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
QualTypeNames.cpp 433 ElaboratedTypeKeyword Keyword = ETK_None;
437 Keyword = ETypeInput->getKeyword();
456 if (Prefix || Keyword != ETK_None) {
457 QT = Ctx.getElaboratedType(Keyword, Prefix, QT);
Type.cpp 2831 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) {
2832 switch (Keyword) {
2840 llvm_unreachable("Elaborated type keyword is not a tag type kind.");
2842 llvm_unreachable("Unknown elaborated type keyword.");
2846 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) {
2847 switch (Keyword) {
2858 llvm_unreachable("Unknown elaborated type keyword.");
2861 StringRef TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) {
2862 switch (Keyword) {
2872 llvm_unreachable("Unknown elaborated type keyword.")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatTokenLexer.cpp 340 auto &Keyword = *(Tokens.end() - 1);
343 if (!Keywords.isCSharpKeyword(*Keyword))
348 Keyword->TokenText.end() - At->TokenText.begin());
349 At->ColumnWidth += Keyword->ColumnWidth;
350 At->setType(Keyword->getType());
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
LinePrinter.h 144 Keyword,
  /src/external/historical/nawk/dist/
lex.c 44 typedef struct Keyword {
48 } Keyword;
50 const Keyword keywords[] = { /* keep sorted: binary searched */
497 static int binsearch(char *w, const Keyword *kp, int n)
517 const Keyword *kp;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
DeclSpec.cpp 1405 StringRef Keyword;
1410 Keyword = "virtual";
1414 Keyword = "explicit";
1420 << Keyword << Hint;
SemaCodeComplete.cpp 1685 /// Add type specifiers for the current language as keyword results.
2757 llvm_unreachable("Not supported as a context-sensitive keyword!");
3367 Result.AddTypedTextChunk(Keyword);
3567 std::string Keyword;
3571 Keyword += II->getName();
3572 Keyword += ":";
3574 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
3576 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
4794 // The "template" keyword can follow "->" or "." in the grammar.
4795 // However, we only want to suggest the template keyword if somethin
    [all...]
SemaTemplate.cpp 358 // The code is missing a 'template' keyword prior to the dependent template
548 // If a 'template' keyword was used, a lookup that finds only non-template
657 // If this is a dependent-scope lookup, diagnose that the 'template' keyword
1022 /// the keyword "typename" was used to declare the type parameter
1024 /// "class" or "typename" keyword. ParamName is the name of the
3919 // shall be prefixed by the keyword typename to indicate that the
3945 << 1 /*if any keyword was present, it was 'template'*/;
4029 ElaboratedTypeKeyword Keyword
4033 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
4096 // and tag keyword
    [all...]
SemaType.cpp 1583 ElaboratedTypeKeyword Keyword
1585 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result,
2218 /// \param Loc Location of the keyword.
4194 /// Creates a fix-it to insert a C-style nullability keyword at \p pointerLoc,
4886 // C99 6.7.5.2p1: The optional type qualifiers and the keyword static
5946 ElaboratedTypeKeyword Keyword
5956 TL.setElaboratedKeywordLoc(Keyword != ETK_None
6213 // FIXME: Provide a source location for the _Atomic keyword.
6528 // The keyword-based type attributes imply which address space to use.
8835 /// Retrieve a version of the type 'T' that is elaborated by Keyword, qualifie
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 56 /// isObjCAtKeyword - Return true if we have an ObjC keyword identifier.
65 /// getObjCKeywordID - Return the ObjC keyword kind.
664 StringRef Keyword = TheTok.getRawIdentifier();
666 = llvm::StringSwitch<PreambleDirectiveKind>(Keyword)
1675 // the identifier as incomplete even if it resolves to a macro or a keyword.
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 700 assert(getLangOpts().DeclSpecKeyword && "__declspec keyword is not enabled");
1090 IdentifierInfo *Keyword = Tok.getIdentifierInfo();
1093 if (Keyword == Ident_strict) {
1096 << Keyword << SourceRange(StrictLoc);
1102 if (Keyword == Ident_unavailable) {
1105 << Keyword << SourceRange(UnavailableLoc);
1111 if (Keyword == Ident_deprecated && Platform->Ident &&
1116 << Keyword
1127 Diag(Tok, diag::err_expected_after) << Keyword << tok::equal;
1132 if (Keyword == Ident_message || Keyword == Ident_replacement)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp 2771 return Error(IDLoc, "cannot mix positional and keyword arguments");
3499 StringRef Keyword;
3502 parseIdentifier(Keyword))
3504 if (Keyword == "md5") {
3510 } else if (Keyword == "source") {
MasmParser.cpp 3023 return Error(IDLoc, "cannot mix positional and keyword arguments");
4554 StringRef Keyword;
4557 parseIdentifier(Keyword))
4559 if (Keyword == "md5") {
4565 } else if (Keyword == "source") {

Completed in 51 milliseconds