Searched refs:RefTy (Results 1 - 8 of 8) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp229 auto *RefTy = CtorDecl->getParamDecl(0)->getType()->getAs<ReferenceType>(); local
230 if (RefTy &&
231 RefTy->getPointeeType()->getCanonicalTypeUnqualified() == BoolTy) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaExceptionSpec.cpp31 else if (const ReferenceType *RefTy = T->getAs<ReferenceType>())
32 T = RefTy->getPointeeType();
679 const ReferenceType *RefTy = HandlerType->getAs<ReferenceType>(); local
680 if (RefTy)
681 HandlerType = RefTy->getPointeeType();
689 if (RefTy && (!HandlerType.isConstQualified() ||
835 if (const ReferenceType *RefTy = SubI->getAs<ReferenceType>())
836 SubI = RefTy->getPointeeType();
H A DSemaExpr.cpp12710 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
12711 if (RefTy->getPointeeType().isVolatileQualified())
13531 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
13532 if (RefTy->getPointeeType().isVolatileQualified())
18886 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) {
18887 Type = RefTy->getPointeeType();
H A DSemaOverload.cpp7898 if (const ReferenceType *RefTy = Ty->getAs<ReferenceType>())
7899 Ty = RefTy->getPointeeType();
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp2107 if (const auto *RefTy = RetTy->getAs<ReferenceType>()) {
2108 QualType PTy = RefTy->getPointeeType();
2223 if (const auto *RefTy = ParamType->getAs<ReferenceType>()) {
2224 QualType PTy = RefTy->getPointeeType();
H A DCodeGenFunction.h2377 LValue EmitLoadOfReferenceLValue(Address RefAddr, QualType RefTy, argument
2380 LValue RefLVal = MakeAddrLValue(RefAddr, RefTy, LValueBaseInfo(Source),
2381 CGM.getTBAAAccessInfo(RefTy));
H A DCGStmtOpenMP.cpp1147 if (const auto *RefTy = PrivateVD->getType()->getAs<ReferenceType>())
1150 CGM.getNaturalTypeAlignment(RefTy->getPointeeType()));
H A DCGOpenMPRuntime.cpp7078 if (const auto *RefTy = ExprTy->getAs<ReferenceType>())
7079 ExprTy = RefTy->getPointeeType().getCanonicalType();

Completed in 427 milliseconds