Searched refs:Keyword (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-9.3-release/contrib/gperf/src/
H A Dkeyword.icc24 /* ----------------------------- Keyword class ----------------------------- */
28 Keyword::Keyword (const char *allchars, int allchars_length, const char *rest)
39 : Keyword (allchars, allchars_length, rest),
H A Dkeyword-list.h3 /* Keyword list.
30 /* List node of a linear list of Keyword. */
35 Keyword_List (Keyword *car);
38 Keyword * first () const;
44 Keyword * const _car;
71 bool (*less) (Keyword *keyword1,
72 Keyword *keyword2));
H A Dkeyword.h3 /* Keyword data.
34 struct Keyword struct
37 Keyword (const char *allchars, int allchars_length,
52 struct KeywordExt : public Keyword
87 /* An abstract factory for creating Keyword instances.
99 /* Creates a new Keyword. */
100 virtual /*abstract*/ Keyword *
H A Dkeyword-list.icc26 INLINE Keyword *
H A Dkeyword-list.cc0 /* Keyword list.
31 Keyword_List::Keyword_List (Keyword *car)
83 typedef bool (*Keyword_Comparison) (Keyword *keyword1, Keyword *keyword2);
H A Dmain.cc34 /* This Keyword factory produces KeywordExt instances. */
38 virtual Keyword * create_keyword (const char *allchars, int allchars_length,
42 Keyword *
/freebsd-9.3-release/gnu/usr.bin/rcs/lib/
H A Drcskeys.c69 char const *Keyword[] = { variable
96 for (j = sizeof(Keyword)/sizeof(*Keyword); (--j); ) {
100 p = Keyword[j];
141 for (j = sizeof(Keyword)/sizeof(*Keyword); (--j); )
145 for (j = sizeof(Keyword)/sizeof(*Keyword); (--j); ) {
146 if (Keyword[j] == NULL)
148 if (!strcmp(key, Keyword[
[all...]
H A Drcsbase.h435 /* This must be in the same order as rcskeys.c's Keyword[] array. */
536 extern char const *Keyword[];
641 #define KEYVAL_EXPAND 0 /* -kkv `$Keyword: value $' */
642 #define KEYVALLOCK_EXPAND 1 /* -kkvl `$Keyword: value locker $' */
643 #define KEY_EXPAND 2 /* -kk `$Keyword$' */
H A Drcsedit.c602 * Keyword expansion is performed with data from delta.
1030 sp = Keyword[(int)marker];
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h651 const char *Keyword;
716 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword)
717 : Declaration(0), Keyword(Keyword), Priority(Priority), StartParameter(0),
770 return Keyword;
H A DSema.h1284 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
1349 const IdentifierInfo *Keyword; member in class:clang::Sema::NameClassification
1358 NameClassification(const IdentifierInfo *Keyword) argument
1359 : Kind(NC_Keyword), Keyword(Keyword) { }
5435 QualType CheckTypenameType(ElaboratedTypeKeyword Keyword,
/freebsd-9.3-release/contrib/one-true-awk/
H A Dlex.c40 typedef struct Keyword { struct
44 } Keyword; typedef in typeref:struct:Keyword
46 Keyword keywords[] ={ /* keep sorted: binary searched */
437 int binsearch(char *w, Keyword *kp, int n)
457 Keyword *kp;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DIdentifierTable.cpp88 // Language Keyword Implementation
120 static void AddKeyword(StringRef Keyword, argument
149 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
156 static void AddCXXOperatorKeyword(StringRef Keyword, argument
159 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DType.cpp1397 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { argument
1398 switch (Keyword) {
1412 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { argument
1413 switch (Keyword) {
1428 TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { argument
1429 switch (Keyword) {
1443 ElaboratedTypeKeyword Keyword,
1447 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, true, true,
1464 ElaboratedTypeKeyword Keyword,
1469 ID.AddInteger(Keyword);
1442 DependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args, QualType Canon) argument
1462 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *Qualifier, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) argument
1477 ElaboratedTypeKeyword Keyword; local
[all...]
H A DASTContext.cpp3243 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
3247 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
3262 T = new (*this) ElaboratedType(Keyword, NNS, NamedType, Canon);
3292 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, argument
3300 ElaboratedTypeKeyword CanonKeyword = Keyword;
3301 if (Keyword == ETK_None)
3304 if (CanonNNS != NNS || CanonKeyword != Keyword)
3309 DependentNameType::Profile(ID, Keyword, NNS, Name);
3317 T = new (*this) DependentNameType(Keyword, NNS, Name, Canon);
3325 ElaboratedTypeKeyword Keyword,
3324 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, const TemplateArgumentListInfo &Args) const argument
3339 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) const argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DType.h1304 unsigned Keyword : 8;
3925 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, argument
3931 TypeWithKeywordBits.Keyword = Keyword;
3936 return static_cast<ElaboratedTypeKeyword>(TypeWithKeywordBits.Keyword);
3955 static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword);
3957 static bool KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword);
3959 static const char *getKeywordName(ElaboratedTypeKeyword Keyword);
3985 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, argument
3987 : TypeWithKeyword(Keyword, Elaborate
4019 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType) argument
4048 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument
4082 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name) argument
[all...]
H A DASTContext.h1102 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
1105 QualType getDependentNameType(ElaboratedTypeKeyword Keyword,
1110 QualType getDependentTemplateSpecializationType(ElaboratedTypeKeyword Keyword,
1114 QualType getDependentTemplateSpecializationType(ElaboratedTypeKeyword Keyword,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp463 OS << Results[I].Keyword << '\n';
571 return R.Keyword;
H A DSemaTemplateInstantiate.cpp852 ElaboratedTypeKeyword Keyword,
1087 ElaboratedTypeKeyword Keyword,
1099 if (Id && Keyword != ETK_None && Keyword != ETK_Typename) {
1100 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
1113 Keyword,
1086 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType T) argument
H A DSemaType.cpp905 ElaboratedTypeKeyword Keyword local
907 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
3606 ElaboratedTypeKeyword Keyword local
3616 TL.setElaboratedKeywordLoc(Keyword != ETK_None
5363 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
5365 QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
5373 if (Keyword == ETK_None)
5377 return Context.getElaboratedType(Keyword, NNS, T);
H A DTreeTransform.h827 ElaboratedTypeKeyword Keyword,
830 return SemaRef.Context.getElaboratedType(Keyword,
841 ElaboratedTypeKeyword Keyword,
858 return SemaRef.Context.getDependentTemplateSpecializationType(Keyword,
869 if (Keyword == ETK_None && QualifierLoc.getNestedNameSpecifier() == 0)
872 return SemaRef.Context.getElaboratedType(Keyword,
882 QualType RebuildDependentNameType(ElaboratedTypeKeyword Keyword, argument
893 return SemaRef.Context.getDependentNameType(Keyword,
898 if (Keyword == ETK_None || Keyword
826 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType Named) argument
840 RebuildDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Name, SourceLocation NameLoc, TemplateArgumentListInfo &Args) argument
[all...]
H A DSemaCodeComplete.cpp2574 Result.AddTypedTextChunk(Keyword);
2756 std::string Keyword; local
2760 Keyword += II->getName();
2761 Keyword += ":";
2763 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
2765 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
4417 /// Keyword, depending on whether NeedAt is true or false.
4418 #define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
[all...]
H A DSemaTemplate.cpp2195 ElaboratedTypeKeyword Keyword local
2199 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2262 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
7730 Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword, argument
7743 return Context.getDependentNameType(Keyword,
7796 return Context.getDependentNameType(Keyword,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DModuleMap.cpp138 #define KEYWORD(Keyword,Conditions) .Case(#Keyword, true)
139 #define ALIAS(Keyword, AliasOf, Conditions) .Case(Keyword, true)
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseDecl.cpp849 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); local
852 if (Keyword == Ident_unavailable) {
855 << Keyword << SourceRange(UnavailableLoc);
868 << Keyword;
873 if (Keyword == Ident_message) {
893 if (Keyword == Ident_introduced)
895 else if (Keyword == Ident_deprecated)
897 else if (Keyword == Ident_obsoleted)
905 << Keyword
915 << Keyword << VersionRang
[all...]

Completed in 428 milliseconds

12