Home
last modified time | relevance | path

Searched refs:isCopyConstructor (Results 1 – 21 of 21) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp203 if (CtorDecl->isCopyConstructor() && ParamCount == 1) { in checkPostCall()
H A DStdVariantChecker.cpp46 return ConstructorDecl->isCopyConstructor(); in isCopyConstructorCall()
H A DIterator.cpp40 if (Ctor->isCopyConstructor()) { in isIterator()
H A DSmartPtrModeling.cpp377 if (CC->getDecl()->isCopyConstructor()) in evalCall()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp808 if (Constructor->isCopyConstructor(Quals)) { in addedMember()
1475 if (Constructor->isCopyConstructor()) in finishedDefaultedOrDeletedMember()
1536 if (Constructor->isCopyConstructor()) in setTrivialForCallFlags()
2747 CXXConstructorDecl::isCopyConstructor(unsigned &TypeQuals) const { in isCopyConstructor() function in CXXConstructorDecl
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp260 if (CD->isCopyConstructor()) in getSymbolInfo()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp177 unless(anyOf(hasMethod(cxxConstructorDecl(isCopyConstructor(), in __anoneb3ed5790b02()
H A DPathDiagnostic.cpp956 else if (CD->isCopyConstructor()) in describeCodeDecl()
H A DConsumed.cpp789 } else if (Constructor->isCopyConstructor()) { in VisitCXXConstructExpr()
H A DThreadSafety.cpp2092 if (D && D->isCopyConstructor()) { in VisitCXXConstructExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2706 bool isCopyConstructor(unsigned &TypeQuals) const;
2711 bool isCopyConstructor() const { in isCopyConstructor() function
2713 return isCopyConstructor(TypeQuals); in isCopyConstructor()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp146 cxxConstructorDecl(anyOf(isCopyConstructor(), isMoveConstructor())))), in isOptionalValueOrConversionConstructor()
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp423 REGISTER_MATCHER(isCopyConstructor); in RegistryMaps()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7913 AST_MATCHER(CXXConstructorDecl, isCopyConstructor) { in AST_MATCHER() argument
7914 return Node.isCopyConstructor(); in AST_MATCHER()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp4016 if (E->getConstructor()->isCopyConstructor()) { in VisitCXXConstructExpr()
5185 else if (Generated && Ctor->isCopyConstructor()) in BaseAndFieldInfo()
6770 if (Ctor->isCopyConstructor()) in getDefaultedFunctionKind()
6880 if (CD->isCopyConstructor() && !CD->isDeleted() && in canPassInRegisters()
14970 if (I->isCopyConstructor()) { in diagnoseDeprecatedCopyOperation()
15717 CopyConstructor->isCopyConstructor() && in DefineImplicitCopyConstructor()
H A DSemaStmt.cpp3195 if (!CE->getConstructor()->isCopyConstructor()) in DiagnoseForRangeConstVariableCopies()
H A DSemaDecl.cpp1883 return CD->isCopyConstructor(); in IsDisallowedCopyOrAssign()
12889 if (E->getConstructor()->isCopyConstructor()) { in VisitCXXConstructExpr()
19143 else if (CD->isCopyConstructor()) in ComputeSpecialMemberFunctionsEligiblity()
H A DSemaOverload.cpp1575 if (Constructor->isCopyConstructor() && in TryUserDefinedConversion()
10831 assert(Ctor->isCopyConstructor() && in ClassifyOverloadCandidate()
H A DSemaExprCXX.cpp5382 if (Constructor->isCopyConstructor(FoundTQs)) { in EvaluateUnaryTypeTrait()
H A DSemaExpr.cpp18962 } else if (Constructor->isCopyConstructor()) { in MarkFunctionReferenced()
19623 if (Ctor->isCopyConstructor()) in canCaptureVariableByCopy()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7724 (cxx_ctor_decl->isCopyConstructor() && in AddMethodToCXXRecordType()