| /netbsd-src/external/apache2/llvm/dist/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, 617 static ObjCTypeParamDecl *CreateDeserialized(ASTContext &ctx, unsigned ID); 658 : private llvm::TrailingObjects<ObjCTypeParamList, ObjCTypeParamDecl *> { 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 *; [all …]
|
| H A D | TextNodeDumper.h | 360 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
|
| H A D | ASTContext.h | 123 class ObjCTypeParamDecl; variable 1569 QualType getObjCTypeParamType(const ObjCTypeParamDecl *Decl, 1571 void adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, 1572 ObjCTypeParamDecl *New) const;
|
| H A D | JSONNodeDumper.h | 254 void VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D);
|
| H A D | Type.h | 121 class ObjCTypeParamDecl; 5752 ObjCTypeParamDecl *OTPDecl; 5769 ObjCTypeParamType(const ObjCTypeParamDecl *D, 5783 const ObjCTypeParamDecl *OTPDecl, 5787 ObjCTypeParamDecl *getDecl() const { return OTPDecl; }
|
| H A D | TypeLoc.h | 42 class ObjCTypeParamDecl; variable 758 ObjCTypeParamDecl *getDecl() const { return getTypePtr()->getDecl(); } in getDecl()
|
| H A D | PropertiesBase.td | 99 SubclassPropertyType<"ObjCTypeParamDecl", DeclRef>;
|
| H A D | RecursiveASTVisitor.h | 1574 DEF_TRAVERSE_DECL(ObjCTypeParamDecl, {
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 1420 void ObjCTypeParamDecl::anchor() {} in anchor() 1422 ObjCTypeParamDecl *ObjCTypeParamDecl::Create(ASTContext &ctx, DeclContext *dc, in Create() 1431 new (ctx, dc) ObjCTypeParamDecl(ctx, dc, variance, varianceLoc, index, in Create() 1438 ObjCTypeParamDecl *ObjCTypeParamDecl::CreateDeserialized(ASTContext &ctx, in CreateDeserialized() 1440 return new (ctx, ID) ObjCTypeParamDecl(ctx, nullptr, in CreateDeserialized() 1446 SourceRange ObjCTypeParamDecl::getSourceRange() const { in getSourceRange() 1463 ArrayRef<ObjCTypeParamDecl *> typeParams, in ObjCTypeParamList() 1472 ArrayRef<ObjCTypeParamDecl *> typeParams, in create() 1475 ctx.Allocate(totalSizeToAlloc<ObjCTypeParamDecl *>(typeParams.size()), in create()
|
| H A D | Type.cpp | 723 ObjCTypeParamType::ObjCTypeParamType(const ObjCTypeParamDecl *D, QualType can, in ObjCTypeParamType() 727 OTPDecl(const_cast<ObjCTypeParamDecl *>(D)) { in ObjCTypeParamType() 1261 ObjCTypeParamDecl *typeParam = OTPTy->getDecl(); in VisitObjCTypeParamType() 3725 const ObjCTypeParamDecl *OTPDecl, in Profile()
|
| H A D | JSONNodeDumper.cpp | 937 void JSONNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
| H A D | TextNodeDumper.cpp | 2161 void TextNodeDumper::VisitObjCTypeParamDecl(const ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
| H A D | ASTImporter.cpp | 508 ExpectedDecl VisitObjCTypeParamDecl(ObjCTypeParamDecl *D); 4308 ExpectedDecl ASTNodeImporter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl() 4327 ObjCTypeParamDecl *Result; in VisitObjCTypeParamDecl() 4884 SmallVector<ObjCTypeParamDecl *, 4> toTypeParams; in ImportObjCTypeParamList()
|
| H A D | ASTContext.cpp | 5235 ASTContext::getObjCTypeParamType(const ObjCTypeParamDecl *Decl, in getObjCTypeParamType() 5265 void ASTContext::adjustObjCTypeParamBoundType(const ObjCTypeParamDecl *Orig, in adjustObjCTypeParamBoundType() 5266 ObjCTypeParamDecl *New) const { in adjustObjCTypeParamBoundType()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
| H A D | CursorVisitor.h | 222 bool VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
|
| H A D | CIndex.cpp | 971 bool CursorVisitor::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DynamicTypePropagation.cpp | 721 if (isa<ObjCTypeParamDecl>(Type->getDecl())) { in isObjCTypeParamDependent() 847 for (ObjCTypeParamDecl *TypeParam : *TypeParams) { in checkPreObjCMessage()
|
| /netbsd-src/external/apache2/llvm/dist/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 | 780 QualType RebuildObjCTypeParamType(const ObjCTypeParamDecl *Decl, 6985 ObjCTypeParamDecl *OTP = cast_or_null<ObjCTypeParamDecl>( in TransformObjCTypeParamType() 14127 const ObjCTypeParamDecl *Decl, in RebuildObjCTypeParamType()
|
| H A D | SemaType.cpp | 920 ObjCTypeParamDecl *typeParam = nullptr; in applyObjCTypeArgs() 1043 QualType Sema::BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl, in BuildObjCTypeParamType()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Index/ |
| H A D | IndexSymbol.cpp | 59 if (isa<ObjCTypeParamDecl>(D)) in isFunctionLocalSymbol()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 435 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D); 562 isa<ParmVarDecl>(D) || isa<ObjCTypeParamDecl>(D)) { in VisitDecl() 1080 void ASTDeclReader::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl() 1100 SmallVector<ObjCTypeParamDecl *, 4> typeParams; in ReadObjCTypeParamList() 1103 auto *typeParam = readDeclAs<ObjCTypeParamDecl>(); in ReadObjCTypeParamList() 4071 D = ObjCTypeParamDecl::CreateDeserialized(Context, ID); in ReadDeclRecord()
|
| H A D | ASTWriterDecl.cpp | 138 void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D); 729 void ASTDeclWriter::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) { in VisitObjCTypeParamDecl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 9595 QualType BuildObjCTypeParamType(const ObjCTypeParamDecl *Decl,
|