Home
last modified time | relevance | path

Searched refs:IsMove (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTaggedUnionModeling.h66 bool IsMove = isMoveConstructorCall(Call) || isMoveAssignmentCall(Call); in handleConstructorAndAssignment() local
68 if (IsCopy || IsMove) { in handleConstructorAndAssignment()
79 if (IsMove) in handleConstructorAndAssignment()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGNonTrivialStruct.cpp77 template <class Derived, bool IsMove>
79 CopiedTypeVisitor<Derived, IsMove> {
81 using Super = CopiedTypeVisitor<Derived, IsMove>;
233 template <bool IsMove>
234 struct GenBinaryFuncName : CopyStructVisitor<GenBinaryFuncName<IsMove>, IsMove>,
235 GenFuncNameBase<GenBinaryFuncName<IsMove>> {
239 : CopyStructVisitor<GenBinaryFuncName<IsMove>, IsMove>(Ctx) { in GenBinaryFuncName()
506 template <class Derived, bool IsMove>
507 struct GenBinaryFunc : CopyStructVisitor<Derived, IsMove>,
509 GenBinaryFunc(ASTContext &Ctx) : CopyStructVisitor<Derived, IsMove>(Ctx) {} in GenBinaryFunc()
/src/contrib/llvm-project/clang/include/clang/AST/
H A DNonTrivialTypeVisitor.h77 template <class Derived, bool IsMove, class RetTy = void>
81 IsMove ? FT.isNonTrivialToPrimitiveDestructiveMove() in visit()