Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A 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]')
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTContext.h334 mutable TypedefDecl *Int128Decl = nullptr;
337 mutable TypedefDecl *UInt128Decl = nullptr;
341 mutable TypedefDecl *BuiltinVaListDecl = nullptr;
344 mutable TypedefDecl *BuiltinMSVaListDecl = nullptr;
347 mutable TypedefDecl *ObjCIdDecl = nullptr;
350 mutable TypedefDecl *ObjCSelDecl = nullptr;
353 mutable TypedefDecl *ObjCClassDecl = nullptr;
359 mutable TypedefDecl *BOOLDecl = nullptr;
384 mutable TypedefDecl *CFConstantStringTypeDecl = nullptr;
391 TypedefDecl *ObjCInstanceTypeDecl = nullptr;
[all …]
H A DTextNodeDumper.h320 void VisitTypedefDecl(const TypedefDecl *D);
H A DJSONNodeDumper.h231 void VisitTypedefDecl(const TypedefDecl *TD);
H A DDecl.h3243 class TypedefDecl : public TypedefNameDecl {
3244 TypedefDecl(ASTContext &C, DeclContext *DC, SourceLocation StartLoc, in TypedefDecl() function
3249 static TypedefDecl *Create(ASTContext &C, DeclContext *DC,
3252 static TypedefDecl *CreateDeserialized(ASTContext &C, unsigned ID);
H A DASTNodeTraverser.h390 void VisitTypedefDecl(const TypedefDecl *D) { Visit(D->getUnderlyingType()); } in VisitTypedefDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DObjCMT.cpp53 void CacheObjCNSIntegerTypedefed(const TypedefDecl *TypedefDcl);
55 const TypedefDecl *TypedefDcl);
95 const TypedefDecl *NSIntegerTypedefed;
96 const TypedefDecl *NSUIntegerTypedefed;
707 const TypedefDecl *TypedefDcl, in rewriteToNSEnumDecl()
762 const TypedefDecl *TypedefDcl, in rewriteToNSMacroDecl()
890 const TypedefDecl *TypedefDcl) { in CacheObjCNSIntegerTypedefed()
901 const TypedefDecl *TypedefDcl) { in migrateNSEnumDecl()
1879 const TypedefDecl *TD = dyn_cast<TypedefDecl>(*N); in HandleTranslationUnit()
1886 else if (const TypedefDecl *TD = dyn_cast<TypedefDecl>(*D)) { in HandleTranslationUnit()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Edit/
H A DRewriters.h19 class TypedefDecl; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp173 isa<TypedefDecl>(D)) in getDeclLocForCommentSearch()
178 if (isa<TypedefDecl>(D)) { in getDeclLocForCommentSearch()
1238 TypedefDecl *ASTContext::buildImplicitTypedef(QualType T, in buildImplicitTypedef()
1241 TypedefDecl *NewDecl = TypedefDecl::Create( in buildImplicitTypedef()
1248 TypedefDecl *ASTContext::getInt128Decl() const { in getInt128Decl()
1254 TypedefDecl *ASTContext::getUInt128Decl() const { in getUInt128Decl()
6512 TypedefDecl *ASTContext::getCFConstantStringDecl() const { in getCFConstantStringDecl()
6618 CFConstantStringTypeDecl = cast<TypedefDecl>(TD->getDecl()); in setCFConstantStringType()
6821 TypedefDecl *ASTContext::getObjCInstanceTypeDecl() { in getObjCInstanceTypeDecl()
7919 TypedefDecl *ASTContext::getObjCIdDecl() const { in getObjCIdDecl()
[all …]
H A DComment.cpp329 ? cast<TypedefDecl>(CommentDecl)->getTypeSourceInfo() in fill()
H A DDecl.cpp4946 TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC, in Create()
4949 return new (C, DC) TypedefDecl(C, DC, StartLoc, IdLoc, Id, TInfo); in Create()
4991 TypedefDecl *TypedefDecl::CreateDeserialized(ASTContext &C, unsigned ID) { in CreateDeserialized()
4992 return new (C, ID) TypedefDecl(C, nullptr, SourceLocation(), SourceLocation(), in CreateDeserialized()
5008 SourceRange TypedefDecl::getSourceRange() const { in getSourceRange()
H A DDeclPrinter.cpp62 void VisitTypedefDecl(TypedefDecl *D);
506 void DeclPrinter::VisitTypedefDecl(TypedefDecl *D) { in VisitTypedefDecl()
H A DODRHash.cpp355 void VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
H A DCommentSema.cpp972 if (auto *ThisTypedefDecl = dyn_cast<TypedefDecl>(ThisDeclInfo->CurrentDecl)) { in isClassOrStructOrTagTypedefDecl()
H A DJSONNodeDumper.cpp720 void JSONNodeDumper::VisitTypedefDecl(const TypedefDecl *TD) { in VisitTypedefDecl()
H A DTextNodeDumper.cpp1536 void TextNodeDumper::VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCursorVisitor.h207 bool VisitTypedefDecl(TypedefDecl *D);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Index/
H A DUSRGeneration.cpp98 void VisitTypedefDecl(const TypedefDecl *D);
581 void USRGenerator::VisitTypedefDecl(const TypedefDecl *D) { in VisitTypedefDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DJumpDiagnostics.cpp223 return ScopePair(isa<TypedefDecl>(TD) in GetDiagForGotoScopeDecl()
H A DSemaDecl.cpp6153 TypedefDecl *NewTD = ParseTypedefDecl(S, D, TInfo->getType(), TInfo); in ActOnTypedefDeclarator()
7532 else if (isa<TypedefDecl>(ShadowedDecl)) in computeShadowedDeclKind()
15125 TypedefDecl *Sema::ParseTypedefDecl(Scope *S, Declarator &D, QualType T, in ParseTypedefDecl()
15136 TypedefDecl *NewTD = in ParseTypedefDecl()
15137 TypedefDecl::Create(Context, CurContext, D.getBeginLoc(), in ParseTypedefDecl()
15260 if (isa<TypedefDecl>(PrevDecl)) in getNonTagTypeDeclKind()
H A DSemaTemplateInstantiateDecl.cpp882 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getBeginLoc(), in InstantiateTypedefNameDecl()
922 Decl *TemplateDeclInstantiator::VisitTypedefDecl(TypedefDecl *D) { in VisitTypedefDecl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp728 const internal::VariadicDynCastAllOfMatcher<Decl, TypedefDecl> typedefDecl;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterDecl.cpp68 void VisitTypedefDecl(TypedefDecl *D);
385 void ASTDeclWriter::VisitTypedefDecl(TypedefDecl *D) { in VisitTypedefDecl()
H A DASTReaderDecl.cpp328 void VisitTypedefDecl(TypedefDecl *TD);
691 void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) { in VisitTypedefDecl()
3800 D = TypedefDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h192 extern const internal::VariadicDynCastAllOfMatcher<Decl, TypedefDecl>

12