Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp440 if (ConstructorDecl && !ConstructorDecl->isMoveConstructor()) in checkPostCall()
599 MisuseKind MK = CtorDec->isMoveConstructor() ? MK_Move : MK_Copy; in checkPreCall()
H A DIteratorChecker.cpp718 if (cast<CXXConstructorDecl>(Func)->isMoveConstructor()) { in checkPostCall()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DDeclCXX.cpp747 } else if (Constructor->isMoveConstructor()) in addedMember()
1299 else if (Constructor->isMoveConstructor()) in finishedDefaultedOrDeletedMember()
1327 else if (Constructor->isMoveConstructor()) in setTrivialForCallFlags()
2370 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const { in isMoveConstructor() function in CXXConstructorDecl
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp59 hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))), in __anond759b8d20402()
H A DConsumed.cpp788 } else if (Constructor->isMoveConstructor()) { in VisitCXXConstructExpr()
H A DThreadSafety.cpp2114 if (Ctor->isMoveConstructor()) in findConstructorForByValueReturn()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Index/
H A DIndexSymbol.cpp256 else if (CD->isMoveConstructor()) in getSymbolInfo()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp375 REGISTER_MATCHER(isMoveConstructor); in RegistryMaps()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclCXX.h2635 bool isMoveConstructor(unsigned &TypeQuals) const;
2639 bool isMoveConstructor() const {
2641 return isMoveConstructor(TypeQuals);
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6018 AST_MATCHER(CXXConstructorDecl, isMoveConstructor) { in AST_MATCHER() argument
6019 return Node.isMoveConstructor(); in AST_MATCHER()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp1087 else if (CD->isMoveConstructor()) in describeCodeDecl()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclCXX.cpp4535 else if (Generated && Ctor->isMoveConstructor()) in BaseAndFieldInfo()
5730 (Ctor && Ctor->isMoveConstructor())) && in checkClassLevelDLLAttribute()
7225 if (I->isMoveConstructor()) { in ShouldDeleteSpecialMember()
12716 MoveConstructor->isMoveConstructor() && in DefineImplicitMoveConstructor()
H A DSemaOverload.cpp6041 Constructor->isMoveConstructor()) in AddOverloadCandidate()
9500 if (Ctor->isMoveConstructor()) in ClassifyOverloadCandidate()
H A DSemaDecl.cpp2815 if (Ctor->isMoveConstructor()) in getSpecialMember()
H A DSemaExpr.cpp14699 } else if (Constructor->isMoveConstructor()) { in MarkFunctionReferenced()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp8289 (cxx_ctor_decl->isMoveConstructor() && in AddMethodToCXXRecordType()