Home
last modified time | relevance | path

Searched refs:isMoveConstructor (Results 1 – 16 of 16) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DMoveChecker.cpp453 if (ConstructorDecl && !ConstructorDecl->isMoveConstructor()) in checkPostCall()
612 MisuseKind MK = CtorDec->isMoveConstructor() ? MK_Move : MK_Copy; in checkPreCall()
DIteratorModeling.cpp208 if (cast<CXXConstructorDecl>(Func)->isMoveConstructor()) { in checkPostCall()
DSmartPtrModeling.cpp386 if (CC->getDecl()->isMoveConstructor()) in evalCall()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DDeclCXX.cpp796 } else if (Constructor->isMoveConstructor()) in addedMember()
1409 else if (Constructor->isMoveConstructor()) in finishedDefaultedOrDeletedMember()
1458 else if (Constructor->isMoveConstructor()) in setTrivialForCallFlags()
2653 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const { in isMoveConstructor() function in CXXConstructorDecl
/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
DExprMutationAnalyzer.cpp115 hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))), in __anon0263fe5b0602()
DConsumed.cpp787 } else if (Constructor->isMoveConstructor()) { in VisitCXXConstructExpr()
DPathDiagnostic.cpp959 else if (CD->isMoveConstructor()) in describeCodeDecl()
DThreadSafety.cpp2129 if (Ctor->isMoveConstructor()) in findConstructorForByValueReturn()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Index/
DIndexSymbol.cpp261 else if (CD->isMoveConstructor()) in getSymbolInfo()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DDeclCXX.h2597 bool isMoveConstructor(unsigned &TypeQuals) const;
2601 bool isMoveConstructor() const { in isMoveConstructor() function
2603 return isMoveConstructor(TypeQuals); in isMoveConstructor()
/freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp428 REGISTER_MATCHER(isMoveConstructor); in RegistryMaps()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
DASTMatchers.h7246 AST_MATCHER(CXXConstructorDecl, isMoveConstructor) { in AST_MATCHER() argument
7247 return Node.isMoveConstructor(); in AST_MATCHER()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaDeclCXX.cpp4874 else if (Generated && Ctor->isMoveConstructor()) in BaseAndFieldInfo()
6278 (Ctor && Ctor->isMoveConstructor())) && in checkClassLevelDLLAttribute()
6418 if (Ctor->isMoveConstructor()) in getDefaultedFunctionKind()
9198 if (I->isMoveConstructor()) { in ShouldDeleteSpecialMember()
15066 MoveConstructor->isMoveConstructor() && in DefineImplicitMoveConstructor()
DSemaOverload.cpp6301 Constructor->isMoveConstructor()) in AddOverloadCandidate()
10117 if (Ctor->isMoveConstructor()) in ClassifyOverloadCandidate()
DSemaExpr.cpp17144 } else if (Constructor->isMoveConstructor()) { in MarkFunctionReferenced()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.cpp7678 (cxx_ctor_decl->isMoveConstructor() && in AddMethodToCXXRecordType()