Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdVariantChecker.cpp65 return ConstructorDecl->isMoveConstructor(); in isMoveConstructorCall()
H A DMoveChecker.cpp454 if (ConstructorDecl && !ConstructorDecl->isMoveConstructor()) in checkPostCall()
614 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/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp855 } else if (Constructor->isMoveConstructor()) in addedMember()
1520 else if (Constructor->isMoveConstructor()) in finishedDefaultedOrDeletedMember()
1581 else if (Constructor->isMoveConstructor()) in setTrivialForCallFlags()
2805 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const { in isMoveConstructor() function in CXXConstructorDecl
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp175 hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))), in __anon2875c4430b02()
H A DPathDiagnostic.cpp961 else if (CD->isMoveConstructor()) in describeCodeDecl()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp262 else if (CD->isMoveConstructor()) in getSymbolInfo()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2735 bool isMoveConstructor(unsigned &TypeQuals) const;
2739 bool isMoveConstructor() const { in isMoveConstructor() function
2741 return isMoveConstructor(TypeQuals); in isMoveConstructor()
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp231 cxxConstructorDecl(anyOf(isCopyConstructor(), isMoveConstructor())))), in isOptionalValueOrConversionConstructor()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp460 REGISTER_MATCHER(isMoveConstructor); in RegistryMaps()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7958 AST_MATCHER(CXXConstructorDecl, isMoveConstructor) { in AST_MATCHER() argument
7959 return Node.isMoveConstructor(); in AST_MATCHER()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp5041 else if (Generated && Ctor->isMoveConstructor()) in BaseAndFieldInfo()
6489 (Ctor && Ctor->isMoveConstructor())) && in checkClassLevelDLLAttribute()
6620 if (Ctor->isMoveConstructor()) in getDefaultedFunctionKind()
9668 if (I->isMoveConstructor()) { in ShouldDeleteSpecialMember()
15735 MoveConstructor->isMoveConstructor() && in DefineImplicitMoveConstructor()
H A DSemaOverload.cpp6834 Constructor->isMoveConstructor()) in AddOverloadCandidate()
10840 if (Ctor->isMoveConstructor()) in ClassifyOverloadCandidate()
H A DSemaDecl.cpp18805 else if (CD->isMoveConstructor()) in ComputeSpecialMemberFunctionsEligiblity()
H A DSemaExpr.cpp17945 } else if (Constructor->isMoveConstructor()) { in MarkFunctionReferenced()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7886 (cxx_ctor_decl->isMoveConstructor() && in AddMethodToCXXRecordType()