/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | CXXSelfAssignmentChecker.cpp | 45 if (!MD->isCopyAssignmentOperator() && !MD->isMoveAssignmentOperator()) in checkBeginFunction()
|
H A D | MoveChecker.cpp | 456 if (!ConstructorDecl && !MethodDecl->isMoveAssignmentOperator()) in checkPostCall() 660 MethodDecl->isMoveAssignmentOperator()) { in checkPreCall() 663 MethodDecl->isMoveAssignmentOperator() ? MK_Move : MK_Copy; in checkPreCall()
|
H A D | ContainerModeling.cpp | 171 if (cast<CXXMethodDecl>(Func)->isMoveAssignmentOperator()) { in checkPostCall()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
H A D | AnalysisConsumer.cpp | 410 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) in shouldSkipFunction()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
H A D | ExprMutationAnalyzer.cpp | 116 hasMethod(cxxMethodDecl(isMoveAssignmentOperator(), unless(isDeleted()))), in __anon78d823ce0602()
|
H A D | PathDiagnostic.cpp | 975 } else if (MD->isMoveAssignmentOperator()) { in describeCodeDecl()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
H A D | Registry.cpp | 427 REGISTER_MATCHER(isMoveAssignmentOperator); in RegistryMaps()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | DeclCXX.cpp | 852 if (Method->isMoveAssignmentOperator()) in addedMember() 1411 else if (D->isMoveAssignmentOperator()) in finishedDefaultedOrDeletedMember() 2399 bool CXXMethodDecl::isMoveAssignmentOperator() const { in isMoveAssignmentOperator() function in CXXMethodDecl
|
H A D | VTableBuilder.cpp | 1564 if (A->isMoveAssignmentOperator() != B->isMoveAssignmentOperator()) in AddMethods() 1565 return A->isMoveAssignmentOperator(); in AddMethods()
|
H A D | ExprConstant.cpp | 6092 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())); in HandleFunctionCall()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineCallAndReturn.cpp | 1041 if (!(MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) in isTrivialObjectAssignment()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 5946 AST_MATCHER(CXXMethodDecl, isMoveAssignmentOperator) { in AST_MATCHER() argument 5947 return Node.isMoveAssignmentOperator(); in AST_MATCHER()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaDeclCXX.cpp | 5998 MD->isMoveAssignmentOperator()) { in ReferenceDllExportedMembers() 6277 if ((MD->isMoveAssignmentOperator() || in checkClassLevelDLLAttribute() 6425 if (MD->isMoveAssignmentOperator()) in getDefaultedFunctionKind() 9203 if (I->isMoveAssignmentOperator()) { in ShouldDeleteSpecialMember() 9215 << UserDeclaredMove->isMoveAssignmentOperator(); in ShouldDeleteSpecialMember() 13752 (!Copying && Method->isMoveAssignmentOperator())) in buildSingleCopyAssignRecursively() 14388 !SMOR.getMethod()->isMoveAssignmentOperator()) in checkMoveAssignmentForRepeatedMove()
|
H A D | Sema.cpp | 1806 if ((MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in checkDeviceDecl()
|
H A D | SemaOverload.cpp | 6870 Method->isMoveAssignmentOperator()) in AddMethodCandidate() 10114 if (Meth->isMoveAssignmentOperator()) in ClassifyOverloadCandidate()
|
H A D | SemaExprCXX.cpp | 5059 &CXXMethodDecl::isMoveAssignmentOperator); in EvaluateUnaryTypeTrait()
|
H A D | SemaExpr.cpp | 307 MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) { in DiagnoseUseOfDecl() 16996 else if (MethodDecl->isMoveAssignmentOperator()) in MarkFunctionReferenced()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGExprCXX.cpp | 250 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in EmitCXXMemberOrOperatorMemberCallExpr()
|
H A D | CodeGenFunction.cpp | 1354 cast<CXXMethodDecl>(FD)->isMoveAssignmentOperator())) { in GenerateCode()
|
H A D | CGClass.cpp | 602 !D->isCopyAssignmentOperator() && !D->isMoveAssignmentOperator()) in isMemcpyEquivalentSpecialMember()
|
H A D | CGDebugInfo.cpp | 1758 Method->isMoveAssignmentOperator()) in CreateCXXMemberFunction()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
H A D | DeclCXX.h | 2030 bool isMoveAssignmentOperator() const;
|