HomeSort by: relevance | last modified time | path
    Searched refs:Keyword (Results 1 - 25 of 48) sorted by relevancy

1 2

  /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/
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...]
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);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyEnumDumper.cpp 27 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
29 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
31 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned ";
32 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum ";
37 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum ";
PrettyTypedefDumper.cpp 30 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef ";
49 WithColor(Printer, PDB_ColorItem::Keyword).get() << "enum ";
55 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
57 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
71 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict";
80 WithColor(Printer, PDB_ColorItem::Keyword).get() << "class ";
PrettyClassDefinitionDumper.cpp 54 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
56 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
58 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned ";
60 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " ";
75 WithColor(Printer, PDB_ColorItem::Keyword).get() << Base.getAccess();
77 WithColor(Printer, PDB_ColorItem::Keyword).get() << " virtual";
PrettyVariableDumper.cpp 54 WithColor(Printer, PDB_ColorItem::Keyword).get() << "static ";
168 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const";
170 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile";
173 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict";
185 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " ";
191 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const ";
193 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile ";
196 WithColor(Printer, PDB_ColorItem::Keyword).get() << " __restrict ";
212 WithColor(Printer, PDB_ColorItem::Keyword).get() << "typedef ";
PrettyFunctionDumper.cpp 74 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " ";
84 WithColor(Printer, PDB_ColorItem::Keyword).get() << CC << " ";
111 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const";
113 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile";
149 WithColor(Printer, PDB_ColorItem::Keyword).get() << "virtual ";
172 WithColor(Printer, PDB_ColorItem::Keyword).get()
200 WithColor(Printer, PDB_ColorItem::Keyword).get() << " const";
202 WithColor(Printer, PDB_ColorItem::Keyword).get() << " volatile";
254 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
256 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile "
    [all...]
PrettyBuiltinDumper.cpp 22 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
24 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
PrettyTypeDumper.cpp 183 WithColor(Printer, PDB_ColorItem::Keyword).get() << "const ";
185 WithColor(Printer, PDB_ColorItem::Keyword).get() << "volatile ";
187 WithColor(Printer, PDB_ColorItem::Keyword).get() << "unaligned ";
189 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " ";
352 WithColor(Printer, PDB_ColorItem::Keyword).get()
LinePrinter.h 144 Keyword,
PrettyCompilandDumper.cpp 82 ? PDB_ColorItem::Keyword
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
asremove.c 51 char *Keyword,
59 * DESCRIPTION: Remove all statements that contain the given keyword.
61 * contains the keyword to the next semicolon. Currently
69 char *Keyword,
77 KeywordLength = strlen (Keyword);
83 SubString = strstr (SubBuffer, Keyword);
147 char *Keyword)
158 KeywordLength = strlen (Keyword);
163 SubBuffer = strstr (SubString, Keyword);
240 SubString = SubBuffer + strlen (Keyword);
    [all...]
acpisrc.h 262 char *Keyword);
295 char *Keyword);
309 char *Keyword);
336 char *Keyword);
414 char *Keyword,
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLLexer.cpp 447 /// Lex a label, integer type, keyword, or hexadecimal integer constant.
450 /// Keyword sdiv, float, ...
488 // Otherwise, this was a letter sequence. See which keyword this is.
492 StringRef Keyword(StartChar, CurPtr - StartChar);
494 #define KEYWORD(STR) \
496 if (Keyword == #STR) \
500 KEYWORD(true); KEYWORD(false);
501 KEYWORD(declare); KEYWORD(define)
    [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/include/clang/Sema/
CodeCompleteConsumer.h 73 /// Priority for a language keyword (that isn't any of the other
251 /// Code completion occurred after the "enum" keyword, to indicate
255 /// Code completion occurred after the "union" keyword, to indicate
259 /// Code completion occurred after the "struct" or "class" keyword,
445 /// match the code-completion string, typically a keyword or the name of a
753 /// Refers to a keyword or symbol.
768 /// When Kind == RK_Keyword, the string representing the keyword
770 const char *Keyword;
878 /// Build a result that refers to a keyword or symbol.
879 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCoroutine.cpp 189 StringRef Keyword) {
200 : diag::err_coroutine_outside_function) << Keyword;
217 S.Diag(Loc, diag::err_coroutine_invalid_func_context) << ID << Keyword;
629 StringRef Keyword,
631 if (!isValidCoroutineContext(S, Loc, Keyword))
640 ScopeInfo->setFirstCoroutineStmt(Loc, Keyword);
730 StringRef Keyword) {
731 if (!checkCoroutineContext(*this, KWLoc, Keyword))
760 Diag(KWLoc, diag::note_declared_coroutine_here) << Keyword;
810 StringRef Keyword) {
    [all...]
CodeCompleteConsumer.cpp 525 return !StringRef(Result.Keyword).startswith(Filter);
575 OS << Results[I].Keyword;
715 llvm_unreachable("Macro and keyword kinds are handled by the constructors");
729 return Keyword;
  /src/external/apache2/llvm/dist/clang/lib/Basic/
IdentifierTable.cpp 79 // Language Keyword Implementation
115 /// How a keyword is treated in the selected standard.
120 KS_Future // Is a keyword in future standard
125 /// Translates flags as specified in TokenKinds.def into keyword status
164 static void AddKeyword(StringRef Keyword,
169 // Don't add this keyword under MSVCCompat.
174 // Don't add this keyword under OpenCL.
178 // Don't add this keyword if disabled in this language.
182 Table.get(Keyword, AddResult == KS_Future ? tok::identifier : TokenCode);
187 /// AddCXXOperatorKeyword - Register a C++ operator keyword alternativ
    [all...]
  /src/sys/external/bsd/acpica/dist/os_specific/service_layers/
oslinuxtbl.c 102 const char *Keyword);
499 * PARAMETERS: Keyword - Character string indicating ACPI GUID version
504 * DESCRIPTION: Find RSDP address via EFI using keyword indicating the ACPI
512 const char *Keyword)
519 snprintf (Format, 32, "%s=%s", Keyword, "%llx");
  /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/clang/include/clang/AST/
Type.h 1447 /// Which keyword(s) were used to create an AutoType.
1663 unsigned Keyword : 8;
1707 unsigned Keyword : 2;
4987 AutoType(QualType DeducedAsType, AutoTypeKeyword Keyword,
5029 return (AutoTypeKeyword)AutoTypeBits.Keyword;
5038 QualType Deduced, AutoTypeKeyword Keyword,
5311 /// The "struct" keyword.
5314 /// The "__interface" keyword.
5317 /// The "union" keyword.
5320 /// The "class" 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());

Completed in 70 milliseconds

1 2