Home
last modified time | relevance | path

Searched refs:TypedefDecl (Results 1 – 25 of 44) sorted by relevance

12

/external/clang/docs/
DClangCheck.rst23 (TypedefDecl 0x7ff3a302a410 <<invalid sloc>> __int128_t '__int128')
24 (TypedefDecl 0x7ff3a302a470 <<invalid sloc>> __uint128_t 'unsigned __int128')
25 (TypedefDecl 0x7ff3a302a830 <<invalid sloc>> __builtin_va_list '__va_list_tag [1]')
/external/clang/include/clang/AST/
DASTContext.h213 mutable TypedefDecl *Int128Decl;
216 mutable TypedefDecl *UInt128Decl;
220 mutable TypedefDecl *BuiltinVaListDecl;
223 mutable TypedefDecl *BuiltinMSVaListDecl;
226 mutable TypedefDecl *ObjCIdDecl;
229 mutable TypedefDecl *ObjCSelDecl;
232 mutable TypedefDecl *ObjCClassDecl;
238 mutable TypedefDecl *BOOLDecl;
263 mutable TypedefDecl *CFConstantStringTypeDecl;
270 TypedefDecl *ObjCInstanceTypeDecl;
[all …]
DDecl.h2681 class TypedefDecl : public TypedefNameDecl {
2682 TypedefDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in TypedefDecl() function
2687 static TypedefDecl *Create(ASTContext &C, DeclContext *DC,
2690 static TypedefDecl *CreateDeserialized(ASTContext &C, unsigned ID);
/external/clang/test/Index/
Dannotate-comments-typedef.m20 // CHECK: TypedefDecl=MyEnum:[[@LINE-1]]:3 (Definition) FullCommentAsHTML=[<p class="para-brief"> D…
31 // CHECK: TypedefDecl=E_T:[[@LINE-2]]:16 (Definition) FullCommentAsHTML=[<p class="para-brief"> Doc…
38 // CHECK: TypedefDecl=Foo:[[@LINE-1]]:11 (Definition) FullCommentAsHTML=[<p class="para-brief"> Com…
48 // CHECK: TypedefDecl=Foo1T:[[@LINE-2]]:21 (Definition) {{.*}} FullCommentAsHTML=[<p class="para-br…
Dcomplete-at-directives.m33 // CHECK-CC4: TypedefDecl:{TypedText Class}
34 // CHECK-CC4: TypedefDecl:{TypedText id}
35 // CHECK-CC4: TypedefDecl:{TypedText SEL}
Dcomplete-declarators.m33 // CHECK-CC0: TypedefDecl:{TypedText id} (50)
66 // CHECK-CC5: TypedefDecl:{TypedText Class} (50)
71 // CHECK-CC5: TypedefDecl:{TypedText id} (50)
75 // CHECK-CC5: TypedefDecl:{TypedText SEL} (50)
Dcomplete-at-exprstmt.m42 // CHECK-CC3: TypedefDecl:{TypedText Class}
43 // CHECK-CC3: TypedefDecl:{TypedText id}
46 // CHECK-CC3: TypedefDecl:{TypedText SEL}
Dreparse-predef-objc-protocol.m8 // CHECK: declare-objc-predef.h:2:28: TypedefDecl=Class:2:28 (Definition) Extent=[2:1 - 2:33]
Dcomplete-exprs.m26 // CHECK-CC1: TypedefDecl:{TypedText BOOL} (50)
33 // CHECK-CC2: TypedefDecl:{TypedText BOOL} (50)
Dcomplete-blocks.m65 // CHECK-CC5: TypedefDecl:{TypedText block_t} (50)
66 // CHECK-CC5: TypedefDecl:{TypedText Class} (50)
Dannotate-comments-objc.m122 // CHECK: annotate-comments-objc.m:43:22: TypedefDecl=An_NS_ENUM_isdoxy1:{{.*}} An_NS_ENUM_isdoxy1 …
124 // CHECK: annotate-comments-objc.m:60:32: TypedefDecl=typedef_isdoxy1:{{.*}} typedef_isdoxy1 IS_DOX…
Dcomplete-lambdas.mm35 // CHECK-CC3: TypedefDecl:{TypedText Class} (50)
Dcomplete-objc-message.m250 // CHECK-CCA: TypedefDecl:{TypedText Class} (50)
254 // CHECK-CCA: TypedefDecl:{TypedText id} (50)
279 // CHECK-CCF: TypedefDecl:{TypedText Class}
282 // CHECK-CCF: TypedefDecl:{TypedText id}
Dcomplete-preprocessor.m70 // CHECK-CC5: TypedefDecl:{TypedText id} (50)
Dannotate-tokens.m208 // CHECK: Identifier: "barType" [14:15 - 14:22] TypedefDecl=barType:14:15 (Definition)
603 // CHECK-ID-PROTO: Punctuation: "<" [155:11 - 155:12] TypedefDecl=proto_ptr:155:20 (Definition)
605 // CHECK-ID-PROTO: Punctuation: ">" [155:17 - 155:18] TypedefDecl=proto_ptr:155:20 (Definition)
/external/clang/test/Parser/
Dskip-function-bodies.mm36 // CHECK: skip-function-bodies.mm:13:13: TypedefDecl=E:13:13 (Definition) Extent=[13:3 - 13:14]
42 // CHECK-NOT: skip-function-bodies.mm:21:13: TypedefDecl=H:21:13 (Definition) Extent=[21:3 - 21:14]
/external/clang/include/clang/Edit/
DRewriters.h21 class TypedefDecl; variable
/external/clang/lib/ARCMigrate/
DObjCMT.cpp54 void CacheObjCNSIntegerTypedefed(const TypedefDecl *TypedefDcl);
56 const TypedefDecl *TypedefDcl);
92 const TypedefDecl *NSIntegerTypedefed;
93 const TypedefDecl *NSUIntegerTypedefed;
706 const TypedefDecl *TypedefDcl, in rewriteToNSEnumDecl()
760 const TypedefDecl *TypedefDcl, in rewriteToNSMacroDecl()
899 const TypedefDecl *TypedefDcl) { in CacheObjCNSIntegerTypedefed()
910 const TypedefDecl *TypedefDcl) { in migrateNSEnumDecl()
1882 const TypedefDecl *TD = dyn_cast<TypedefDecl>(*N); in HandleTranslationUnit()
1889 else if (const TypedefDecl *TD = dyn_cast<TypedefDecl>(*D)) { in HandleTranslationUnit()
[all …]
/external/clang/lib/AST/
DComment.cpp234 const TypedefDecl *TD = cast<TypedefDecl>(CommentDecl); in fill()
DASTContext.cpp150 if (isa<TypedefDecl>(D)) { in getRawCommentForDeclNoCache()
954 TypedefDecl *ASTContext::buildImplicitTypedef(QualType T, in buildImplicitTypedef()
957 TypedefDecl *NewDecl = TypedefDecl::Create( in buildImplicitTypedef()
964 TypedefDecl *ASTContext::getInt128Decl() const { in getInt128Decl()
970 TypedefDecl *ASTContext::getUInt128Decl() const { in getUInt128Decl()
4887 TypedefDecl *ASTContext::getCFConstantStringDecl() const { in getCFConstantStringDecl()
4958 CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl()); in setCFConstantStringType()
5101 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() { in getObjCInstanceTypeDecl()
6123 TypedefDecl *ASTContext::getObjCIdDecl() const { in getObjCIdDecl()
6132 TypedefDecl *ASTContext::getObjCSelDecl() const { in getObjCSelDecl()
[all …]
DDecl.cpp4128 TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC, in Create()
4131 return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo); in Create()
4151 TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
4152 return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(), in CreateDeserialized()
4168 SourceRange TypedefDecl::getSourceRange() const { in getSourceRange()
/external/clang/test/SemaObjC/
Dproperty-atomic-bool.m3 // CHECK: TypedefDecl {{.*}} referenced AtomicBool '_Atomic(_Bool)'
/external/v8/tools/clang/blink_gc_plugin/
DRecordInfo.cpp182 if (TypedefDecl* typedef_decl = dyn_cast<TypedefDecl>(decl)) { in IsEagerlyFinalized()
/external/clang/tools/libclang/
DCursorVisitor.h206 bool VisitTypedefDecl(TypedefDecl *D);
/external/clang/lib/Index/
DUSRGeneration.cpp88 void VisitTypedefDecl(const TypedefDecl *D);
511 void USRGenerator::VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()

12