Home
last modified time | relevance | path

Searched refs:getLValueReferenceType (Results 1 – 25 of 34) sorted by relevance

12

/llvm-project-15.0.7/clang/unittests/AST/
H A DSizelessTypesTest.cpp55 Ctx.getLValueReferenceType(Ctx.SveBoolTy)->isSizelessBuiltinType()); in TEST_F()
84 ASSERT_FALSE(Ctx.getLValueReferenceType(Ctx.SveBoolTy)->isSizelessType()); in TEST_F()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/performance/
H A DImplicitConversionInLoopCheck.cpp94 QualType ConstRefType = Context->getLValueReferenceType(ConstType); in reportAndFix()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DCastValueChecker.cpp189 return ACtx.getLValueReferenceType(toAlign); in alignReferenceTypes()
191 return ACtx.getLValueReferenceType(toAlign); in alignReferenceTypes()
H A DErrnoModeling.cpp166 ACtx.getLValueReferenceType(ACtx.IntTy), C.blockCount(), &ErrnoDecl); in checkBeginFunction()
/llvm-project-15.0.7/clang-tools-extra/clangd/refactor/tweaks/
H A DMemberwiseConstructor.cpp231 ParamType = Class->getASTContext().getLValueReferenceType( in buildCode()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DLoopConvertCheck.cpp648 Type = Context->getLValueReferenceType(Context->getConstType(Type)); in doConversion()
653 Type = Context->getLValueReferenceType(Type); in doConversion()
/llvm-project-15.0.7/clang/lib/AST/
H A DQualTypeNames.cpp417 QT = Ctx.getLValueReferenceType(QT); in getFullyQualifiedType()
H A DASTContext.cpp3405 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { in getLValueReferenceType() function in ASTContext
3427 Canonical = getLValueReferenceType(getCanonicalType(PointeeType)); in getLValueReferenceType()
3637 result = getLValueReferenceType( in getVariableArrayDecayedType()
5624 return getLValueReferenceType(T); in getReferenceQualifiedType()
11138 Type = Context.getLValueReferenceType(Type); in DecodeTypeFromStr()
11244 Type = Context.getLValueReferenceType(Type); in DecodeTypeFromStr()
H A DASTDiagnostic.cpp220 QT = Context.getLValueReferenceType( in desugarForDiagnostic()
H A DExprCXX.cpp1582 return Context.getLValueReferenceType(getType()); in getParameterType()
H A DExprConstant.cpp106 return Ctx.getLValueReferenceType(E->getType()); in getStorageType()
4192 Info.Ctx.getLValueReferenceType(LValType)); in findCompleteObject()
5626 Info.Ctx.getLValueReferenceType(This.Designator.getType(Info.Ctx)); in checkDynamicType()
6447 << Printable.getAsString(Info.Ctx, Info.Ctx.getLValueReferenceType(T)); in HandleDestructionImpl()
15054 Ctx.getLValueReferenceType(getType()), LV, in EvaluateAsLValue()
H A DMicrosoftMangle.cpp2606 mangleFunctionArgumentType(getASTContext().getLValueReferenceType( in mangleFunctionType()
H A DType.cpp929 return Ctx.getLValueReferenceType(pointeeType, T->isSpelledAsLValue()); in VisitLValueReferenceType()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaOverload.cpp8156 ParamTypes[0] = S.Context.getLValueReferenceType( in AddBuiltinAssignmentOperatorCandidates()
8164 ParamTypes[0] = S.Context.getLValueReferenceType( in AddBuiltinAssignmentOperatorCandidates()
8264 return S.Context.getLValueReferenceType(Base); in makeQualifiedLValueReferenceType()
8354 S.Context.getLValueReferenceType(CandidateTy), in addPlusPlusMinusMinusStyleOverloads()
8365 S.Context.getLValueReferenceType( in addPlusPlusMinusMinusStyleOverloads()
8375 = S.Context.getLValueReferenceType( in addPlusPlusMinusMinusStyleOverloads()
8381 = S.Context.getLValueReferenceType( in addPlusPlusMinusMinusStyleOverloads()
8918 S.Context.getLValueReferenceType(PtrTy), in addAssignmentPointerOverloads()
8960 S.Context.getLValueReferenceType(PtrTy), in addAssignmentPointerOverloads()
8972 ParamTypes[0] = S.Context.getLValueReferenceType( in addAssignmentPointerOverloads()
[all …]
H A DSemaStmt.cpp3117 ReferenceReturnType = SemaRef.Context.getLValueReferenceType(E->getType()); in DiagnoseForRangeReferenceVariableCopies()
3136 SemaRef.Context.getLValueReferenceType(E->getType().withConst()); in DiagnoseForRangeReferenceVariableCopies()
3199 << SemaRef.Context.getLValueReferenceType(VariableType) in DiagnoseForRangeConstVariableCopies()
H A DSemaCoroutine.cpp86 : S.Context.getLValueReferenceType(T, /*SpelledAsLValue*/ true); in lookupPromiseType()
H A DSemaDeclCXX.cpp7474 QualType ExpectedReturnType = Context.getLValueReferenceType(DeclType); in CheckExplicitlyDefaultedSpecialMember()
8586 Context.getLValueReferenceType(PlainTy.withConst()); in CheckExplicitlyDefaultedComparison()
9794 << Context.getLValueReferenceType( in SpecialMemberIsTrivial()
14338 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment()
14343 ArgType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment()
14676 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitMoveAssignment()
15053 ArgType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyConstructor()
H A DSemaTemplateDeduction.cpp3760 ArgType = S.Context.getLValueReferenceType(ArgType); in AdjustFunctionParmAndArgTypesForDeduction()
4938 ArgTy = Context.getLValueReferenceType(ArgTy); in AddImplicitObjectParameterType()
H A DSemaType.cpp2255 return Context.getLValueReferenceType(T, SpelledAsLValue); in BuildReferenceType()
7131 return C.getLValueReferenceType(New, OldRef->isSpelledAsLValue()); in wrap()
9191 return Context.getLValueReferenceType(T); in getDecltypeForExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DTypeProperties.td69 return ctx.getLValueReferenceType(pointeeTypeAsWritten,
H A DASTContext.h1432 QualType getLValueReferenceType(QualType T, bool SpelledAsLValue = true)
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp264 ExTy = getContext().getLValueReferenceType(ExTy); in handleLValueBitCast()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DEasilySwappableParametersCheck.cpp680 [&Ctx](QualType QT) { return Ctx.getLValueReferenceType(QT); }); in calculateMixability()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp859 pointer_type = m_clang.getASTContext().getLValueReferenceType(pointee_type); in CreatePointerType()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBlocks.cpp567 CGF.getContext().getLValueReferenceType(VD->getType()) : VD->getType(); in getCaptureFieldType()

12