/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CXXSelfAssignmentChecker.cpp | 45 if (!MD->isCopyAssignmentOperator() && !MD->isMoveAssignmentOperator()) in checkBeginFunction()
|
H A D | MoveChecker.cpp | 455 if (!ConstructorDecl && !MethodDecl->isMoveAssignmentOperator()) in checkPostCall() 659 MethodDecl->isMoveAssignmentOperator()) { in checkPreCall() 662 MethodDecl->isMoveAssignmentOperator() ? MK_Move : MK_Copy; in checkPreCall()
|
H A D | ContainerModeling.cpp | 157 if (cast<CXXMethodDecl>(Func)->isMoveAssignmentOperator()) { in checkPostCall()
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Frontend/ |
H A D | AnalysisConsumer.cpp | 415 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) in shouldSkipFunction()
|
/openbsd/gnu/llvm/clang/lib/Analysis/ |
H A D | ExprMutationAnalyzer.cpp | 121 hasMethod(cxxMethodDecl(isMoveAssignmentOperator(), unless(isDeleted()))), in __anon5ab300100602()
|
H A D | PathDiagnostic.cpp | 975 } else if (MD->isMoveAssignmentOperator()) { in describeCodeDecl()
|
/openbsd/gnu/llvm/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 446 REGISTER_MATCHER(isMoveAssignmentOperator); in RegistryMaps()
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | DeclCXX.cpp | 846 if (Method->isMoveAssignmentOperator()) in addedMember() 1451 else if (D->isMoveAssignmentOperator()) in finishedDefaultedOrDeletedMember() 2431 bool CXXMethodDecl::isMoveAssignmentOperator() const { in isMoveAssignmentOperator() function in CXXMethodDecl
|
H A D | VTableBuilder.cpp | 1565 if (A->isMoveAssignmentOperator() != B->isMoveAssignmentOperator()) in AddMethods() 1566 return A->isMoveAssignmentOperator(); in AddMethods()
|
/openbsd/gnu/llvm/clang/lib/Analysis/FlowSensitive/Models/ |
H A D | UncheckedOptionalAccessModel.cpp | 130 anyOf(isCopyAssignmentOperator(), isMoveAssignmentOperator())))), in isOptionalValueOrConversionAssignment()
|
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineCallAndReturn.cpp | 1209 if (!(MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) in isTrivialObjectAssignment()
|
/openbsd/gnu/llvm/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 6152 AST_MATCHER(CXXMethodDecl, isMoveAssignmentOperator) { in AST_MATCHER() argument 6153 return Node.isMoveAssignmentOperator(); in AST_MATCHER()
|
/openbsd/gnu/llvm/clang/lib/Sema/ |
H A D | Sema.cpp | 1929 if ((MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in checkTypeSupport()
|
H A D | SemaDeclCXX.cpp | 6151 MD->isMoveAssignmentOperator()) { in ReferenceDllExportedMembers() 6429 if ((MD->isMoveAssignmentOperator() || in checkClassLevelDLLAttribute() 6577 if (MD->isMoveAssignmentOperator()) in getDefaultedFunctionKind() 9476 if (I->isMoveAssignmentOperator()) { in ShouldDeleteSpecialMember() 9488 << UserDeclaredMove->isMoveAssignmentOperator(); in ShouldDeleteSpecialMember() 14256 (!Copying && Method->isMoveAssignmentOperator())) in buildSingleCopyAssignRecursively() 14896 !SMOR.getMethod()->isMoveAssignmentOperator()) in checkMoveAssignmentForRepeatedMove()
|
H A D | SemaTemplateInstantiateDecl.cpp | 2534 if (D->isMoveAssignmentOperator() || D->isCopyAssignmentOperator()) in VisitCXXMethodDecl()
|
H A D | SemaOverload.cpp | 7053 Method->isMoveAssignmentOperator()) in AddMethodCandidate() 10420 if (Meth->isMoveAssignmentOperator()) in ClassifyOverloadCandidate()
|
H A D | SemaExprCXX.cpp | 5273 &CXXMethodDecl::isMoveAssignmentOperator); in EvaluateUnaryTypeTrait()
|
H A D | SemaExpr.cpp | 320 MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) { in DiagnoseUseOfDecl() 18348 else if (MethodDecl->isMoveAssignmentOperator()) in MarkFunctionReferenced()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CGExprCXX.cpp | 252 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in EmitCXXMemberOrOperatorMemberCallExpr()
|
H A D | CodeGenFunction.cpp | 1451 cast<CXXMethodDecl>(FD)->isMoveAssignmentOperator())) { in GenerateCode()
|
H A D | CGClass.cpp | 601 !D->isCopyAssignmentOperator() && !D->isMoveAssignmentOperator()) in isMemcpyEquivalentSpecialMember()
|
H A D | CGDebugInfo.cpp | 1853 Method->isMoveAssignmentOperator()) in CreateCXXMemberFunction()
|
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | DeclCXX.h | 2078 bool isMoveAssignmentOperator() const;
|
/openbsd/gnu/llvm/clang/tools/libclang/ |
H A D | CIndex.cpp | 8947 return (Method && Method->isMoveAssignmentOperator()) ? 1 : 0; in clang_CXXMethod_isMoveAssignmentOperator()
|
/openbsd/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 7862 (cxx_method_decl->isMoveAssignmentOperator() && in AddMethodToCXXRecordType()
|