Home
last modified time | relevance | path

Searched refs:isCopyAssignmentOperator (Results 1 – 24 of 24) 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 DIterator.cpp49 if (Method->isCopyAssignmentOperator()) { in isIterator()
H A DMoveChecker.cpp659 if (MethodDecl->isCopyAssignmentOperator() || in checkPreCall()
/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.cpp119 hasMethod(cxxMethodDecl(isCopyAssignmentOperator(), in __anon0c1b38f70602()
H A DPathDiagnostic.cpp972 } else if (MD->isCopyAssignmentOperator()) { in describeCodeDecl()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp395 REGISTER_MATCHER(isCopyAssignmentOperator); in RegistryMaps()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp1562 if (A->isCopyAssignmentOperator() != B->isCopyAssignmentOperator()) in AddMethods()
1563 return A->isCopyAssignmentOperator(); in AddMethods()
H A DDeclCXX.cpp850 if (Method->isCopyAssignmentOperator()) { in addedMember()
1418 } else if (D->isCopyAssignmentOperator()) in finishedDefaultedOrDeletedMember()
2364 bool CXXMethodDecl::isCopyAssignmentOperator() const { in isCopyAssignmentOperator() 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.h5941 AST_MATCHER(CXXMethodDecl, isCopyAssignmentOperator) { in AST_MATCHER() argument
5942 return Node.isCopyAssignmentOperator(); in AST_MATCHER()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp250 (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in EmitCXXMemberOrOperatorMemberCallExpr()
H A DCodeGenFunction.cpp1367 (cast<CXXMethodDecl>(FD)->isCopyAssignmentOperator() || in GenerateCode()
H A DCGClass.cpp599 !D->isCopyAssignmentOperator() && !D->isMoveAssignmentOperator()) in isMemcpyEquivalentSpecialMember()
H A DCGDebugInfo.cpp1738 if (Method->isCopyAssignmentOperator() || in CreateCXXMemberFunction()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSema.cpp1864 if ((MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) && in checkDeviceDecl()
H A DSemaDeclCXX.cpp5997 MD->isCopyAssignmentOperator() || in ReferenceDllExportedMembers()
6422 if (MD->isCopyAssignmentOperator()) in getDefaultedFunctionKind()
13943 if (Method->isCopyAssignmentOperator() || in buildSingleCopyAssignRecursively()
14231 if (I->isCopyAssignmentOperator()) { in diagnoseDeprecatedCopyOperation()
H A DSemaExprCXX.cpp5094 &CXXMethodDecl::isCopyAssignmentOperator); in EvaluateUnaryTypeTrait()
H A DSemaExpr.cpp312 MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator())) { in DiagnoseUseOfDecl()
17155 if (MethodDecl->isCopyAssignmentOperator()) in MarkFunctionReferenced()
H A DSemaOverload.cpp10134 if (Meth->isCopyAssignmentOperator()) in ClassifyOverloadCandidate()
H A DSemaDecl.cpp1652 return D->isCopyAssignmentOperator(); in IsDisallowedCopyOrAssign()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2029 bool isCopyAssignmentOperator() const;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7687 } else if ((cxx_method_decl->isCopyAssignmentOperator() && in AddMethodToCXXRecordType()