Searched refs:getLValueReferenceType (Results 1 – 21 of 21) sorted by relevance
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaOverload.cpp | 6959 ParamTypes[0] = S.Context.getLValueReferenceType(T); in AddBuiltinAssignmentOperatorCandidates() 6967 = S.Context.getLValueReferenceType(S.Context.getVolatileType(T)); in AddBuiltinAssignmentOperatorCandidates() 7152 S.Context.getLValueReferenceType(CandidateTy), in addPlusPlusMinusMinusStyleOverloads() 7166 S.Context.getLValueReferenceType( in addPlusPlusMinusMinusStyleOverloads() 7179 = S.Context.getLValueReferenceType( in addPlusPlusMinusMinusStyleOverloads() 7188 = S.Context.getLValueReferenceType( in addPlusPlusMinusMinusStyleOverloads() 7309 S.AddBuiltinCandidate(S.Context.getLValueReferenceType(PointeeTy), in addUnaryStarPointerOverloads() 7729 S.Context.getLValueReferenceType(*Ptr), in addAssignmentPointerOverloads() 7740 S.Context.getLValueReferenceType(S.Context.getVolatileType(*Ptr)); in addAssignmentPointerOverloads() 7749 = S.Context.getLValueReferenceType(S.Context.getRestrictType(*Ptr)); in addAssignmentPointerOverloads() [all …]
|
| HD | SemaType.cpp | 1900 return Context.getLValueReferenceType(T, SpelledAsLValue); in BuildReferenceType() 5350 return C.getLValueReferenceType(New, OldRef->isSpelledAsLValue()); in wrap() 6786 return S.Context.getLValueReferenceType(T); in getDecltypeForExpr() 6802 case VK_LValue: T = S.Context.getLValueReferenceType(T); break; in getDecltypeForExpr()
|
| HD | SemaDeclCXX.cpp | 5271 Context.getLValueReferenceType(Context.getTypeDeclType(RD)); in CheckExplicitlyDefaultedSpecialMember() 6163 << Context.getLValueReferenceType( in SpecialMemberIsTrivial() 10031 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment() 10035 ArgType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyAssignment() 10425 QualType RetType = Context.getLValueReferenceType(ArgType); in DeclareImplicitMoveAssignment() 10859 ArgType = Context.getLValueReferenceType(ArgType); in DeclareImplicitCopyConstructor()
|
| HD | SemaStmt.cpp | 2437 SemaRef.Context.getLValueReferenceType(E->getType().withConst()); in DiagnoseForRangeReferenceVariableCopies() 2484 << SemaRef.Context.getLValueReferenceType(VariableType) in DiagnoseForRangeConstVariableCopies()
|
| HD | SemaTemplateDeduction.cpp | 3137 ArgType = S.Context.getLValueReferenceType(ArgType); in AdjustFunctionParmAndArgTypesForDeduction() 4122 ArgTy = Context.getLValueReferenceType(ArgTy); in AddImplicitObjectParameterType()
|
| HD | SemaExpr.cpp | 11516 Context.getLValueReferenceType(VaListType), false); in BuildVAArgExpr() 12613 CaptureType = S.Context.getLValueReferenceType(DeclRefType); in captureInCapturedRegion() 12697 CaptureType = S.Context.getLValueReferenceType(DeclRefType); in captureInLambda() 12847 CaptureType = Context.getLValueReferenceType(DeclRefType); in tryCaptureVariable() 13956 ArgType = S.Context.getLValueReferenceType(ArgType); in VisitCallExpr() 14041 DestType = S.Context.getLValueReferenceType(DestType); in VisitImplicitCastExpr()
|
| HD | SemaExprCXX.cpp | 4615 QualType T = Self.Context.getLValueReferenceType(ToType); in TryClassUnification()
|
| HD | SemaInit.cpp | 6492 Ty = S.Context.getLValueReferenceType(Ty, in Perform()
|
| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| HD | CallEvent.cpp | 39 ResultTy = Ctx.getLValueReferenceType(ResultTy); in getResultType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ASTContext.cpp | 2398 ASTContext::getLValueReferenceType(QualType T, bool SpelledAsLValue) const { in getLValueReferenceType() function in ASTContext 2419 Canonical = getLValueReferenceType(getCanonicalType(PointeeType)); in getLValueReferenceType() 2611 result = getLValueReferenceType( in getVariableArrayDecayedType() 8014 Type = Context.getLValueReferenceType(Type); in DecodeTypeFromStr() 8105 Type = Context.getLValueReferenceType(Type); in DecodeTypeFromStr()
|
| HD | ASTDiagnostic.cpp | 132 QT = Context.getLValueReferenceType(Desugar(Context, Ty->getPointeeType(), in Desugar()
|
| HD | MicrosoftMangle.cpp | 1687 mangleArgumentType(getASTContext().getLValueReferenceType( in mangleFunctionType()
|
| HD | Type.cpp | 703 return Ctx.getLValueReferenceType(pointeeType, T->isSpelledAsLValue()); in VisitLValueReferenceType()
|
| HD | ASTImporter.cpp | 1546 return Importer.getToContext().getLValueReferenceType(ToPointeeType); in VisitLValueReferenceType()
|
| HD | ExprConstant.cpp | 8535 Ctx.getLValueReferenceType(getType()), LV)) in EvaluateAsLValue()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | ASTContext.h | 1033 QualType getLValueReferenceType(QualType T, bool SpelledAsLValue = true)
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGDebugInfo.cpp | 1301 T = CGM.getContext().getLValueReferenceType(T); in CollectTemplateParams()
|
| HD | CGExpr.cpp | 3070 QualType ToType = getContext().getLValueReferenceType(E->getType()); in EmitCastLValue()
|
| HD | MicrosoftCXXABI.cpp | 3761 getContext().getLValueReferenceType(RecordTy, in getAddrOfCXXCtorClosure()
|
| /NextBSD/contrib/llvm/tools/lldb/source/Symbol/ |
| HD | ClangASTType.cpp | 1989 return ClangASTType(m_ast, m_ast->getLValueReferenceType(GetQualType())); in GetLValueReferenceType()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReader.cpp | 5024 return Context.getLValueReferenceType(PointeeType, Record[1]); in readTypeRecord()
|