reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGObjCMac.cpp
 5617   ShortTy = cast<llvm::IntegerType>(Types.ConvertType(Ctx.ShortTy));
 5619   LongTy = cast<llvm::IntegerType>(Types.ConvertType(Ctx.LongTy));
 5631     cast<llvm::PointerType>(Types.ConvertType(Ctx.getObjCIdType()));
 5635     cast<llvm::PointerType>(Types.ConvertType(Ctx.getObjCSelType()));
 5649   RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct,
 5650                                       Ctx.getTranslationUnitDecl(),
 5652                                       &Ctx.Idents.get("_objc_super"));
 5653   RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(),
 5654                                 nullptr, Ctx.getObjCIdType(), nullptr, nullptr,
 5656   RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(),
 5657                                 nullptr, Ctx.getObjCClassType(), nullptr,
 5661   SuperCTy = Ctx.getTagDeclType(RD);
 5662   SuperPtrCTy = Ctx.getPointerType(SuperCTy);