Home
last modified time | relevance | path

Searched refs:Keyword (Results 1 – 25 of 43) sorted by relevance

12

/external/clang/test/Index/
Dannotate-tokens.m147 // CHECK: Keyword: "interface" [1:2 - 1:11] ObjCInterfaceDecl=Foo:1:12
151 // CHECK: Keyword: "int" [2:4 - 2:7] ObjCInstanceMethodDecl=compare::2:8
162 // CHECK: Keyword: "end" [3:2 - 3:5] ObjCInterfaceDecl=Foo:1:12
164 // CHECK: Keyword: "implementation" [5:2 - 5:16] ObjCImplementationDecl=Foo:5:17 (Definition)
168 // CHECK: Keyword: "int" [6:4 - 6:7] ObjCInstanceMethodDecl=compare::6:8 (Definition)
178 // CHECK: Keyword: "return" [7:3 - 7:9] ReturnStmt=
182 // CHECK: Keyword: "void" [8:4 - 8:8] CStyleCastExpr=
185 // CHECK: Keyword: "encode" [8:10 - 8:16] ObjCEncodeExpr=
192 // CHECK: Keyword: "end" [10:2 - 10:5]
193 // CHECK: Keyword: "typedef" [14:1 - 14:8]
[all …]
Darc-annotate.m9 // CHECK: Keyword: "interface" [1:2 - 1:11] ObjCInterfaceDecl=A:1:12
12 // CHECK: Keyword: "property" [2:2 - 2:10] ObjCPropertyDecl=property:2:34
14 // CHECK: Keyword: "strong" [2:12 - 2:18] ObjCPropertyDecl=property:2:34
16 // CHECK: Keyword: "nonatomic" [2:20 - 2:29] ObjCPropertyDecl=property:2:34
22 // CHECK: Keyword: "property" [3:2 - 3:10] ObjCPropertyDecl=second_property:3:32
24 // CHECK: Keyword: "nonatomic" [3:12 - 3:21] ObjCPropertyDecl=second_property:3:32
26 // CHECK: Keyword: "weak" [3:23 - 3:27] ObjCPropertyDecl=second_property:3:32
31 // CHECK: Keyword: "property" [4:2 - 4:10] ObjCPropertyDecl=third_property:4:45
33 // CHECK: Keyword: "unsafe_unretained" [4:12 - 4:29] ObjCPropertyDecl=third_property:4:45
35 // CHECK: Keyword: "nonatomic" [4:31 - 4:40] ObjCPropertyDecl=third_property:4:45
Dannotate-subscripting.m57 // CHECK: Keyword: "return" [26:3 - 26:9] ReturnStmt=
/external/javassist/src/main/javassist/compiler/ast/
DKeyword.java23 public class Keyword extends ASTree { class
26 public Keyword(int token) { in Keyword() method in Keyword
DVisitor.java46 public void atKeyword(Keyword n) throws CompileError {} in atKeyword()
/external/clang/include/clang/Sema/
DCodeCompleteConsumer.h657 const char *Keyword;
718 CodeCompletionResult(const char *Keyword, unsigned Priority = CCP_Keyword)
719 : Kind(RK_Keyword), Declaration(0), Keyword(Keyword), Priority(Priority),
772 return Keyword;
/external/protobuf/editors/
Dproto.vim91 HiLink pbDefault Keyword
92 HiLink pbExtend Keyword
93 HiLink pbRPC Keyword
/external/clang/lib/Basic/
DIdentifierTable.cpp118 static void AddKeyword(StringRef Keyword, in AddKeyword() argument
143 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode); in AddKeyword()
150 static void AddCXXOperatorKeyword(StringRef Keyword, in AddCXXOperatorKeyword() argument
153 IdentifierInfo &Info = Table.get(Keyword, TokenCode); in AddCXXOperatorKeyword()
/external/clang/lib/AST/
DType.cpp1319 TypeWithKeyword::getTagTypeKindForKeyword(ElaboratedTypeKeyword Keyword) { in getTagTypeKindForKeyword() argument
1320 switch (Keyword) { in getTagTypeKindForKeyword()
1333 TypeWithKeyword::KeywordIsTagTypeKind(ElaboratedTypeKeyword Keyword) { in KeywordIsTagTypeKind() argument
1334 switch (Keyword) { in KeywordIsTagTypeKind()
1348 TypeWithKeyword::getKeywordName(ElaboratedTypeKeyword Keyword) { in getKeywordName() argument
1349 switch (Keyword) { in getKeywordName()
1362 ElaboratedTypeKeyword Keyword, in DependentTemplateSpecializationType() argument
1366 : TypeWithKeyword(Keyword, DependentTemplateSpecialization, Canon, true, true, in DependentTemplateSpecializationType()
1383 ElaboratedTypeKeyword Keyword, in Profile() argument
1388 ID.AddInteger(Keyword); in Profile()
[all …]
DASTContext.cpp2570 ASTContext::getElaboratedType(ElaboratedTypeKeyword Keyword, in getElaboratedType() argument
2574 ElaboratedType::Profile(ID, Keyword, NNS, NamedType); in getElaboratedType()
2589 T = new (*this) ElaboratedType(Keyword, NNS, NamedType, Canon); in getElaboratedType()
2619 QualType ASTContext::getDependentNameType(ElaboratedTypeKeyword Keyword, in getDependentNameType() argument
2627 ElaboratedTypeKeyword CanonKeyword = Keyword; in getDependentNameType()
2628 if (Keyword == ETK_None) in getDependentNameType()
2631 if (CanonNNS != NNS || CanonKeyword != Keyword) in getDependentNameType()
2636 DependentNameType::Profile(ID, Keyword, NNS, Name); in getDependentNameType()
2644 T = new (*this) DependentNameType(Keyword, NNS, Name, Canon); in getDependentNameType()
2652 ElaboratedTypeKeyword Keyword, in getDependentTemplateSpecializationType() argument
[all …]
/external/clang/include/clang/AST/
DType.h1254 unsigned Keyword : 8;
3768 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc,
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,
3830 : TypeWithKeyword(Keyword, Elaborated, CanonType,
3836 assert(!(Keyword == ETK_None && NNS == 0) &&
[all …]
DASTContext.h851 QualType getElaboratedType(ElaboratedTypeKeyword Keyword,
854 QualType getDependentNameType(ElaboratedTypeKeyword Keyword,
859 QualType getDependentTemplateSpecializationType(ElaboratedTypeKeyword Keyword,
863 QualType getDependentTemplateSpecializationType(ElaboratedTypeKeyword Keyword,
/external/javassist/src/main/javassist/compiler/
DCodeGen.java258 Keyword k = (Keyword)mods.head(); in atMethodDecl()
310 if (target instanceof Keyword) { in needsSuperCall()
311 int token = ((Keyword)target).get(); in needsSuperCall()
1140 if (expr instanceof Keyword) { in isAlwaysBranch()
1141 int t = ((Keyword)expr).get(); in isAlwaysBranch()
1855 public void atKeyword(Keyword k) throws CompileError { in atKeyword()
DTypeChecker.java473 return new Keyword(((Boolean)value).booleanValue() in getConstantFieldValue()
635 else if (method instanceof Keyword) { // constructor in atCallExpr()
637 if (((Keyword)method).get() == SUPER) in atCallExpr()
962 public void atKeyword(Keyword k) throws CompileError { in atKeyword()
DMemberResolver.java545 Keyword k = (Keyword)mods.head(); in getModifiers()
DMemberCodeGen.java468 else if (method instanceof Keyword) { // constructor in atCallExpr()
477 if (((Keyword)method).get() == SUPER) in atCallExpr()
491 if (target instanceof Keyword) in atCallExpr()
492 if (((Keyword)target).get() == SUPER) in atCallExpr()
DParser.java173 list = new ASTList(new Keyword(lex.get()), list); in parseMemberMods()
1164 if (expr instanceof Keyword) { in parseMethodCall()
1165 int token = ((Keyword)expr).get(); in parseMethodCall()
1230 return new Keyword(t); in parsePrimaryExpr()
/external/clang/lib/Sema/
DCodeCompleteConsumer.cpp485 OS << Results[I].Keyword << '\n'; in ProcessCodeCompleteResults()
598 return R.Keyword; in getOrderedName()
DSemaTemplateInstantiate.cpp804 ElaboratedTypeKeyword Keyword,
982 ElaboratedTypeKeyword Keyword, in RebuildElaboratedType() argument
995 if (Keyword != ETK_None && Keyword != ETK_Typename) { in RebuildElaboratedType()
996 TagTypeKind Kind = TypeWithKeyword::getTagTypeKindForKeyword(Keyword); in RebuildElaboratedType()
1009 Keyword, in RebuildElaboratedType()
/external/clang/lib/Parse/
DParseDecl.cpp595 IdentifierInfo *Keyword = Tok.getIdentifierInfo(); in ParseAvailabilityAttribute() local
598 if (Keyword == Ident_unavailable) { in ParseAvailabilityAttribute()
601 << Keyword << SourceRange(UnavailableLoc); in ParseAvailabilityAttribute()
614 << Keyword; in ParseAvailabilityAttribute()
619 if (Keyword == Ident_message) { in ParseAvailabilityAttribute()
638 if (Keyword == Ident_introduced) in ParseAvailabilityAttribute()
640 else if (Keyword == Ident_deprecated) in ParseAvailabilityAttribute()
642 else if (Keyword == Ident_obsoleted) in ParseAvailabilityAttribute()
650 << Keyword in ParseAvailabilityAttribute()
660 << Keyword << VersionRange; in ParseAvailabilityAttribute()
/external/llvm/utils/vim/
Dllvm.vim98 HiLink llvmKeyword Keyword
/external/v8/src/
Ddateparser.h215 static DateToken Keyword(KeywordType tag, int value, int length) { in Keyword() function
Ddateparser-inl.h201 return DateToken::Keyword(KeywordTable::GetType(index), in Scan()
/external/libvpx/examples/includes/geshi/docs/
Dgeshi-doc.txt43 + 3.4.3 Setting Keyword Styles
60 + 3.11.1 Adding a Keyword
61 + 3.11.2 Removing a Keyword
62 + 3.11.3 Adding a Keyword Group
63 + 3.11.4 Removing a Keyword Group
65 + 3.12.1 Keyword Substitution
70 o 3.13 Keyword URLs
71 + 3.13.1 Setting a URL for a Keyword Group
72 + 3.13.2 Disabling URLs for a Keyword Group
542 3.4.3: Setting Keyword Styles
[all …]
/external/libvpx/build/make/
Dgen_msvs_proj.sh313 Keyword="${keyword}" \

12