Searched defs:Keyword (Results 1 - 17 of 17) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
H A DKeyword.java21 * Keyword.
23 public class Keyword extends ASTree { class in inherits:ASTree
26 public Keyword(int token) { method in class:Keyword
/external/clang/lib/Basic/
H A DIdentifierTable.cpp88 // Language Keyword Implementation
118 static void AddKeyword(StringRef Keyword, argument
143 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
150 static void AddCXXOperatorKeyword(StringRef Keyword, argument
153 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
/external/v8/src/
H A Ddateparser.h215 static DateToken Keyword(KeywordType tag, int value, int length) { function in struct:v8::internal::DateParser::DateToken
/external/clang/lib/AST/
H A DType.cpp1319 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { argument
1320 switch (Keyword) {
1333 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { argument
1334 switch (Keyword) {
1348 TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { argument
1349 switch (Keyword) {
1362 ElaboratedTypeKeyword Keyword,
1366 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, true, true,
1383 ElaboratedTypeKeyword Keyword,
1388 ID.AddInteger(Keyword);
1361 DependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args, QualType Canon) argument
1381 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *Qualifier, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) argument
1396 ElaboratedTypeKeyword Keyword; local
[all...]
H A DASTContext.cpp2570 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
2574 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
2589 T = new (*this) ElaboratedType(Keyword, NNS, NamedType, Canon);
2619 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, argument
2627 ElaboratedTypeKeyword CanonKeyword = Keyword;
2628 if (Keyword == ETK_None)
2631 if (CanonNNS != NNS || CanonKeyword != Keyword)
2636 DependentNameType::Profile(ID, Keyword, NNS, Name);
2644 T = new (*this) DependentNameType(Keyword, NNS, Name, Canon);
2652 ElaboratedTypeKeyword Keyword,
2651 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, const TemplateArgumentListInfo &Args) const argument
2666 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) const argument
[all...]
/external/clang/lib/Parse/
H A DParseDecl.cpp595 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); local
598 if (Keyword == Ident_unavailable) {
601 << Keyword << SourceRange(UnavailableLoc);
614 << Keyword;
619 if (Keyword == Ident_message) {
638 if (Keyword == Ident_introduced)
640 else if (Keyword == Ident_deprecated)
642 else if (Keyword == Ident_obsoleted)
650 << Keyword
660 << Keyword << VersionRang
[all...]
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp804 ElaboratedTypeKeyword Keyword,
982 ElaboratedTypeKeyword Keyword,
995 if (Keyword != ETK_None && Keyword != ETK_Typename) {
996 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
1009 Keyword,
981 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType T) argument
H A DSemaType.cpp773 ElaboratedTypeKeyword Keyword local
775 Result = S.getElaboratedType(Keyword, DS.getTypeSpecScope(), Result);
2964 ElaboratedTypeKeyword Keyword local
2974 TL.setElaboratedKeywordLoc(Keyword != ETK_None
4357 /// \brief Retrieve a version of the type 'T' that is elaborated by Keyword
4359 QualType Sema::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
4367 if (Keyword == ETK_None)
4371 return Context.getElaboratedType(Keyword, NNS, T);
H A DSemaCodeComplete.cpp2475 Result.AddTypedTextChunk(Keyword);
2644 std::string Keyword; local
2648 Keyword += II->getName();
2649 Keyword += ":";
2651 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
2653 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
4276 // Macro that expands to @Keyword or Keyword, depending on whether NeedAt is
4278 #define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) NeedAt? "@" #Keyword
[all...]
H A DSemaLookup.cpp3193 void addKeywordResult(StringRef Keyword);
3253 void TypoCorrectionConsumer::addKeywordResult(StringRef Keyword) { argument
3256 addName(Keyword, NULL, Typo.edit_distance(Keyword), NULL, true);
H A DSemaTemplate.cpp2159 ElaboratedTypeKeyword Keyword local
2163 QualType T = Context.getDependentTemplateSpecializationType(Keyword,
2226 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result);
6892 Sema::CheckTypenameType(ElaboratedTypeKeyword Keyword, argument
6905 return Context.getDependentNameType(Keyword,
6948 return Context.getDependentNameType(Keyword,
H A DSemaDeclCXX.cpp10012 ElaboratedTypeKeyword Keyword local
10014 QualType T = CheckTypenameType(Keyword, TagLoc, QualifierLoc,
H A DTreeTransform.h784 ElaboratedTypeKeyword Keyword,
787 return SemaRef.Context.getElaboratedType(Keyword,
798 ElaboratedTypeKeyword Keyword,
815 return SemaRef.Context.getDependentTemplateSpecializationType(Keyword,
826 if (Keyword == ETK_None && QualifierLoc.getNestedNameSpecifier() == 0)
829 return SemaRef.Context.getElaboratedType(Keyword,
839 QualType RebuildDependentNameType(ElaboratedTypeKeyword Keyword, argument
850 return SemaRef.Context.getDependentNameType(Keyword,
855 if (Keyword == ETK_None || Keyword
783 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType Named) argument
797 RebuildDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, const IdentifierInfo *Name, SourceLocation NameLoc, TemplateArgumentListInfo &Args) argument
[all...]
/external/clang/include/clang/Sema/
H A DSema.h967 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
1029 const IdentifierInfo *Keyword; member in class:clang::Sema::NameClassification
1038 NameClassification(const IdentifierInfo *Keyword) argument
1039 : Kind(NC_Keyword), Keyword(Keyword) { }
4678 QualType CheckTypenameType(ElaboratedTypeKeyword Keyword,
/external/clang/lib/Serialization/
H A DASTReader.cpp3983 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
3986 return Context.getElaboratedType(Keyword, NNS, NamedType);
4051 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
4057 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
4062 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++]; local
4070 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
/external/clang/include/clang/AST/
H A DType.h1254 unsigned Keyword : 8;
3768 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, argument
3774 TypeWithKeywordBits.Keyword = Keyword;
3779 return static_cast<ElaboratedTypeKeyword>(TypeWithKeywordBits.Keyword);
3798 static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword);
3800 static bool KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword);
3802 static const char *getKeywordName(ElaboratedTypeKeyword Keyword);
3828 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, argument
3830 : TypeWithKeyword(Keyword, Elaborate
3862 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType) argument
3892 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument
3926 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 522 milliseconds