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

12

/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
H A DVisitor.java46 public void atKeyword(Keyword n) throws CompileError {}
/external/libvpx/examples/includes/geshi/geshi/
H A Dteraterm.php243 /* Keyword Symbols */
268 4 => 'color: #ff00ff; font-weight: bold;' // Keyword Symbols
H A Dprogress.php20 * * Sort Keyword lists by Control Structures, Predefined functions and other important keywords
H A Dpixelbender.php24 * Keyword groups are defined as follows (groups marked with an asterisk
H A Dpowershell.php254 //BenBE: Please note that changes here and in Keyword group 6 have to be synchronized in order to work properly.
/external/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h667 const char *Keyword;
731 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword)
732 : Declaration(0), Keyword(Keyword), Priority(Priority), StartParameter(0),
784 return Keyword;
/external/protobuf/editors/
H A Dproto.vim91 HiLink pbDefault Keyword
92 HiLink pbExtend Keyword
93 HiLink pbRPC Keyword
/external/clang/lib/Basic/
H A DIdentifierTable.cpp89 // Language Keyword Implementation
121 static void AddKeyword(StringRef Keyword, argument
150 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
157 static void AddCXXOperatorKeyword(StringRef Keyword, argument
160 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
/external/clang/lib/AST/
H A DType.cpp1356 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { argument
1357 switch (Keyword) {
1371 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { argument
1372 switch (Keyword) {
1387 TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { argument
1388 switch (Keyword) {
1402 ElaboratedTypeKeyword Keyword,
1406 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, true, true,
1423 ElaboratedTypeKeyword Keyword,
1428 ID.AddInteger(Keyword);
1401 DependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args, QualType Canon) argument
1421 Profile(llvm::FoldingSetNodeID &ID, const ASTContext &Context, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *Qualifier, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) argument
1436 ElaboratedTypeKeyword Keyword; local
[all...]
H A DASTContext.cpp2930 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, argument
2934 ElaboratedType::Profile(ID, Keyword, NNS, NamedType);
2949 T = new (*this) ElaboratedType(Keyword, NNS, NamedType, Canon);
2979 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, argument
2987 ElaboratedTypeKeyword CanonKeyword = Keyword;
2988 if (Keyword == ETK_None)
2991 if (CanonNNS != NNS || CanonKeyword != Keyword)
2996 DependentNameType::Profile(ID, Keyword, NNS, Name);
3004 T = new (*this) DependentNameType(Keyword, NNS, Name, Canon);
3012 ElaboratedTypeKeyword Keyword,
3011 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, const TemplateArgumentListInfo &Args) const argument
3026 getDependentTemplateSpecializationType( ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, unsigned NumArgs, const TemplateArgument *Args) const argument
[all...]
/external/clang/include/clang/AST/
H A DType.h1283 unsigned Keyword : 8;
3836 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, argument
3842 TypeWithKeywordBits.Keyword = Keyword;
3847 return static_cast<ElaboratedTypeKeyword>(TypeWithKeywordBits.Keyword);
3866 static TagTypeKind getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword);
3868 static bool KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword);
3870 static const char *getKeywordName(ElaboratedTypeKeyword Keyword);
3896 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, argument
3898 : TypeWithKeyword(Keyword, Elaborate
3930 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, QualType NamedType) argument
3960 DependentNameType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name, QualType CanonType) argument
3994 Profile(llvm::FoldingSetNodeID &ID, ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, const IdentifierInfo *Name) argument
[all...]
H A DASTContext.h987 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
990 QualType getDependentNameType(ElaboratedTypeKeyword Keyword,
995 QualType getDependentTemplateSpecializationType(ElaboratedTypeKeyword Keyword,
999 QualType getDependentTemplateSpecializationType(ElaboratedTypeKeyword Keyword,
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp493 OS << Results[I].Keyword << '\n';
601 return R.Keyword;
H A DSemaTemplateInstantiate.cpp792 ElaboratedTypeKeyword Keyword,
983 ElaboratedTypeKeyword Keyword,
995 if (Id && Keyword != ETK_None && Keyword != ETK_Typename) {
996 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword);
1009 Keyword,
982 RebuildElaboratedType(SourceLocation KeywordLoc, ElaboratedTypeKeyword Keyword, NestedNameSpecifierLoc QualifierLoc, QualType T) argument
/external/javassist/src/main/javassist/compiler/
H A DMemberResolver.java545 Keyword k = (Keyword)mods.head();
H A DMemberCodeGen.java468 else if (method instanceof Keyword) { // constructor
477 if (((Keyword)method).get() == SUPER)
491 if (target instanceof Keyword)
492 if (((Keyword)target).get() == SUPER)
H A DParser.java173 list = new ASTList(new Keyword(lex.get()), list);
1164 if (expr instanceof Keyword) {
1165 int token = ((Keyword)expr).get();
1230 return new Keyword(t);
H A DTypeChecker.java473 return new Keyword(((Boolean)value).booleanValue()
635 else if (method instanceof Keyword) { // constructor
637 if (((Keyword)method).get() == SUPER)
962 public void atKeyword(Keyword k) throws CompileError {
H A DCodeGen.java258 Keyword k = (Keyword)mods.head();
310 if (target instanceof Keyword) {
311 int token = ((Keyword)target).get();
1140 if (expr instanceof Keyword) {
1141 int t = ((Keyword)expr).get();
1855 public void atKeyword(Keyword k) throws CompileError {
/external/llvm/utils/vim/
H A Dllvm.vim98 HiLink llvmKeyword Keyword
/external/v8/src/
H A Ddateparser-inl.h201 return DateToken::Keyword(KeywordTable::GetType(index),
H A Ddateparser.h215 static DateToken Keyword(KeywordType tag, int value, int length) { function in struct:v8::internal::DateParser::DateToken
/external/clang/lib/Parse/
H A DParseDecl.cpp706 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); local
709 if (Keyword == Ident_unavailable) {
712 << Keyword << SourceRange(UnavailableLoc);
725 << Keyword;
730 if (Keyword == Ident_message) {
749 if (Keyword == Ident_introduced)
751 else if (Keyword == Ident_deprecated)
753 else if (Keyword == Ident_obsoleted)
761 << Keyword
771 << Keyword << VersionRang
[all...]
/external/libvpx/build/make/
H A Dgen_msvs_proj.sh276 # List Keyword for this target
313 Keyword="${keyword}" \

Completed in 579 milliseconds

12