/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | DeclObjC.h | 579 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 D | TextNodeDumper.h | 373 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
|
H A D | ASTContext.h | 95 class ObjCTypeParamDecl; variable 1672 QualType getObjCTypeParamType(const ObjCTypeParamDecl *Decl, 1674 void adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, 1675 ObjCTypeParamDecl *New) const;
|
H A D | JSONNodeDumper.h | 262 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
|
H A D | Type.h | 121 class ObjCTypeParamDecl; 5960 ObjCTypeParamDecl *OTPDecl; 5977 ObjCTypeParamType(const ObjCTypeParamDecl *D, 5991 const ObjCTypeParamDecl *OTPDecl, 5995 ObjCTypeParamDecl *getDecl() const { return OTPDecl; }
|
H A D | TypeLoc.h | 42 class ObjCTypeParamDecl; variable 767 ObjCTypeParamDecl *getDecl() const { return getTypePtr()->getDecl(); } in getDecl()
|
H A D | PropertiesBase.td | 100 SubclassPropertyType<"ObjCTypeParamDecl", DeclRef>;
|
H A D | RecursiveASTVisitor.h | 1703 DEF_TRAVERSE_DECL(ObjCTypeParamDecl, {
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | DeclObjC.cpp | 1471 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 D | Type.cpp | 727 ObjCTypeParamType::ObjCTypeParamType(const ObjCTypeParamDecl *D, QualType can, in ObjCTypeParamType() 730 OTPDecl(const_cast<ObjCTypeParamDecl *>(D)) { in ObjCTypeParamType() 1272 ObjCTypeParamDecl *typeParam = OTPTy->getDecl(); in VisitObjCTypeParamType() 3885 const ObjCTypeParamDecl *OTPDecl, in Profile()
|
H A D | JSONNodeDumper.cpp | 1015 void JSONNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
H A D | TextNodeDumper.cpp | 2275 void TextNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
H A D | ASTImporter.cpp | 540 ExpectedDecl VisitObjCTypeParamDecl(ObjCTypeParamDecl *D); 4542 ExpectedDecl ASTNodeImporter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl() 4561 ObjCTypeParamDecl *Result; in VisitObjCTypeParamDecl() 5210 SmallVector<ObjCTypeParamDecl *, 4> toTypeParams; in ImportObjCTypeParamList()
|
H A D | ASTContext.cpp | 5455 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl, in getObjCTypeParamType() 5485 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, in adjustObjCTypeParamBoundType() 5486 ObjCTypeParamDecl *New) const { in adjustObjCTypeParamBoundType()
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CursorVisitor.h | 229 bool VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
|
H A D | CIndex.cpp | 977 bool CursorVisitor::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
H A D | DynamicTypePropagation.cpp | 719 if (isa<ObjCTypeParamDecl>(Type->getDecl())) { in isObjCTypeParamDependent() 845 for (ObjCTypeParamDecl *TypeParam : *TypeParams) { in checkPreObjCMessage()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 765 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 D | TreeTransform.h | 824 QualType RebuildObjCTypeParamType(const ObjCTypeParamDecl *Decl, 7220 ObjCTypeParamDecl *OTP = cast_or_null<ObjCTypeParamDecl>( in TransformObjCTypeParamType() 14675 const ObjCTypeParamDecl *Decl, in RebuildObjCTypeParamType()
|
H A D | SemaType.cpp | 916 ObjCTypeParamDecl *typeParam = nullptr; in applyObjCTypeArgs() 1039 QualType Sema::BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl, in BuildObjCTypeParamType()
|
/openbsd/gnu/llvm/clang/lib/ExtractAPI/ |
H A D | ExtractAPIVisitor.cpp | 332 if (isa<ObjCTypeParamDecl>(Decl)) in VisitTypedefNameDecl()
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 444 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D); 571 isa<ParmVarDecl, ObjCTypeParamDecl>(D)) { in VisitDecl() 1166 void ASTDeclReader::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl() 1186 SmallVector<ObjCTypeParamDecl *, 4> typeParams; in ReadObjCTypeParamList() 1189 auto *typeParam = readDeclAs<ObjCTypeParamDecl>(); in ReadObjCTypeParamList() 3946 D = ObjCTypeParamDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
H A D | ASTWriterDecl.cpp | 144 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D); 747 void ASTDeclWriter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
/openbsd/gnu/llvm/clang/lib/Index/ |
H A D | IndexSymbol.cpp | 59 if (isa<ObjCTypeParamDecl>(D)) in isFunctionLocalSymbol()
|
/openbsd/gnu/llvm/clang/include/clang/Sema/ |
H A D | Sema.h | 10317 QualType BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl,
|