Home
last modified time | relevance | path

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

/src/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,
617 static ObjCTypeParamDecl *CreateDeserialized(ASTContext &ctx,
659 : private llvm::TrailingObjects<ObjCTypeParamList, ObjCTypeParamDecl *> {
666 ArrayRef<ObjCTypeParamDecl *> typeParams,
675 ArrayRef<ObjCTypeParamDecl *> typeParams,
679 using iterator = ObjCTypeParamDecl **;
681 iterator begin() { return getTrailingObjects<ObjCTypeParamDecl *>(); } in begin()
689 using const_iterator = ObjCTypeParamDecl * const *;
[all …]
H A DTextNodeDumper.h396 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
H A DASTContext.h94 class ObjCTypeParamDecl; variable
1753 QualType getObjCTypeParamType(const ObjCTypeParamDecl *Decl,
1755 void adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig,
1756 ObjCTypeParamDecl *New) const;
H A DJSONNodeDumper.h273 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
H A DTypeLoc.h43 class ObjCTypeParamDecl; variable
779 ObjCTypeParamDecl *getDecl() const { return getTypePtr()->getDecl(); } in getDecl()
H A DType.h126 class ObjCTypeParamDecl;
7074 ObjCTypeParamDecl *OTPDecl;
7091 ObjCTypeParamType(const ObjCTypeParamDecl *D,
7105 const ObjCTypeParamDecl *OTPDecl,
7109 ObjCTypeParamDecl *getDecl() const { return OTPDecl; }
H A DPropertiesBase.td100 SubclassPropertyType<"ObjCTypeParamDecl", DeclRef>;
H A DRecursiveASTVisitor.h1739 DEF_TRAVERSE_DECL(ObjCTypeParamDecl, {
/src/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.cpp803 ObjCTypeParamType::ObjCTypeParamType(const ObjCTypeParamDecl *D, QualType can, in ObjCTypeParamType()
806 OTPDecl(const_cast<ObjCTypeParamDecl *>(D)) { in ObjCTypeParamType()
1356 ObjCTypeParamDecl *typeParam = OTPTy->getDecl(); in VisitObjCTypeParamType()
4386 const ObjCTypeParamDecl *OTPDecl, in Profile()
H A DJSONNodeDumper.cpp1112 void JSONNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
H A DASTImporter.cpp496 ExpectedDecl VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
1844 Expected<ObjCTypeParamDecl *> ToDeclOrErr = import(T->getDecl()); in VisitObjCTypeParamType()
4854 ExpectedDecl ASTNodeImporter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
4873 ObjCTypeParamDecl *Result; in VisitObjCTypeParamDecl()
5527 SmallVector<ObjCTypeParamDecl *, 4> toTypeParams; in ImportObjCTypeParamList()
H A DTextNodeDumper.cpp2736 void TextNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
H A DASTContext.cpp5850 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl, in getObjCTypeParamType()
5880 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, in adjustObjCTypeParamBoundType()
5881 ObjCTypeParamDecl *New) const { in adjustObjCTypeParamBoundType()
/src/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()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclObjC.cpp763 return ObjCTypeParamDecl::Create(Context, SemaRef.CurContext, variance, in actOnObjCTypeParam()
774 ArrayRef<ObjCTypeParamDecl *> in actOnObjCTypeParamList()
776 reinterpret_cast<ObjCTypeParamDecl * const *>(typeParamsIn.data()), in actOnObjCTypeParamList()
783 llvm::SmallDenseMap<IdentifierInfo *, ObjCTypeParamDecl *> knownParams; in actOnObjCTypeParamList()
852 ObjCTypeParamDecl *prevTypeParam = prevTypeParams->begin()[i]; in checkTypeParamListConsistency()
853 ObjCTypeParamDecl *newTypeParam = newTypeParams->begin()[i]; in checkTypeParamListConsistency()
1032 SmallVector<ObjCTypeParamDecl *, 4> clonedTypeParams; in ActOnStartClassInterface()
1034 clonedTypeParams.push_back(ObjCTypeParamDecl::Create( in ActOnStartClassInterface()
H A DSemaObjC.cpp485 const ObjCTypeParamDecl *Decl, SourceLocation ProtocolLAngleLoc, in BuildObjCTypeParamType()
589 ObjCTypeParamDecl *typeParam = nullptr; in applyObjCTypeArgs()
H A DTreeTransform.h866 QualType RebuildObjCTypeParamType(const ObjCTypeParamDecl *Decl,
7625 ObjCTypeParamDecl *OTP = cast_or_null<ObjCTypeParamDecl>( in TransformObjCTypeParamType()
15997 const ObjCTypeParamDecl *Decl, in RebuildObjCTypeParamType()
/src/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp59 if (isa<ObjCTypeParamDecl>(D)) in isFunctionLocalSymbol()
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp453 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
595 isa<ParmVarDecl, ObjCTypeParamDecl>(D)) { in VisitDecl()
1200 void ASTDeclReader::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
1220 SmallVector<ObjCTypeParamDecl *, 4> typeParams; in ReadObjCTypeParamList()
1223 auto *typeParam = readDeclAs<ObjCTypeParamDecl>(); in ReadObjCTypeParamList()
4135 D = ObjCTypeParamDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
H A DASTWriterDecl.cpp145 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
840 void ASTDeclWriter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h96 QualType BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl,
/src/contrib/llvm-project/clang/include/clang/ExtractAPI/
H A DExtractAPIVisitor.h1100 if (isa<ObjCTypeParamDecl>(Decl)) in VisitTypedefNameDecl()