Home
last modified time | relevance | path

Searched refs:isCopyAssignmentOperator (Results 1 – 25 of 52) sorted by relevance

123

/external/llvm-project/clang-tools-extra/clang-tidy/readability/
DDeletedDefaultCheck.cpp29 isCopyAssignmentOperator(), in registerMatchers()
59 << (Assignment->isCopyAssignmentOperator() ? "copy assignment operator" in check()
/external/llvm-project/clang-tools-extra/clang-tidy/modernize/
DUseEqualsDefaultCheck.cpp166 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()
DUseEqualsDeleteCheck.cpp33 anyOf(isCopyAssignmentOperator(), isMoveAssignmentOperator())), in registerMatchers()
/external/llvm-project/clang-tools-extra/clang-tidy/fuchsia/
DOverloadedOperatorCheck.cpp20 if (CXXMethodNode->isCopyAssignmentOperator() || in AST_MATCHER()
/external/llvm-project/clang-tools-extra/clang-tidy/cert/
DMutatingCopyCheck.cpp67 Finder->addMatcher(cxxMethodDecl(isCopyAssignmentOperator(), MutatesSource), in registerMatchers()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DCXXSelfAssignmentChecker.cpp45 if (!MD->isCopyAssignmentOperator() && !MD->isMoveAssignmentOperator()) in checkBeginFunction()
DIterator.cpp49 if (Method->isCopyAssignmentOperator()) { in isIterator()
DMoveChecker.cpp664 if (MethodDecl->isCopyAssignmentOperator() || in checkPreCall()
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
DSlicingCheck.cpp50 callExpr(callee(cxxMethodDecl(anyOf(isCopyAssignmentOperator(), in registerMatchers()
DSpecialMemberFunctionsCheck.cpp47 has(cxxMethodDecl(isCopyAssignmentOperator(), in registerMatchers()
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DUnhandledSelfAssignmentCheck.cpp96 isCopyAssignmentOperator(), IsUserDefined, in registerMatchers()
/external/llvm-project/clang-tools-extra/clang-tidy/utils/
DDeclRefExprUtils.cpp132 callee(cxxMethodDecl(isCopyAssignmentOperator()))) in isCopyAssignmentArgument()
/external/clang/unittests/ASTMatchers/
DASTMatchersNarrowingTest.cpp966 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/
DRegistry.cpp292 REGISTER_MATCHER(isCopyAssignmentOperator); in RegistryMaps()
/external/llvm-project/clang/lib/StaticAnalyzer/Frontend/
DAnalysisConsumer.cpp402 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) in shouldSkipFunction()
/external/clang/lib/AST/
DDeclCXX.cpp583 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/
DExprMutationAnalyzer.cpp123 hasMethod(cxxMethodDecl(isCopyAssignmentOperator(), in __anon6bbd7cfa0602()
/external/llvm-project/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp378 REGISTER_MATCHER(isCopyAssignmentOperator); in RegistryMaps()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp884 if (!(MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) in isTrivialObjectAssignment()
/external/llvm-project/clang/unittests/ASTMatchers/
DASTMatchersTraversalTest.cpp2391 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/
DASTMatchers.h3983 AST_MATCHER(CXXMethodDecl, isCopyAssignmentOperator) { in AST_MATCHER() argument
3984 return Node.isCopyAssignmentOperator(); in AST_MATCHER()
/external/llvm-project/clang/lib/AST/
DDeclCXX.cpp839 if (Method->isCopyAssignmentOperator()) { in addedMember()
1405 } else if (D->isCopyAssignmentOperator()) in finishedDefaultedOrDeletedMember()
2358 bool CXXMethodDecl::isCopyAssignmentOperator() const { in isCopyAssignmentOperator() function in CXXMethodDecl
DVTableBuilder.cpp1562 if (A->isCopyAssignmentOperator() != B->isCopyAssignmentOperator()) in AddMethods()
1563 return A->isCopyAssignmentOperator(); in AddMethods()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DExprEngineCallAndReturn.cpp1026 if (!(MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) in isTrivialObjectAssignment()
/external/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h5641 AST_MATCHER(CXXMethodDecl, isCopyAssignmentOperator) { in AST_MATCHER() argument
5642 return Node.isCopyAssignmentOperator(); in AST_MATCHER()

123