Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp452 if (ConstructorDecl && !ConstructorDecl->isMoveConstructor()) in checkPostCall()
611 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()
/openbsd/gnu/llvm/clang/lib/AST/
H A DDeclCXX.cpp801 } else if (Constructor->isMoveConstructor()) in addedMember()
1440 else if (Constructor->isMoveConstructor()) in finishedDefaultedOrDeletedMember()
1500 else if (Constructor->isMoveConstructor()) in setTrivialForCallFlags()
2698 bool CXXConstructorDecl::isMoveConstructor(unsigned &TypeQuals) const { in isMoveConstructor() function in CXXConstructorDecl
/openbsd/gnu/llvm/clang/lib/Index/
H A DIndexSymbol.cpp261 else if (CD->isMoveConstructor()) in getSymbolInfo()
/openbsd/gnu/llvm/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp120 hasMethod(cxxConstructorDecl(isMoveConstructor(), unless(isDeleted()))), in __anon5ab300100602()
H A DPathDiagnostic.cpp959 else if (CD->isMoveConstructor()) in describeCodeDecl()
H A DConsumed.cpp787 } else if (Constructor->isMoveConstructor()) { in VisitCXXConstructExpr()
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DDeclCXX.h2644 bool isMoveConstructor(unsigned &TypeQuals) const;
2648 bool isMoveConstructor() const { in isMoveConstructor() function
2650 return isMoveConstructor(TypeQuals); in isMoveConstructor()
/openbsd/gnu/llvm/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp447 REGISTER_MATCHER(isMoveConstructor); in RegistryMaps()
/openbsd/gnu/llvm/clang/lib/Analysis/FlowSensitive/Models/
H A DUncheckedOptionalAccessModel.cpp121 cxxConstructorDecl(anyOf(isCopyConstructor(), isMoveConstructor())))), in isOptionalValueOrConversionConstructor()
/openbsd/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7652 AST_MATCHER(CXXConstructorDecl, isMoveConstructor) { in AST_MATCHER() argument
7653 return Node.isMoveConstructor(); in AST_MATCHER()
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp4995 else if (Generated && Ctor->isMoveConstructor()) in BaseAndFieldInfo()
6430 (Ctor && Ctor->isMoveConstructor())) && in checkClassLevelDLLAttribute()
6570 if (Ctor->isMoveConstructor()) in getDefaultedFunctionKind()
9464 if (I->isMoveConstructor()) { in ShouldDeleteSpecialMember()
15384 MoveConstructor->isMoveConstructor() && in DefineImplicitMoveConstructor()
H A DSemaOverload.cpp6462 Constructor->isMoveConstructor()) in AddOverloadCandidate()
10406 if (Ctor->isMoveConstructor()) in ClassifyOverloadCandidate()
H A DSemaDecl.cpp18532 else if (CD->isMoveConstructor()) in ComputeSpecialMemberFunctionsEligiblity()
H A DSemaExpr.cpp18325 } else if (Constructor->isMoveConstructor()) { in MarkFunctionReferenced()
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp8844 return (Constructor && Constructor->isMoveConstructor()) ? 1 : 0; in clang_CXXConstructor_isMoveConstructor()
/openbsd/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp7851 (cxx_ctor_decl->isMoveConstructor() && in AddMethodToCXXRecordType()