Home
last modified time | relevance | path

Searched refs:HasNRVOCandidate (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1192 bool HasNRVOCandidate = NRVOCandidate != nullptr; in ReturnStmt() local
1193 ReturnStmtBits.HasNRVOCandidate = HasNRVOCandidate; in ReturnStmt()
1194 if (HasNRVOCandidate) in ReturnStmt()
1199 ReturnStmt::ReturnStmt(EmptyShell Empty, bool HasNRVOCandidate) in ReturnStmt() argument
1201 ReturnStmtBits.HasNRVOCandidate = HasNRVOCandidate; in ReturnStmt()
1206 bool HasNRVOCandidate = NRVOCandidate != nullptr; in Create() local
1207 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), in Create()
1213 bool HasNRVOCandidate) { in CreateEmpty() argument
1214 void *Mem = Ctx.Allocate(totalSizeToAlloc<const VarDecl *>(HasNRVOCandidate), in CreateEmpty()
1216 return new (Mem) ReturnStmt(EmptyShell(), HasNRVOCandidate); in CreateEmpty()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h306 unsigned HasNRVOCandidate : 1;
3034 bool hasNRVOCandidate() const { return ReturnStmtBits.HasNRVOCandidate; }
3044 explicit ReturnStmt(EmptyShell Empty, bool HasNRVOCandidate);
3053 static ReturnStmt *CreateEmpty(const ASTContext &Ctx, bool HasNRVOCandidate);
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp328 bool HasNRVOCandidate = S->getNRVOCandidate() != nullptr; in VisitReturnStmt() local
329 Record.push_back(HasNRVOCandidate); in VisitReturnStmt()
332 if (HasNRVOCandidate) in VisitReturnStmt()
H A DASTReaderStmt.cpp340 bool HasNRVOCandidate = Record.readInt(); in VisitReturnStmt() local
343 if (HasNRVOCandidate) in VisitReturnStmt()