Home
last modified time | relevance | path

Searched refs:ObjCTypeParamDecl (Results 1 – 23 of 23) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h578 class ObjCTypeParamDecl : public TypedefNameDecl {
593 ObjCTypeParamDecl(ASTContext &ctx, DeclContext *dc, in ObjCTypeParamDecl() function
609 static ObjCTypeParamDecl *Create(ASTContext &ctx, DeclContext *dc,
665 ArrayRef<ObjCTypeParamDecl *> typeParams,
674 ArrayRef<ObjCTypeParamDecl *> typeParams,
678 using iterator = ObjCTypeParamDecl **;
680 iterator begin() { return getTrailingObjects<ObjCTypeParamDecl *>(); } in begin()
688 using const_iterator = ObjCTypeParamDecl * const *;
691 return getTrailingObjects<ObjCTypeParamDecl *>(); in begin()
698 ObjCTypeParamDecl *front() const { in front()
[all …]
H A DTextNodeDumper.h382 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
H A DASTContext.h93 class ObjCTypeParamDecl; variable
1691 QualType getObjCTypeParamType(const ObjCTypeParamDecl *Decl,
1693 void adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig,
1694 ObjCTypeParamDecl *New) const;
H A DJSONNodeDumper.h270 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
H A DType.h122 class ObjCTypeParamDecl;
6160 ObjCTypeParamDecl *OTPDecl;
6177 ObjCTypeParamType(const ObjCTypeParamDecl *D,
6191 const ObjCTypeParamDecl *OTPDecl,
6195 ObjCTypeParamDecl *getDecl() const { return OTPDecl; }
H A DTypeLoc.h43 class ObjCTypeParamDecl; variable
773 ObjCTypeParamDecl *getDecl() const { return getTypePtr()->getDecl(); } in getDecl()
H A DPropertiesBase.td100 SubclassPropertyType<"ObjCTypeParamDecl", DeclRef>;
H A DRecursiveASTVisitor.h1684 DEF_TRAVERSE_DECL(ObjCTypeParamDecl, {
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp1471 void ObjCTypeParamDecl::anchor() {} in anchor()
1473 ObjCTypeParamDecl *ObjCTypeParamDecl::Create(ASTContext &ctx, DeclContext *dc, in Create()
1482 new (ctx, dc) ObjCTypeParamDecl(ctx, dc, variance, varianceLoc, index, in Create()
1489 ObjCTypeParamDecl *ObjCTypeParamDecl::CreateDeserialized(ASTContext &ctx, in CreateDeserialized()
1491 return new (ctx, ID) ObjCTypeParamDecl(ctx, nullptr, in CreateDeserialized()
1497 SourceRange ObjCTypeParamDecl::getSourceRange() const { in getSourceRange()
1514 ArrayRef<ObjCTypeParamDecl *> typeParams, in ObjCTypeParamList()
1523 ArrayRef<ObjCTypeParamDecl *> typeParams, in create()
1526 ctx.Allocate(totalSizeToAlloc<ObjCTypeParamDecl *>(typeParams.size()), in create()
H A DType.cpp749 ObjCTypeParamType::ObjCTypeParamType(const ObjCTypeParamDecl *D, QualType can, in ObjCTypeParamType()
752 OTPDecl(const_cast<ObjCTypeParamDecl *>(D)) { in ObjCTypeParamType()
1294 ObjCTypeParamDecl *typeParam = OTPTy->getDecl(); in VisitObjCTypeParamType()
4156 const ObjCTypeParamDecl *OTPDecl, in Profile()
H A DJSONNodeDumper.cpp1077 void JSONNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
H A DTextNodeDumper.cpp2485 void TextNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
H A DASTImporter.cpp495 ExpectedDecl VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
1796 Expected<ObjCTypeParamDecl *> ToDeclOrErr = import(T->getDecl()); in VisitObjCTypeParamType()
4770 ExpectedDecl ASTNodeImporter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
4789 ObjCTypeParamDecl *Result; in VisitObjCTypeParamDecl()
5443 SmallVector<ObjCTypeParamDecl *, 4> toTypeParams; in ImportObjCTypeParamList()
H A DASTContext.cpp5440 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl, in getObjCTypeParamType()
5470 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, in adjustObjCTypeParamBoundType()
5471 ObjCTypeParamDecl *New) const { in adjustObjCTypeParamBoundType()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp718 if (isa<ObjCTypeParamDecl>(Type->getDecl())) { in isObjCTypeParamDependent()
843 for (ObjCTypeParamDecl *TypeParam : *TypeParams) { in checkPreObjCMessage()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp765 return ObjCTypeParamDecl::Create(Context, CurContext, variance, varianceLoc, in actOnObjCTypeParam()
775 ArrayRef<ObjCTypeParamDecl *> in actOnObjCTypeParamList()
777 reinterpret_cast<ObjCTypeParamDecl * const *>(typeParamsIn.data()), in actOnObjCTypeParamList()
784 llvm::SmallDenseMap<IdentifierInfo *, ObjCTypeParamDecl *> knownParams; in actOnObjCTypeParamList()
852 ObjCTypeParamDecl *prevTypeParam = prevTypeParams->begin()[i]; in checkTypeParamListConsistency()
853 ObjCTypeParamDecl *newTypeParam = newTypeParams->begin()[i]; in checkTypeParamListConsistency()
1031 SmallVector<ObjCTypeParamDecl *, 4> clonedTypeParams; in ActOnStartClassInterface()
1034 ObjCTypeParamDecl::Create( in ActOnStartClassInterface()
H A DTreeTransform.h851 QualType RebuildObjCTypeParamType(const ObjCTypeParamDecl *Decl,
7341 ObjCTypeParamDecl *OTP = cast_or_null<ObjCTypeParamDecl>( in TransformObjCTypeParamType()
14963 const ObjCTypeParamDecl *Decl, in RebuildObjCTypeParamType()
H A DSemaType.cpp933 ObjCTypeParamDecl *typeParam = nullptr; in applyObjCTypeArgs()
1056 QualType Sema::BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl, in BuildObjCTypeParamType()
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp59 if (isa<ObjCTypeParamDecl>(D)) in isFunctionLocalSymbol()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp458 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
601 isa<ParmVarDecl, ObjCTypeParamDecl>(D)) { in VisitDecl()
1208 void ASTDeclReader::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
1228 SmallVector<ObjCTypeParamDecl *, 4> typeParams; in ReadObjCTypeParamList()
1231 auto *typeParam = readDeclAs<ObjCTypeParamDecl>(); in ReadObjCTypeParamList()
4111 D = ObjCTypeParamDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp142 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
802 void ASTDeclWriter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h1055 if (isa<ObjCTypeParamDecl>(Decl)) in VisitTypedefNameDecl()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10635 QualType BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl,