Home
last modified time | relevance | path

Searched refs:ObjCTypeParamType (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td106 def ObjCTypeParamType : TypeNode<Type>, NeverCanonical;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h6151 class ObjCTypeParamType : public Type,
6152 public ObjCProtocolQualifiers<ObjCTypeParamType>,
6155 friend class ObjCProtocolQualifiers<ObjCTypeParamType>;
6177 ObjCTypeParamType(const ObjCTypeParamDecl *D,
6408 inline ObjCProtocolDecl **ObjCTypeParamType::getProtocolStorageImpl() {
6410 static_cast<ObjCTypeParamType*>(this)+1);
H A DTypeProperties.td897 let Class = ObjCTypeParamType in {
H A DRecursiveASTVisitor.h1129 DEF_TRAVERSE_TYPE(ObjCTypeParamType, {})
1417 DEF_TRAVERSE_TYPELOC(ObjCTypeParamType, {
H A DTypeLoc.h765 ObjCTypeParamType,
H A DASTContext.h218 mutable llvm::FoldingSet<ObjCTypeParamType> ObjCTypeParamTypes;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp749 ObjCTypeParamType::ObjCTypeParamType(const ObjCTypeParamDecl *D, QualType can, in ObjCTypeParamType() function in ObjCTypeParamType
1291 QualType VisitObjCTypeParamType(const ObjCTypeParamType *OTPTy) { in VisitObjCTypeParamType()
4155 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID, in Profile()
4166 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID) { in Profile()
H A DASTStructuralEquivalence.cpp1305 const auto *Obj1 = cast<ObjCTypeParamType>(T1); in IsStructurallyEquivalent()
1306 const auto *Obj2 = cast<ObjCTypeParamType>(T2); in IsStructurallyEquivalent()
H A DTypePrinter.cpp1934 void TypePrinter::printObjCTypeParamBefore(const ObjCTypeParamType *T, in printObjCTypeParamBefore()
1953 void TypePrinter::printObjCTypeParamAfter(const ObjCTypeParamType *T, in printObjCTypeParamAfter()
H A DODRHash.cpp1089 void VisitObjCTypeParamType(const ObjCTypeParamType *T) { in VisitObjCTypeParamType()
H A DASTContext.cpp2320 return getTypeInfo(cast<ObjCTypeParamType>(T)->desugar().getTypePtr()); in getTypeInfoImpl()
5374 if (const auto *objT = dyn_cast<ObjCTypeParamType>(type.getTypePtr())) { in applyObjCProtocolQualifiers()
5444 ObjCTypeParamType::Profile(ID, Decl, Decl->getUnderlyingType(), protocols); in getObjCTypeParamType()
5446 if (ObjCTypeParamType *TypeParam = in getObjCTypeParamType()
5460 unsigned size = sizeof(ObjCTypeParamType); in getObjCTypeParamType()
5462 void *mem = Allocate(size, alignof(ObjCTypeParamType)); in getObjCTypeParamType()
5463 auto *newType = new (mem) ObjCTypeParamType(Decl, Canonical, protocols); in getObjCTypeParamType()
5474 auto NewTypeParamTy = cast<ObjCTypeParamType>(New->getTypeForDecl()); in adjustObjCTypeParamBoundType()
H A DASTImporter.cpp1795 const clang::ObjCTypeParamType *T) { in VisitObjCTypeParamType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h210 llvm::DIType *CreateType(const ObjCTypeParamType *Ty, llvm::DIFile *Unit);
H A DCGDebugInfo.cpp2782 llvm::DIType *CGDebugInfo::CreateType(const ObjCTypeParamType *Ty, in CreateType()
3611 return CreateType(cast<ObjCTypeParamType>(Ty), Unit); in CreateTypeNode()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp717 bool VisitObjCTypeParamType(const ObjCTypeParamType *Type) { in isObjCTypeParamDependent()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7704 if (isa<ObjCTypeParamType>(type)) { in checkObjCKindOfType()
H A DTreeTransform.h7340 const ObjCTypeParamType *T = TL.getTypePtr(); in TransformObjCTypeParamType()