Home
last modified time | relevance | path

Searched refs:TypedefDecl (Results 1 – 25 of 42) 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/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-declarators.m32 // CHECK-CC0: TypedefDecl:{TypedText id} (50)
65 // CHECK-CC5: TypedefDecl:{TypedText Class} (50)
70 // CHECK-CC5: TypedefDecl:{TypedText id} (50)
74 // CHECK-CC5: TypedefDecl:{TypedText SEL} (50)
Dcomplete-at-directives.m33 // CHECK-CC4: TypedefDecl:{TypedText Class}
34 // CHECK-CC4: TypedefDecl:{TypedText id}
35 // CHECK-CC4: TypedefDecl:{TypedText SEL}
Dcomplete-at-exprstmt.m42 // CHECK-CC3: TypedefDecl:{TypedText Class}
43 // CHECK-CC3: TypedefDecl:{TypedText id}
46 // CHECK-CC3: TypedefDecl:{TypedText SEL}
Dcomplete-blocks.m57 // CHECK-CC5: TypedefDecl:{TypedText block_t} (50)
58 // CHECK-CC5: TypedefDecl:{TypedText Class} (50)
Dcomplete-exprs.m26 // CHECK-CC1: TypedefDecl:{TypedText BOOL} (50)
33 // CHECK-CC2: TypedefDecl:{TypedText BOOL} (50)
Dcomplete-lambdas.mm35 // CHECK-CC3: TypedefDecl:{TypedText Class} (50)
Dcomplete-objc-message.m242 // CHECK-CCA: TypedefDecl:{TypedText Class} (50)
246 // CHECK-CCA: TypedefDecl:{TypedText id} (50)
271 // CHECK-CCF: TypedefDecl:{TypedText Class}
274 // CHECK-CCF: TypedefDecl:{TypedText id}
Dcomplete-preprocessor.m70 // CHECK-CC5: TypedefDecl:{TypedText id} (50)
Dc-index-api-loadTU-test.m166 // CHECK: c-index-api-loadTU-test.m:69:19: TypedefDecl=X1:69:19 (Definition) Extent=[69:1 - 69:21]
/external/clang/include/clang/AST/
DASTContext.h189 mutable TypedefDecl *Int128Decl;
192 mutable TypedefDecl *UInt128Decl;
196 mutable TypedefDecl *BuiltinVaListDecl;
199 mutable TypedefDecl *ObjCIdDecl;
202 mutable TypedefDecl *ObjCSelDecl;
205 mutable TypedefDecl *ObjCClassDecl;
211 mutable TypedefDecl *BOOLDecl;
227 TypedefDecl *ObjCInstanceTypeDecl;
808 TypedefDecl *getInt128Decl() const;
811 TypedefDecl *getUInt128Decl() const;
[all …]
DDecl.h2332 class TypedefDecl : public TypedefNameDecl {
2333 TypedefDecl(DeclContext *DC, SourceLocation StartLoc, SourceLocation IdLoc, in TypedefDecl() function
2338 static TypedefDecl *Create(ASTContext &C, DeclContext *DC,
2341 static TypedefDecl *CreateDeserialized(ASTContext &C, unsigned ID);
/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/lib/AST/
DASTContext.cpp438 else if (const TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) { in getCommentForDecl()
769 TypedefDecl *ASTContext::getInt128Decl() const { in getInt128Decl()
772 Int128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this), in getInt128Decl()
783 TypedefDecl *ASTContext::getUInt128Decl() const { in getUInt128Decl()
786 UInt128Decl = TypedefDecl::Create(const_cast<ASTContext &>(*this), in getUInt128Decl()
4532 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() { in getObjCInstanceTypeDecl()
4534 ObjCInstanceTypeDecl = TypedefDecl::Create(*this, in getObjCInstanceTypeDecl()
5500 TypedefDecl *ASTContext::getObjCIdDecl() const { in getObjCIdDecl()
5505 ObjCIdDecl = TypedefDecl::Create(const_cast<ASTContext &>(*this), in getObjCIdDecl()
5514 TypedefDecl *ASTContext::getObjCSelDecl() const { in getObjCSelDecl()
[all …]
DComment.cpp236 const TypedefDecl *TD = cast<TypedefDecl>(CommentDecl); in fill()
DDecl.cpp3282 TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC, in Create()
3285 return new (C) TypedefDecl(DC, StartLoc, IdLoc, Id, TInfo); in Create()
3290 TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
3291 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypedefDecl)); in CreateDeserialized()
3292 return new (Mem) TypedefDecl(0, SourceLocation(), SourceLocation(), 0, 0); in CreateDeserialized()
3307 SourceRange TypedefDecl::getSourceRange() const { in getSourceRange()
DDumpXML.cpp555 void visitTypedefDeclAttrs(TypedefDecl *D) { in visitTypedefDeclAttrs()
558 void visitTypedefDeclChildren(TypedefDecl *D) { in visitTypedefDeclChildren()
DDeclPrinter.cpp49 void VisitTypedefDecl(TypedefDecl *D);
330 void DeclPrinter::VisitTypedefDecl(TypedefDecl *D) { in VisitTypedefDecl()
/external/clang/lib/ASTMatchers/
DASTMatchFinder.cpp288 bool VisitTypedefDecl(TypedefDecl *DeclNode) { in VisitTypedefDecl()
528 const std::set<const TypedefDecl*> &Aliases = TypeAliases[CanonicalType]; in typeHasMatchingAlias()
529 for (std::set<const TypedefDecl*>::const_iterator in typeHasMatchingAlias()
543 llvm::DenseMap<const Type*, std::set<const TypedefDecl*> > TypeAliases;
/external/clang/tools/libclang/
DCursorVisitor.h205 bool VisitTypedefDecl(TypedefDecl *D);
DCIndexUSRs.cpp82 void VisitTypedefDecl(const TypedefDecl *D);
459 void USRGenerator::VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
/external/clang/lib/Sema/
DSemaStmtAsm.cpp548 } else if (TypedefDecl *TD = dyn_cast<TypedefDecl>(FoundDecl)) { in LookupInlineAsmField()
DJumpDiagnostics.cpp216 if (const TypedefDecl *TD = dyn_cast<TypedefDecl>(D)) { in GetDiagForGotoScopeDecl()
/external/clang/include/clang/Sema/
DTemplate.h398 Decl *VisitTypedefDecl(TypedefDecl *D);

12