Home
last modified time | relevance | path

Searched refs:isMoveAssignmentOperator (Results 1 – 23 of 23) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCXXSelfAssignmentChecker.cpp45 if (!MD->isCopyAssignmentOperator() && !MD->isMoveAssignmentOperator()) in checkBeginFunction()
H A DMoveChecker.cpp456 if (!ConstructorDecl && !MethodDecl->isMoveAssignmentOperator()) in checkPostCall()
660 MethodDecl->isMoveAssignmentOperator()) { in checkPreCall()
663 MethodDecl->isMoveAssignmentOperator() ? MK_Move : MK_Copy; in checkPreCall()
H A DContainerModeling.cpp171 if (cast<CXXMethodDecl>(Func)->isMoveAssignmentOperator()) { in checkPostCall()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.cpp422 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) in shouldSkipFunction()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp116 hasMethod(cxxMethodDecl(isMoveAssignmentOperator(), unless(isDeleted()))), in __anon0c1b38f70602()
H A DPathDiagnostic.cpp975 } else if (MD->isMoveAssignmentOperator()) { in describeCodeDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp427 REGISTER_MATCHER(isMoveAssignmentOperator); in RegistryMaps()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp1564 if (A->isMoveAssignmentOperator() != B->isMoveAssignmentOperator()) in AddMethods()
1565 return A->isMoveAssignmentOperator(); in AddMethods()
H A DDeclCXX.cpp859 if (Method->isMoveAssignmentOperator()) in addedMember()
1420 else if (D->isMoveAssignmentOperator()) in finishedDefaultedOrDeletedMember()
2385 bool CXXMethodDecl::isMoveAssignmentOperator() const { in isMoveAssignmentOperator() function in CXXMethodDecl
H A DExprConstant.cpp6095 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())); in HandleFunctionCall()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCallAndReturn.cpp1041 if (!(MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) in isTrivialObjectAssignment()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h5958 AST_MATCHER(CXXMethodDecl, isMoveAssignmentOperator) { in AST_MATCHER() argument
5959 return Node.isMoveAssignmentOperator(); in AST_MATCHER()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp5998 MD->isMoveAssignmentOperator()) { in ReferenceDllExportedMembers()
6277 if ((MD->isMoveAssignmentOperator() || in checkClassLevelDLLAttribute()
6425 if (MD->isMoveAssignmentOperator()) in getDefaultedFunctionKind()
9210 if (I->isMoveAssignmentOperator()) { in ShouldDeleteSpecialMember()
9222 << UserDeclaredMove->isMoveAssignmentOperator(); in ShouldDeleteSpecialMember()
13944 (!Copying && Method->isMoveAssignmentOperator())) in buildSingleCopyAssignRecursively()
14578 !SMOR.getMethod()->isMoveAssignmentOperator()) in checkMoveAssignmentForRepeatedMove()
H A DSema.cpp1864 if ((MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in checkDeviceDecl()
H A DSemaOverload.cpp6866 Method->isMoveAssignmentOperator()) in AddMethodCandidate()
10131 if (Meth->isMoveAssignmentOperator()) in ClassifyOverloadCandidate()
H A DSemaExprCXX.cpp5107 &CXXMethodDecl::isMoveAssignmentOperator); in EvaluateUnaryTypeTrait()
H A DSemaExpr.cpp312 MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) { in DiagnoseUseOfDecl()
17157 else if (MethodDecl->isMoveAssignmentOperator()) in MarkFunctionReferenced()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp250 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in EmitCXXMemberOrOperatorMemberCallExpr()
H A DCodeGenFunction.cpp1368 cast<CXXMethodDecl>(FD)->isMoveAssignmentOperator())) { in GenerateCode()
H A DCGClass.cpp599 !D->isCopyAssignmentOperator() && !D->isMoveAssignmentOperator()) in isMemcpyEquivalentSpecialMember()
H A DCGDebugInfo.cpp1739 Method->isMoveAssignmentOperator()) in CreateCXXMemberFunction()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2032 bool isMoveAssignmentOperator() const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7689 (cxx_method_decl->isMoveAssignmentOperator() && in AddMethodToCXXRecordType()