/openbsd/gnu/llvm/clang/lib/ExtractAPI/ |
H A D | TypedefUnderlyingTypeResolver.cpp | 38 const TypedefNameDecl *TypedefDecl = TypedefTy->getDecl(); in getUnderlyingTypeDecl() local 39 if (TypedefDecl->getUnderlyingType()->isTypedefNameType()) in getUnderlyingTypeDecl() 40 TypeDecl = TypedefDecl; in getUnderlyingTypeDecl()
|
H A D | ExtractAPIVisitor.cpp | 40 if (const auto *TypedefDecl = Decl->getTypedefNameForAnonDecl()) in getTypedefName() local 41 return TypedefDecl->getName(); in getTypedefName()
|
/openbsd/gnu/llvm/clang/docs/ |
H A D | ClangCheck.rst | 23 (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]')
|
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | ASTContext.h | 336 mutable TypedefDecl *Int128Decl = nullptr; 349 mutable TypedefDecl *ObjCIdDecl = nullptr; 361 mutable TypedefDecl *BOOLDecl = nullptr; 1196 TypedefDecl *getInt128Decl() const; 1199 TypedefDecl *getUInt128Decl() const; 1904 TypedefDecl *getObjCInstanceTypeDecl(); 2011 TypedefDecl *getObjCIdDecl() const; 2023 TypedefDecl *getObjCSelDecl() const; 2033 TypedefDecl *getObjCClassDecl() const; 2048 TypedefDecl *getBOOLDecl() const { in getBOOLDecl() [all …]
|
H A D | TextNodeDumper.h | 332 void VisitTypedefDecl(const TypedefDecl *D);
|
H A D | JSONNodeDumper.h | 237 void VisitTypedefDecl(const TypedefDecl *TD);
|
H A D | Decl.h | 3390 class TypedefDecl : public TypedefNameDecl { 3391 TypedefDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in TypedefDecl() function 3396 static TypedefDecl *Create(ASTContext &C, DeclContext *DC, 3399 static TypedefDecl *CreateDeserialized(ASTContext &C, unsigned ID);
|
H A D | ASTNodeTraverser.h | 414 void VisitTypedefDecl(const TypedefDecl *D) { Visit(D->getUnderlyingType()); } in VisitTypedefDecl()
|
/openbsd/gnu/llvm/clang/include/clang/Edit/ |
H A D | Rewriters.h | 19 class TypedefDecl; variable
|
/openbsd/gnu/llvm/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 53 void CacheObjCNSIntegerTypedefed(const TypedefDecl *TypedefDcl); 55 const TypedefDecl *TypedefDcl); 95 const TypedefDecl *NSIntegerTypedefed; 96 const TypedefDecl *NSUIntegerTypedefed; 706 const TypedefDecl *TypedefDcl, in rewriteToNSEnumDecl() 761 const TypedefDecl *TypedefDcl, in rewriteToNSMacroDecl() 889 const TypedefDecl *TypedefDcl) { in CacheObjCNSIntegerTypedefed() 900 const TypedefDecl *TypedefDcl) { in migrateNSEnumDecl() 1875 const TypedefDecl *TD = dyn_cast<TypedefDecl>(*N); in HandleTranslationUnit() 1882 else if (const TypedefDecl *TD = dyn_cast<TypedefDecl>(*D)) { in HandleTranslationUnit() [all …]
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CursorVisitor.h | 214 bool VisitTypedefDecl(TypedefDecl *D);
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | ASTContext.cpp | 179 isa<TypedefDecl>(D)) in getDeclLocForCommentSearch() 184 if (isa<TypedefDecl>(D)) { in getDeclLocForCommentSearch() 1228 TypedefDecl *NewDecl = TypedefDecl::Create( in buildImplicitTypedef() 1235 TypedefDecl *ASTContext::getInt128Decl() const { in getInt128Decl() 1241 TypedefDecl *ASTContext::getUInt128Decl() const { in getUInt128Decl() 8741 static TypedefDecl * 8853 TypedefDecl *VaListTagTypedefDecl = in CreatePowerABIBuiltinVaListDecl() 8867 static TypedefDecl * 8929 static TypedefDecl * 8970 static TypedefDecl * [all …]
|
H A D | Decl.cpp | 5176 TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC, in Create() 5179 return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo); in Create() 5221 TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized() 5222 return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(), in CreateDeserialized() 5238 SourceRange TypedefDecl::getSourceRange() const { in getSourceRange()
|
H A D | DeclPrinter.cpp | 62 void VisitTypedefDecl(TypedefDecl *D); 507 void DeclPrinter::VisitTypedefDecl(TypedefDecl *D) { in VisitTypedefDecl()
|
H A D | CommentSema.cpp | 907 if (auto *ThisTypedefDecl = dyn_cast<TypedefDecl>(ThisDeclInfo->CurrentDecl)) { in isClassOrStructOrTagTypedefDecl()
|
H A D | ODRHash.cpp | 437 void VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
|
H A D | JSONNodeDumper.cpp | 785 void JSONNodeDumper::VisitTypedefDecl(const TypedefDecl *TD) { in VisitTypedefDecl()
|
H A D | TextNodeDumper.cpp | 1635 void TextNodeDumper::VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
|
/openbsd/gnu/llvm/clang/lib/Index/ |
H A D | USRGeneration.cpp | 98 void VisitTypedefDecl(const TypedefDecl *D); 585 void USRGenerator::VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
|
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionDeclMap.cpp | 2036 TypedefDecl *typedef_decl = TypedefDecl::Create( in AddContextClassType()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | JumpDiagnostics.cpp | 223 return ScopePair(isa<TypedefDecl>(TD) in GetDiagForGotoScopeDecl()
|
/openbsd/gnu/llvm/clang/lib/ASTMatchers/ |
H A D | ASTMatchersInternal.cpp | 729 const internal::VariadicDynCastAllOfMatcher<Decl, TypedefDecl> typedefDecl;
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 330 void VisitTypedefDecl(TypedefDecl *TD); 712 void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) { in VisitTypedefDecl() 3663 D = TypedefDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
H A D | ASTWriterDecl.cpp | 69 void VisitTypedefDecl(TypedefDecl *D); 391 void ASTDeclWriter::VisitTypedefDecl(TypedefDecl *D) { in VisitTypedefDecl()
|
/openbsd/gnu/llvm/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 195 extern const internal::VariadicDynCastAllOfMatcher<Decl, TypedefDecl>
|