| /freebsd-src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeLoc.h | 137 const Type *getTypePtr() const { in getTypePtr() function 138 return QualType::getFromOpaquePtr(Ty).getTypePtr(); in getTypePtr() 268 const Type *getTypePtr() const { in getTypeLocClass() 273 return (TypeLocClass) getTypePtr()->getTypeClass(); in isKind() 295 TypeLoc::getLocalAlignmentForType(QualType(getTypePtr(), 0)); 298 return UnqualTypeLoc(getTypePtr(), reinterpret_cast<void*>(dataInt)); in initializeLocal() 382 Derived::classofType(TL.getTypePtr()); 421 const TypeClass *getTypePtr() const { in getExtraLocalDataSize() 422 return cast<TypeClass>(Base::getTypePtr()); in getExtraLocalDataSize() 507 Derived::classofType(TL.getTypePtr()); 262 const Type *getTypePtr() const { getTypePtr() function 415 const TypeClass *getTypePtr() const { getTypePtr() function 508 const TypeClass *getTypePtr() const { getTypePtr() function [all...] |
| H A D | CanonicalType.h | 83 const T *getTypePtr() const { return cast<T>(Stored.getTypePtr()); } in getTypePtr() function 230 return CanQualType::CreateUnsafe(this->getTypePtr()->Accessor()); \ 234 Type Accessor() const { return this->getTypePtr()->Accessor(); } 245 const T *getTypePtr() const { return Stored.getTypePtr(); } in getTypePtr() function 372 return Val.getTypePtr(); 509 return CanQualType::CreateUnsafe(this->getTypePtr()->getParamType(i)); 519 return param_type_iterator(this->getTypePtr()->param_type_begin()); 523 return param_type_iterator(this->getTypePtr()->param_type_end()); 643 assert((Other.isNull() || isa<T>(Other.getTypePtr())) && 659 if (isa<U>(Stored.getTypePtr())) [all …]
|
| H A D | RecursiveASTVisitor.h | 706 static_cast<CLASS##Type *>(const_cast<Type *>(T.getTypePtr()))); 1178 if (T->getBaseType().getTypePtr() != T) 1211 TRY_TO(WalkUpFrom##TYPE(const_cast<TYPE *>(TL.getTypePtr()))); \ 1217 TRY_TO(WalkUpFrom##TYPE(const_cast<TYPE *>(TL.getTypePtr()))); \ 1247 TRY_TO(TraverseType(TL.getTypePtr()->getElementType())); 1268 TRY_TO(TraverseType(QualType(TL.getTypePtr()->getClass(), 0))); 1311 TRY_TO(TraverseStmt(TL.getTypePtr()->getAddrSpaceExpr())); 1312 TRY_TO(TraverseType(TL.getTypePtr()->getPointeeType())); 1318 if (TL.getTypePtr()->getSizeExpr()) 1319 TRY_TO(TraverseStmt(TL.getTypePtr() [all...] |
| /freebsd-src/contrib/llvm-project/clang/lib/AST/ |
| H A D | QualTypeNames.cpp | 150 return QT.getTypePtr(); in getFullyQualifiedTemplateType() 182 return QT.getTypePtr(); in getFullyQualifiedTemplateType() 383 if (isa<PointerType>(QT.getTypePtr())) { in getFullyQualifiedType() 393 if (auto *MPT = dyn_cast<MemberPointerType>(QT.getTypePtr())) { in getFullyQualifiedType() 400 QT = Ctx.getMemberPointerType(QT, Class.getTypePtr()); in getFullyQualifiedType() 408 if (isa<ReferenceType>(QT.getTypePtr())) { in getFullyQualifiedType() 410 bool IsLValueRefTy = isa<LValueReferenceType>(QT.getTypePtr()); in getFullyQualifiedType() 428 while (isa<SubstTemplateTypeParmType>(QT.getTypePtr())) { in getFullyQualifiedType() 432 QT = cast<SubstTemplateTypeParmType>(QT.getTypePtr())->desugar(); in getFullyQualifiedType() 443 QT = QualType(QT.getTypePtr(), in getFullyQualifiedType() [all...] |
| H A D | StmtIterator.cpp | 31 t = vt->getElementType().getTypePtr(); in FindVA() 41 p = FindVA(p->getElementType().getTypePtr()); in NextVA() 76 if (const VariableArrayType* VAPtr = FindVA(VD->getType().getTypePtr())) { in HandleDecl() 86 FindVA(TD->getUnderlyingType().getTypePtr())) { in HandleDecl()
|
| H A D | TypeLoc.cpp | 207 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr() in getBeginLoc() 255 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr()->hasTrailingReturn()) in getEndLoc() 335 switch (getTypePtr()->getKind()) { in getWrittenTypeSpec() 501 getTypePtr()->getTypeArgsAsWritten()[i], Loc)); in initializeLocal() 544 Context.getTrivialTypeSourceInfo(getTypePtr()->getBaseType(), Loc)); in initializeLocal() 553 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); in initializeLocal() 561 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); in initializeLocal() 570 if (getTypePtr()->getQualifier()) { in initializeLocal() 572 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); in initializeLocal() 582 Context, getTypePtr() in initializeArgLocs() [all...] |
| H A D | Linkage.h | 157 return computeTypeLinkageInfo(T.getTypePtr()); 164 return getTypeLinkageAndVisibility(T.getTypePtr());
|
| H A D | Type.cpp | 76 const Type* ty = getTypePtr(); in getBaseTypeIdentifier() 96 const auto *ClassDecl = getTypePtr()->getPointeeCXXRecordDecl(); in mayBeDynamicClass() 101 const auto *ClassDecl = getTypePtr()->getPointeeCXXRecordDecl(); in mayBeNotDynamicClass() 430 return ATy->getElementType().getTypePtr(); 439 ->getElementType().getTypePtr(); 570 Cur = Ty->desugar().getTypePtr(); \ in getUnqualifiedDesugaredType() 615 Cur = Ty->desugar().getTypePtr(); \ in isVoidPointerType() 1520 const auto *newAttrType = dyn_cast<AttributedType>(newType.getTypePtr()); in UseExcessPrecision() 1572 const BuiltinType *BT = getTypePtr()->getAs<BuiltinType>(); 1574 const VectorType *VT = getTypePtr() [all...] |
| /freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DynamicTypeChecker.cpp | 71 QualType::print(DynamicType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(), in reportTypeError() 74 QualType::print(StaticType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(), in reportTypeError() 109 QualType::print(TrackedType.getType().getTypePtr(), Qualifiers(), OS, in VisitNode() 115 QualType::print(ExplicitCast->getSubExpr()->getType().getTypePtr(), in VisitNode() 118 QualType::print(ExplicitCast->getType().getTypePtr(), Qualifiers(), OS, in VisitNode() 123 QualType::print(ImplicitCast->getSubExpr()->getType().getTypePtr(), in VisitNode() 126 QualType::print(ImplicitCast->getType().getTypePtr(), Qualifiers(), OS, in VisitNode()
|
| H A D | CastToStructChecker.cpp | 45 const PointerType *OrigPTy = dyn_cast<PointerType>(OrigTy.getTypePtr()); in VisitCastExpr() 46 const PointerType *ToPTy = dyn_cast<PointerType>(ToTy.getTypePtr()); in VisitCastExpr()
|
| H A D | ObjCContainersASTChecker.cpp | 48 const Type *TP = T.getTypePtr(); in hasPointerToPointerSizedType() 59 return isPointerSize(PointeeT.getTypePtr()); in hasPointerToPointerSizedType()
|
| H A D | StdVariantChecker.cpp | 212 ThisSVal.getType(C.getASTContext())->getPointeeType().getTypePtr(), 0); in handleDefaultConstructor() 227 .getTypePtr(); in handleStdGetCall()
|
| H A D | MallocSizeofChecker.cpp | 151 if (A.getTypePtr() == B.getTypePtr()) in typesCompatible()
|
| H A D | TaggedUnionModeling.h | 87 const Type *ArgTypePtr = ArgQType.getTypePtr(); in handleConstructorAndAssignment()
|
| /freebsd-src/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | SystemZ.cpp | 91 handleExternallyVisibleObjABI(VD->getType().getTypePtr(), M, in setTargetAttributes() 96 handleExternallyVisibleObjABI(FD->getType().getTypePtr(), M, in setTargetAttributes() 272 SZCGI.handleExternallyVisibleObjABI(Ty.getTypePtr(), CGT.getCGM(), in EmitVAArg() 480 SZCGI.handleExternallyVisibleObjABI(I.type.getTypePtr(), CGT.getCGM(), in computeInfo() 497 .getTypePtr(); in isVectorTypeBased() 517 if (isVectorTypeBased(I.getType().getTypePtr(), /*IsParam*/false)) in isVectorTypeBased() 520 if (isVectorTypeBased(FD->getType().getTypePtr(), /*IsParam*/false)) in isVectorTypeBased() 525 if (isVectorTypeBased(FT->getReturnType().getTypePtr(), /*IsParam*/true)) in isVectorTypeBased() 529 if (isVectorTypeBased(ParamType.getTypePtr(), /*IsParam*/true)) in isVectorTypeBased()
|
| /freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | UncountedLocalVarsChecker.cpp | 37 auto *T = QT.getTypePtr(); in isDeclaredInForOrIf() 193 const auto *ArgType = V->getType().getTypePtr(); in visitVarDecl() 218 MaybeGuardian->getType().getTypePtr(); in shouldSkipVarDecl()
|
| /freebsd-src/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Program.cpp | 160 Desc = createDescriptor(VD, QT.getTypePtr(), std::nullopt, true, false); in createGlobal() 225 Desc = createDescriptor(D, Ty.getTypePtr(), Descriptor::GlobalMD, IsConst, in getOrCreateRecord() 348 Desc = createDescriptor(FD, FT.getTypePtr(), std::nullopt, IsConst, in createDescriptor() 393 D, ElemTy.getTypePtr(), std::nullopt, IsConst, IsTemporary); 413 const Descriptor *Desc = createDescriptor(D, ElemTy.getTypePtr(), 425 const Type *InnerTy = AT->getValueType().getTypePtr();
|
| /freebsd-src/contrib/llvm-project/clang/lib/Index/ |
| H A D | IndexTypeSourceInfo.cpp | 165 auto *T = TL.getTypePtr(); in VisitTemplateSpecializationTypeLoc() 177 if (!TraverseTemplateName(TL.getTypePtr()->getTemplateName())) in TraverseTemplateSpecializationTypeLoc() 195 auto *T = TL.getTypePtr(); in VisitDeducedTemplateSpecializationTypeLoc() 210 const DependentNameType *DNT = TL.getTypePtr(); in VisitDependentNameTypeLoc()
|
| /freebsd-src/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenTypes.cpp | 102 const Type *Ty = Context.getCanonicalType(T).getTypePtr(); in ConvertTypeForMem() 249 if (RecordDeclTypes.count(Context.getTagDeclType(RD).getTypePtr())) in ConvertFunctionTypeInternal() 262 const Type *Ty = T.getTypePtr(); in ConvertFunctionTypeInternal() 295 const FunctionType *FT = cast<FunctionType>(QFT.getTypePtr()); in ConvertType() 349 const Type *Ty = T.getTypePtr(); in ConvertType() 795 const Type *Key = Context.getTagDeclType(RD).getTypePtr(); 836 const Type *Key = Context.getTagDeclType(RD).getTypePtr(); in getTargetAddressSpace()
|
| H A D | ObjectFilePCHContainerOperations.cpp | 87 if (!QualTy.isNull() && CanRepresent(QualTy.getTypePtr())) in VisitTypeDecl() 94 if (!QualTy.isNull() && CanRepresent(QualTy.getTypePtr())) in VisitObjCInterfaceDecl() 115 if (CanRepresent(FnTy.getTypePtr())) in VisitFunctionDecl() 134 if (CanRepresent(FnTy.getTypePtr())) in VisitObjCMethodDecl()
|
| H A D | ABIInfo.cpp | 141 const Type *TyPtr = Ty.getTypePtr(); in isHomogeneousAggregate() 152 .getTypePtr(); in isHomogeneousAggregate()
|
| H A D | CodeGenTBAA.cpp | 222 Ty = Ty->getPointeeType().getTypePtr(); in getTypeInfoHelper() 298 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr(); in CollectFields() 412 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr(); in getBaseTypeInfoHelper() 512 const Type *Ty = Context.getCanonicalType(QTy).getTypePtr();
|
| /freebsd-src/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2088 llvm::dyn_cast<clang::FunctionProtoType>(method_qual_type.getTypePtr()); in GetOpaqueCompilerType() 2560 return llvm::cast<clang::ObjCObjectType>(qual_type.getTypePtr()) in GetCompilerDeclContextForType() 2564 llvm::cast<clang::ObjCObjectPointerType>(qual_type.getTypePtr()) in GetCompilerDeclContextForType() 2586 const auto *tag_type = llvm::cast<clang::RecordType>(qual_type.getTypePtr()); 2634 llvm::cast<clang::EnumType>(qual_type.getTypePtr()); in GetCompleteQualType() 2709 llvm::dyn_cast<clang::ArrayType>(qual_type.getTypePtr()); in GetCompleteQualType() 2771 return !type || llvm::isa<clang::Type>(GetQualType(type).getTypePtr()); in IsAggregateType() 2976 GetCanonicalQualType(type).getTypePtr()) in IsCStringType() 3042 llvm::cast<clang::RecordType>(qual_type.getTypePtr()); in IsHomogeneousAggregate() 3069 if (field_qual_type.getTypePtr() ! in IsHomogeneousAggregate() [all...] |
| /freebsd-src/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | IssueHash.cpp | 60 llvm::dyn_cast_or_null<FunctionType>(Target->getType().getTypePtr()); in GetSignature() 73 dyn_cast_or_null<FunctionProtoType>(Target->getType().getTypePtr())) { in GetSignature()
|
| /freebsd-src/contrib/llvm-project/clang/lib/Interpreter/ |
| H A D | Value.cpp | 139 llvm::dyn_cast<ConstantArrayType>(DtorTy.getTypePtr())) { in Value() 145 ArrTy->getElementType().getTypePtr()); in Value()
|