Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTypeNodes.td106 def ObjCTypeParamType : TypeNode<Type>, NeverCanonical;
/llvm-project-15.0.7/clang/lib/AST/
H A DType.cpp723 ObjCTypeParamType::ObjCTypeParamType(const ObjCTypeParamDecl *D, QualType can, in ObjCTypeParamType() function in ObjCTypeParamType
1264 QualType VisitObjCTypeParamType(const ObjCTypeParamType *OTPTy) { in VisitObjCTypeParamType()
3794 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID, in Profile()
3805 void ObjCTypeParamType::Profile(llvm::FoldingSetNodeID &ID) { in Profile()
H A DASTStructuralEquivalence.cpp1171 const auto *Obj1 = cast<ObjCTypeParamType>(T1); in IsStructurallyEquivalent()
1172 const auto *Obj2 = cast<ObjCTypeParamType>(T2); in IsStructurallyEquivalent()
H A DODRHash.cpp951 void VisitObjCTypeParamType(const ObjCTypeParamType *T) { in VisitObjCTypeParamType()
H A DTypePrinter.cpp1830 void TypePrinter::printObjCTypeParamBefore(const ObjCTypeParamType *T, in printObjCTypeParamBefore()
1849 void TypePrinter::printObjCTypeParamAfter(const ObjCTypeParamType *T, in printObjCTypeParamAfter()
H A DASTContext.cpp2364 return getTypeInfo(cast<ObjCTypeParamType>(T)->desugar().getTypePtr()); in getTypeInfoImpl()
5336 if (const auto *objT = dyn_cast<ObjCTypeParamType>(type.getTypePtr())) { in applyObjCProtocolQualifiers()
5406 ObjCTypeParamType::Profile(ID, Decl, Decl->getUnderlyingType(), protocols); in getObjCTypeParamType()
5408 if (ObjCTypeParamType *TypeParam = in getObjCTypeParamType()
5422 unsigned size = sizeof(ObjCTypeParamType); in getObjCTypeParamType()
5425 auto *newType = new (mem) ObjCTypeParamType(Decl, Canonical, protocols); in getObjCTypeParamType()
5436 auto NewTypeParamTy = cast<ObjCTypeParamType>(New->getTypeForDecl()); in adjustObjCTypeParamBoundType()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h5876 class ObjCTypeParamType : public Type,
5877 public ObjCProtocolQualifiers<ObjCTypeParamType>,
5880 friend class ObjCProtocolQualifiers<ObjCTypeParamType>;
5902 ObjCTypeParamType(const ObjCTypeParamDecl *D,
6134 inline ObjCProtocolDecl **ObjCTypeParamType::getProtocolStorageImpl() {
6136 static_cast<ObjCTypeParamType*>(this)+1);
H A DTypeProperties.td875 let Class = ObjCTypeParamType in {
H A DRecursiveASTVisitor.h1152 DEF_TRAVERSE_TYPE(ObjCTypeParamType, {})
1443 DEF_TRAVERSE_TYPELOC(ObjCTypeParamType, {
H A DTypeLoc.h759 ObjCTypeParamType,
H A DASTContext.h240 mutable llvm::FoldingSet<ObjCTypeParamType> ObjCTypeParamTypes;
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGDebugInfo.h204 llvm::DIType *CreateType(const ObjCTypeParamType *Ty, llvm::DIFile *Unit);
H A DCGDebugInfo.cpp2627 llvm::DIType *CGDebugInfo::CreateType(const ObjCTypeParamType *Ty, in CreateType()
3448 return CreateType(cast<ObjCTypeParamType>(Ty), Unit); in CreateTypeNode()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp717 bool VisitObjCTypeParamType(const ObjCTypeParamType *Type) { in isObjCTypeParamDependent()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaType.cpp7374 if (isa<ObjCTypeParamType>(type)) { in checkObjCKindOfType()
H A DTreeTransform.h7107 const ObjCTypeParamType *T = TL.getTypePtr(); in TransformObjCTypeParamType()