Home
last modified time | relevance | path

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

/freebsd-14.2/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.cpp207 if (cast<CXXConstructorDecl>(Func)->isMoveConstructor()) { in checkPostCall()
H A DSmartPtrModeling.cpp386 if (CC->getDecl()->isMoveConstructor()) in evalCall()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp813 } else if (Constructor->isMoveConstructor()) in addedMember()
1477 else if (Constructor->isMoveConstructor()) in finishedDefaultedOrDeletedMember()
1538 else if (Constructor->isMoveConstructor()) in setTrivialForCallFlags()
2752 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const { in isMoveConstructor() function in CXXConstructorDecl
/freebsd-14.2/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp262 else if (CD->isMoveConstructor()) in getSymbolInfo()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp175 hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))), in __anoneb3ed5790b02()
H A DPathDiagnostic.cpp958 else if (CD->isMoveConstructor()) in describeCodeDecl()
H A DConsumed.cpp787 } else if (Constructor->isMoveConstructor()) { in VisitCXXConstructExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h2721 bool isMoveConstructor(unsigned &TypeQuals) const;
2725 bool isMoveConstructor() const { in isMoveConstructor() function
2727 return isMoveConstructor(TypeQuals); in isMoveConstructor()
/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.cpp459 REGISTER_MATCHER(isMoveConstructor); in RegistryMaps()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7928 AST_MATCHER(CXXConstructorDecl, isMoveConstructor) { in AST_MATCHER() argument
7929 return Node.isMoveConstructor(); in AST_MATCHER()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp5187 else if (Generated && Ctor->isMoveConstructor()) in BaseAndFieldInfo()
6633 (Ctor && Ctor->isMoveConstructor())) && in checkClassLevelDLLAttribute()
6773 if (Ctor->isMoveConstructor()) in getDefaultedFunctionKind()
9761 if (I->isMoveConstructor()) { in ShouldDeleteSpecialMember()
15853 MoveConstructor->isMoveConstructor() && in DefineImplicitMoveConstructor()
H A DSemaOverload.cpp6785 Constructor->isMoveConstructor()) in AddOverloadCandidate()
10828 if (Ctor->isMoveConstructor()) in ClassifyOverloadCandidate()
H A DSemaDecl.cpp19145 else if (CD->isMoveConstructor()) in ComputeSpecialMemberFunctionsEligiblity()
H A DSemaExpr.cpp18964 } else if (Constructor->isMoveConstructor()) { in MarkFunctionReferenced()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7726 (cxx_ctor_decl->isMoveConstructor() && in AddMethodToCXXRecordType()