Searched refs:QT (Results 51 - 70 of 70) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp3841 QualType QT = TDNDecl->getUnderlyingType(); local
3842 if (QT->isPointerType()) {
3843 QT = QT->getPointeeType();
3844 if (const RecordType *RT = QT->getAs<RecordType>())
H A DSemaExprCXX.cpp672 getUuidAttrOfType(Sema &SemaRef, QualType QT, argument
675 const Type *Ty = QT.getTypePtr();
676 if (QT->isPointerType() || QT->isReferenceType())
677 Ty = QT->getPointeeType().getTypePtr();
678 else if (QT->isArrayType())
H A DSemaType.cpp2864 QualType QT = Ty.get(); local
2865 if (QT.isNull()) {
2871 if (const LocInfoType *LIT = dyn_cast<LocInfoType>(QT)) {
2872 QT = LIT->getType();
2877 return QT;
H A DSemaDeclObjC.cpp5163 QualType QT = Context.getBaseElementType(Iv->getType()); local
5164 if (QT->isRecordType())
H A DSemaExpr.cpp3594 QualType QT = E->getType();
3595 if (!QT->isIntegerType() || QT->isBooleanType() || QT->isCharType()) {
3596 Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_type) << QT;
8882 /// This helper function returns true if QT is a vector type that has element
8884 static bool isVector(QualType QT, QualType ElementType) { argument
8885 if (const VectorType *VT = QT->getAs<VectorType>())
H A DSemaOpenMP.cpp1004 void addMappedClassesQualTypes(QualType QT) {
1006 StackElem.MappedClassesQualTypes.insert(QT);
1010 bool isClassPreviouslyMapped(QualType QT) const {
1012 return StackElem.MappedClassesQualTypes.count(QT) != 0;
H A DSemaDeclCXX.cpp12905 auto QT = Context.getFunctionType(ResultTy, Args, EPI);
12906 SpecialMem->setType(QT);
H A DSemaOverload.cpp1605 QualType QT = Context.getFunctionType(FromFPT->getReturnType(),
1607 FromFn = QT->getAs<FunctionType>();
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1732 llvm::Constant *CodeGenModule::getNullPointer(llvm::PointerType *T, QualType QT) { argument
1733 return getTargetCodeGenInfo().getNullPointer(*this, T, QT);
H A DCodeGenModule.h1397 /// \param QT is the clang QualType of the null pointer.
1398 llvm::Constant *getNullPointer(llvm::PointerType *T, QualType QT);
H A DCGClass.cpp2334 QualType QT = *(FPT->param_type_begin()); local
2335 llvm::Type *t = CGM.getTypes().ConvertType(QT);
2337 Args.add(RValue::get(Src.getPointer()), QT); local
H A DCodeGenFunction.h3884 static std::string getNonTrivialCopyConstructorStr(QualType QT,
3890 static std::string getNonTrivialDestructorStr(QualType QT,
H A DCGExprScalar.cpp381 Value *EmitPointerToBoolConversion(Value *V, QualType QT) { argument
382 Value *Zero = CGF.CGM.getNullPointer(cast<llvm::PointerType>(V->getType()), QT);
H A DCGObjCMac.cpp988 Qualifiers::ObjCLifetime getBlockCaptureLifetime(QualType QT, bool ByrefLayout);
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp493 QualType QT = Getter->getReturnType(); local
494 if (!QT->isRealType())
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3623 QualifierCollector::apply(const ASTContext &Context, QualType QT) const {
3625 return QT.withFastQualifiers(getFastQualifiers());
3627 return Context.getQualifiedType(QT, *this);
H A DExprConstant.cpp3633 bool checkConst(QualType QT) {
3635 if (QT.isConstQualified()) {
3636 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
4070 bool checkConst(QualType QT) {
4072 if (QT.isConstQualified()) {
4073 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
4208 bool checkConst(QualType QT) {
4210 if (QT.isConstQualified()) {
4211 Info.FFDiag(E, diag::note_constexpr_modify_const_type) << QT;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseExpr.cpp2984 QualType QT = Ty.get().get().getCanonicalType(); local
2985 if (QT->isVectorType())
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DType.h6357 QualType apply(const ASTContext &Context, QualType QT) const;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2483 void checkNonTrivialCUnion(QualType QT, SourceLocation Loc,

Completed in 795 milliseconds

123