Searched refs:Conv (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTLambda.h53 if (CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(D))
54 return isLambdaConversionOperator(Conv);
56 if (CXXConversionDecl *Conv =
58 return isLambdaConversionOperator(Conv);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBExtras.h27 raw_ostream &operator<<(raw_ostream &OS, const PDB_CallingConv &Conv);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNumberObjectConversionChecker.cpp102 const Stmt *Conv = Result.Nodes.getNodeAs<Stmt>("conv"); local
103 assert(Conv);
192 Conv->getSourceRange());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBExtras.cpp72 const PDB_CallingConv &Conv) {
74 switch (Conv) {
71 operator <<(raw_ostream &OS, const PDB_CallingConv &Conv) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOverload.cpp1985 Sema::AssignConvertType Conv =
1991 switch (Conv) {
3504 CXXConversionDecl *Conv;
3507 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3509 Conv = cast<CXXConversionDecl>(D);
3517 Conv, FoundDecl, ActingContext, From, ToType, CandidateSet,
4449 ReferenceConversions &Conv = ConvOut ? *ConvOut : ConvTmp;
4450 Conv = ReferenceConversions();
4469 Conv |= ReferenceConversions::DerivedToBase;
4473 Conv |
[all...]
H A DSemaDeclCXX.cpp14476 CXXConversionDecl *Conv) {
14477 SynthesizedFunctionScope Scope(*this, Conv);
14478 assert(!Conv->getReturnType()->isUndeducedType());
14480 CXXRecordDecl *Lambda = Conv->getParent();
14484 if (auto *TemplateArgs = Conv->getTemplateSpecializationArgs()) {
14511 Invoker->setType(Conv->getReturnType()->getPointeeType());
14512 Invoker->setBody(new (Context) CompoundStmt(Conv->getLocation()));
14516 VK_LValue, Conv->getLocation());
14518 Stmt *Return = BuildReturnStmt(Conv->getLocation(), FunctionRef).get();
14519 Conv
[all...]
H A DSemaLambda.cpp1868 CXXConversionDecl *Conv,
1871 CXXRecordDecl *Lambda = Conv->getParent();
1929 Expr *BuildBlock = new (Context) BlockExpr(Block, Conv->getConversionType());
1866 BuildBlockForLambdaConversion(SourceLocation CurrentLocation, SourceLocation ConvLocation, CXXConversionDecl *Conv, Expr *Src) argument
H A DSemaCoroutine.cpp431 ExprResult Conv = S.PerformContextuallyConvertToBool(AwaitReady); local
432 if (Conv.isInvalid()) {
439 Calls.Results[ACT::ACT_Ready] = Conv.get();
H A DSemaExprCXX.cpp1954 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
1955 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
1965 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
1966 return S.Diag(Conv->getLocation(), diag::note_array_size_conversion)
3273 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
3275 return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3284 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
3286 return S.Diag(Conv->getLocation(), diag::note_delete_conversion)
3771 CXXConversionDecl *Conv = cast<CXXConversionDecl>(Method);
3772 ExprResult Result = S.BuildCXXMemberCallExpr(From, FoundDecl, Conv,
[all...]
H A DSemaInit.cpp3945 CXXConversionDecl *Conv;
3947 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3949 Conv = cast<CXXConversionDecl>(D);
3957 S.AddConversionCandidate(Conv, I.getPair(), ActingDC, Initializer,
4526 CXXConversionDecl *Conv;
4528 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
4530 Conv = cast<CXXConversionDecl>(D);
4539 Conv->getConversionType()->isLValueReferenceType())) {
4547 Conv, I.getPair(), ActingDC, Initializer, DestType, CandidateSet,
5188 CXXConversionDecl *Conv;
[all...]
H A DSemaStmt.cpp688 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
689 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
699 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
700 return S.Diag(Conv->getLocation(), diag::note_switch_conversion)
H A DSemaCodeComplete.cpp6876 ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr); local
6877 if (Conv.isInvalid()) // conversion failed. bail.
6879 RecExpr = Conv.get();
6901 ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr); local
6902 if (Conv.isUsable()) {
6903 RecExpr = Conv.get();
H A DSemaOpenMP.cpp11595 SemaDiagnosticBuilder noteExplicitConv(Sema &S, CXXConversionDecl *Conv,
11597 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
11604 SemaDiagnosticBuilder noteAmbiguous(Sema &S, CXXConversionDecl *Conv,
11606 return S.Diag(Conv->getLocation(), diag::note_omp_conversion_here)
H A DSemaExpr.cpp15046 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
15047 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
15057 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
15058 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp1502 static CanQualType GetConversionType(ASTContext &Context, NamedDecl *Conv) {
1504 cast<CXXConversionDecl>(Conv->getUnderlyingDecl()->getAsFunction())
H A DExprConstant.cpp3716 /// \param Conv - The expression for which we are performing the conversion.
3726 handleLValueToRValueConversion(EvalInfo &Info, const Expr *Conv, QualType Type,
3744 Info.FFDiag(Conv);
3751 return extractSubobject(Info, Conv, LitObj, LVal.Designator, RVal, AK);
3761 Info.FFDiag(Conv);
3766 Info.FFDiag(Conv, diag::note_constexpr_access_past_end) << AK;
3768 Info.FFDiag(Conv);
3777 CompleteObject Obj = findCompleteObject(Info, Conv, AK, LVal, Type);
3778 return Obj && extractSubobject(Info, Conv, Obj, LVal.Designator, RVal, AK);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp494 Value *Conv = new SIToFPInst(NewPHI, PN->getType(), "indvar.conv", local
496 PN->replaceAllUsesWith(Conv);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp7573 SDValue Conv = DAG.getNode(ISD::BITCAST, DL, WideVT, WideSrc); local
7574 return DAG.getVectorShuffle(WideVT, DL, Conv, DAG.getUNDEF(WideVT), ShuffV);
9328 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
9329 SDValue ReveHWord = DAG.getNode(ISD::BSWAP, dl, MVT::v8i16, Conv);
9332 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
9333 SDValue ReveWord = DAG.getNode(ISD::BSWAP, dl, MVT::v4i32, Conv);
9336 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1);
9337 SDValue ReveDWord = DAG.getNode(ISD::BSWAP, dl, MVT::v2i64, Conv);
9340 SDValue Conv = DAG.getNode(ISD::BITCAST, dl, MVT::v1i128, V1);
9341 SDValue ReveQWord = DAG.getNode(ISD::BSWAP, dl, MVT::v1i128, Conv);
[all...]
H A DPPCISelDAGToDAG.cpp2497 SDValue addExtOrTrunc(SDValue NatWidthRes, ExtOrTruncConversion Conv);
2806 ExtOrTruncConversion Conv) {
2811 if (Conv == ExtOrTruncConversion::Ext) {
2819 assert(Conv == ExtOrTruncConversion::Trunc &&
2805 addExtOrTrunc(SDValue NatWidthRes, ExtOrTruncConversion Conv) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3077 noteExplicitConv(Sema &S, CXXConversionDecl *Conv, QualType ConvTy) = 0;
3086 noteAmbiguous(Sema &S, CXXConversionDecl *Conv, QualType ConvTy) = 0;
6223 SourceLocation CurrentLoc, CXXConversionDecl *Conv);
6233 CXXConversionDecl *Conv);
6237 CXXConversionDecl *Conv,
10925 ReferenceConversions *Conv = nullptr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8150 SDValue Conv = local
8158 SDValue BFI = DAG.getNode(ARMISD::BFI, dl, MVT::i32, Conv, Ext,
8213 SDValue Conv = local
8218 SDValue Shift = DAG.getNode(ISD::SRL, dl, MVT::i32, Conv,

Completed in 1007 milliseconds