Home
last modified time | relevance | path

Searched refs:Ivars (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/InstallAPI/
H A DVisitor.h75 Ivars);
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStub.cpp236 std::vector<FlowStringRef> Ivars; member
320 IO.mapOptional("objc-ivars", Section.Ivars); in mapping()
843 CurrentSection.Ivars.emplace_back(Symbol->getName()); in NormalizedTBD_V4()
850 sort(CurrentSection.Ivars); in NormalizedTBD_V4()
915 for (auto &sym : CurrentSection.Ivars) in denormalize()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp3955 llvm::SmallSetVector<ObjCIvarDecl *, 8> Ivars = ReferencedIvars[CDecl]; in RewriteIvarOffsetSymbols() local
3957 if (Ivars.empty()) in RewriteIvarOffsetSymbols()
3961 for (ObjCIvarDecl *IvarDecl : Ivars) { in RewriteIvarOffsetSymbols()
6721 ArrayRef<ObjCIvarDecl *> Ivars, in Write_IvarOffsetVar() argument
6735 for (unsigned i =0, e = Ivars.size(); i < e; i++) { in Write_IvarOffsetVar()
6736 ObjCIvarDecl *IvarDecl = Ivars[i]; in Write_IvarOffsetVar()
6746 if (Ivars[i]->isBitField()) in Write_IvarOffsetVar()
6754 if (Ivars[i]->isBitField()) { in Write_IvarOffsetVar()
6756 SKIP_BITFIELDS(i , e, Ivars); in Write_IvarOffsetVar()
6768 SmallVector<ObjCIvarDecl *, 8> Ivars; in Write__ivar_list_t_initializer() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DVisitor.cpp144 Ivars) { in recordObjCInstanceVariables()
153 for (const auto *IV : Ivars) { in recordObjCInstanceVariables()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp3852 ObjCInterfaceDecl::ivar_range Ivars = llvm::make_range( in DiagnoseVariableSizedIvars() local
3855 Ivars = IntfDecl->ivars(); in DiagnoseVariableSizedIvars()
3858 Ivars = ImplDecl->ivars(); in DiagnoseVariableSizedIvars()
3862 Ivars = CategoryDecl->ivars(); in DiagnoseVariableSizedIvars()
3868 for (auto *ivar : Ivars) { in DiagnoseVariableSizedIvars()
3912 (Ivars.begin() == Ivars.end()) ? nullptr : *Ivars.begin(); in DiagnoseVariableSizedIvars()
5129 SmallVector<const ObjCIvarDecl*, 32> Ivars; in ActOnDefs() local
5130 Context.DeepCollectObjCIvars(Class, true, Ivars); in ActOnDefs()
5132 for (unsigned i = 0; i < Ivars.size(); i++) { in ActOnDefs()
5133 const FieldDecl* ID = Ivars[i]; in ActOnDefs()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h146 Ivars);
1425 Ivars) { in recordObjCInstanceVariables()
1426 for (const auto *Ivar : Ivars) { in recordObjCInstanceVariables()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h512 SmallVectorImpl<ObjCIvarDecl *> &Ivars);
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCGNU.cpp3081 auto Ivars = IvarList.beginArray(ObjCIvarTy); in GenerateIvarList() local
3083 auto Ivar = Ivars.beginStruct(ObjCIvarTy); in GenerateIvarList()
3087 Ivar.finishAndAddTo(Ivars); in GenerateIvarList()
3089 Ivars.finishAndAddTo(IvarList); in GenerateIvarList()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp2617 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const { in DeepCollectObjCIvars()
2619 DeepCollectObjCIvars(SuperClass, false, Ivars); in DeepCollectObjCIvars()
2621 llvm::append_range(Ivars, OI->ivars()); in DeepCollectObjCIvars()
2626 Ivars.push_back(Iv); in DeepCollectObjCIvars()
8876 SmallVector<const ObjCIvarDecl*, 32> Ivars; in getObjCEncodingForTypeImpl() local
8877 DeepCollectObjCIvars(OI, true, Ivars); in getObjCEncodingForTypeImpl()
8878 for (unsigned i = 0, e = Ivars.size(); i != e; ++i) { in getObjCEncodingForTypeImpl()
8879 const FieldDecl *Field = Ivars[i]; in getObjCEncodingForTypeImpl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2594 SmallVectorImpl<const ObjCIvarDecl*> &Ivars) const;