Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp453 if (ConstructorDecl && !ConstructorDecl->isMoveConstructor()) in checkPostCall()
612 MisuseKind MK = CtorDec->isMoveConstructor() ? MK_Move : MK_Copy; in checkPreCall()
H A DIteratorModeling.cpp208 if (cast<CXXConstructorDecl>(Func)->isMoveConstructor()) { in checkPostCall()
H A DSmartPtrModeling.cpp386 if (CC->getDecl()->isMoveConstructor()) in evalCall()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A 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-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp115 hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))), in __anon0c1b38f70602()
H A DConsumed.cpp787 } else if (Constructor->isMoveConstructor()) { in VisitCXXConstructExpr()
H A DPathDiagnostic.cpp959 else if (CD->isMoveConstructor()) in describeCodeDecl()
H A DThreadSafety.cpp2129 if (Ctor->isMoveConstructor()) in findConstructorForByValueReturn()
/freebsd-13.1/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp261 else if (CD->isMoveConstructor()) in getSymbolInfo()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2597 bool isMoveConstructor(unsigned &TypeQuals) const;
2601 bool isMoveConstructor() const { in isMoveConstructor() function
2603 return isMoveConstructor(TypeQuals); in isMoveConstructor()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp428 REGISTER_MATCHER(isMoveConstructor); in RegistryMaps()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7246 AST_MATCHER(CXXConstructorDecl, isMoveConstructor) { in AST_MATCHER() argument
7247 return Node.isMoveConstructor(); in AST_MATCHER()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A 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()
H A DSemaOverload.cpp6301 Constructor->isMoveConstructor()) in AddOverloadCandidate()
10117 if (Ctor->isMoveConstructor()) in ClassifyOverloadCandidate()
H A DSemaExpr.cpp17134 } else if (Constructor->isMoveConstructor()) { in MarkFunctionReferenced()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7678 (cxx_ctor_decl->isMoveConstructor() && in AddMethodToCXXRecordType()