/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | DeletedDefaultCheck.cpp | 29 isCopyAssignmentOperator(), in registerMatchers() 59 << (Assignment->isCopyAssignmentOperator() ? "copy assignment operator" in check()
|
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
D | UseEqualsDefaultCheck.cpp | 166 callee(cxxMethodDecl(isCopyAssignmentOperator())), in isCopyAssignmentAndCanBeDefaulted() 243 cxxMethodDecl(isDefinition(), isCopyAssignmentOperator(), in registerMatchers() 276 if (!SpecialFunctionDecl->isCopyAssignmentOperator() && !Body->body_empty()) in check() 280 bool ApplyFix = SpecialFunctionDecl->isCopyAssignmentOperator() || in check()
|
D | UseEqualsDeleteCheck.cpp | 33 anyOf(isCopyAssignmentOperator(), isMoveAssignmentOperator())), in registerMatchers()
|
/external/llvm-project/clang-tools-extra/clang-tidy/fuchsia/ |
D | OverloadedOperatorCheck.cpp | 20 if (CXXMethodNode->isCopyAssignmentOperator() || in AST_MATCHER()
|
/external/llvm-project/clang-tools-extra/clang-tidy/cert/ |
D | MutatingCopyCheck.cpp | 67 Finder->addMatcher(cxxMethodDecl(isCopyAssignmentOperator(), MutatesSource), in registerMatchers()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
D | CXXSelfAssignmentChecker.cpp | 45 if (!MD->isCopyAssignmentOperator() && !MD->isMoveAssignmentOperator()) in checkBeginFunction()
|
D | Iterator.cpp | 49 if (Method->isCopyAssignmentOperator()) { in isIterator()
|
D | MoveChecker.cpp | 664 if (MethodDecl->isCopyAssignmentOperator() || in checkPreCall()
|
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
D | SlicingCheck.cpp | 50 callExpr(callee(cxxMethodDecl(anyOf(isCopyAssignmentOperator(), in registerMatchers()
|
D | SpecialMemberFunctionsCheck.cpp | 47 has(cxxMethodDecl(isCopyAssignmentOperator(), in registerMatchers()
|
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | UnhandledSelfAssignmentCheck.cpp | 96 isCopyAssignmentOperator(), IsUserDefined, in registerMatchers()
|
/external/llvm-project/clang-tools-extra/clang-tidy/utils/ |
D | DeclRefExprUtils.cpp | 132 callee(cxxMethodDecl(isCopyAssignmentOperator()))) in isCopyAssignmentArgument()
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersNarrowingTest.cpp | 966 cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 968 cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 970 cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 972 cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 974 cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 976 cxxMethodDecl(isCopyAssignmentOperator()))); in TEST()
|
/external/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 292 REGISTER_MATCHER(isCopyAssignmentOperator); in RegistryMaps()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Frontend/ |
D | AnalysisConsumer.cpp | 402 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) in shouldSkipFunction()
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 583 if (Method->isCopyAssignmentOperator()) { in addedMember() 1012 } else if (D->isCopyAssignmentOperator()) in finishedDefaultedOrDeletedMember() 1588 bool CXXMethodDecl::isCopyAssignmentOperator() const { in isCopyAssignmentOperator() function in CXXMethodDecl
|
/external/llvm-project/clang/lib/Analysis/ |
D | ExprMutationAnalyzer.cpp | 123 hasMethod(cxxMethodDecl(isCopyAssignmentOperator(), in __anon6bbd7cfa0602()
|
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/ |
D | Registry.cpp | 378 REGISTER_MATCHER(isCopyAssignmentOperator); in RegistryMaps()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngineCallAndReturn.cpp | 884 if (!(MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) in isTrivialObjectAssignment()
|
/external/llvm-project/clang/unittests/ASTMatchers/ |
D | ASTMatchersTraversalTest.cpp | 2391 has(cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 2410 hasMethod(cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 2429 callee(cxxMethodDecl(isCopyAssignmentOperator()))); in TEST() 2443 isCopyAssignmentOperator(), isDefaulted()); in TEST()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 3983 AST_MATCHER(CXXMethodDecl, isCopyAssignmentOperator) { in AST_MATCHER() argument 3984 return Node.isCopyAssignmentOperator(); in AST_MATCHER()
|
/external/llvm-project/clang/lib/AST/ |
D | DeclCXX.cpp | 839 if (Method->isCopyAssignmentOperator()) { in addedMember() 1405 } else if (D->isCopyAssignmentOperator()) in finishedDefaultedOrDeletedMember() 2358 bool CXXMethodDecl::isCopyAssignmentOperator() const { in isCopyAssignmentOperator() function in CXXMethodDecl
|
D | VTableBuilder.cpp | 1562 if (A->isCopyAssignmentOperator() != B->isCopyAssignmentOperator()) in AddMethods() 1563 return A->isCopyAssignmentOperator(); in AddMethods()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngineCallAndReturn.cpp | 1026 if (!(MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) in isTrivialObjectAssignment()
|
/external/llvm-project/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 5641 AST_MATCHER(CXXMethodDecl, isCopyAssignmentOperator) { in AST_MATCHER() argument 5642 return Node.isCopyAssignmentOperator(); in AST_MATCHER()
|