/external/clang/test/Index/ |
D | annotate-tokens.m | 147 // 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 …]
|
D | arc-annotate.m | 9 // 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
|
D | annotate-subscripting.m | 57 // CHECK: Keyword: "return" [26:3 - 26:9] ReturnStmt=
|
/external/javassist/src/main/javassist/compiler/ast/ |
D | Keyword.java | 23 public class Keyword extends ASTree { class 26 public Keyword(int token) { in Keyword() method in Keyword
|
D | Visitor.java | 46 public void atKeyword(Keyword n) throws CompileError {} in atKeyword()
|
/external/clang/include/clang/Sema/ |
D | CodeCompleteConsumer.h | 657 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/ |
D | proto.vim | 91 HiLink pbDefault Keyword 92 HiLink pbExtend Keyword 93 HiLink pbRPC Keyword
|
/external/clang/lib/Basic/ |
D | IdentifierTable.cpp | 118 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/ |
D | Type.cpp | 1319 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 …]
|
D | ASTContext.cpp | 2570 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/ |
D | Type.h | 1254 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 …]
|
D | ASTContext.h | 851 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/ |
D | CodeGen.java | 258 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()
|
D | TypeChecker.java | 473 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()
|
D | MemberResolver.java | 545 Keyword k = (Keyword)mods.head(); in getModifiers()
|
D | MemberCodeGen.java | 468 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()
|
D | Parser.java | 173 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/ |
D | CodeCompleteConsumer.cpp | 485 OS << Results[I].Keyword << '\n'; in ProcessCodeCompleteResults() 598 return R.Keyword; in getOrderedName()
|
D | SemaTemplateInstantiate.cpp | 804 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/ |
D | ParseDecl.cpp | 595 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/ |
D | llvm.vim | 98 HiLink llvmKeyword Keyword
|
/external/v8/src/ |
D | dateparser.h | 215 static DateToken Keyword(KeywordType tag, int value, int length) { in Keyword() function
|
D | dateparser-inl.h | 201 return DateToken::Keyword(KeywordTable::GetType(index), in Scan()
|
/external/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 43 + 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/ |
D | gen_msvs_proj.sh | 313 Keyword="${keyword}" \
|