Searched refs:HasInit (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp835 bool HasInit = Init != nullptr; local
838 IfStmtBits.HasInit = HasInit;
848 if (HasInit)
856 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) argument
860 IfStmtBits.HasInit = HasInit;
868 bool HasInit = Init != nullptr; local
871 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse),
878 bool HasInit) {
877 CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, bool HasInit) argument
952 bool HasInit = Init != nullptr; local
968 SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar) argument
977 bool HasInit = Init != nullptr; local
985 CreateEmpty(const ASTContext &Ctx, bool HasInit, bool HasVar) argument
[all...]
H A DODRHash.cpp297 const bool HasInit = D->hasInit(); local
298 Hash.AddBoolean(HasInit);
299 if (HasInit) {
H A DExprCXX.cpp240 bool HasInit = Initializer != nullptr; local
245 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
255 bool HasInit, unsigned NumPlacementArgs,
259 IsArray + HasInit + NumPlacementArgs, IsParenTypeId),
254 CreateEmpty(const ASTContext &Ctx, bool IsArray, bool HasInit, unsigned NumPlacementArgs, bool IsParenTypeId) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h173 unsigned HasInit : 1;
185 unsigned HasInit : 1;
1918 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1930 bool HasInit);
1933 bool hasInitStorage() const { return IfStmtBits.HasInit; }
2117 explicit SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar);
2126 static SwitchStmt *CreateEmpty(const ASTContext &Ctx, bool HasInit,
2130 bool hasInitStorage() const { return SwitchStmtBits.HasInit; }
H A DExprCXX.h2183 bool HasInit, unsigned NumPlacementArgs,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp217 bool HasInit = Record.readInt(); local
225 if (HasInit)
236 bool HasInit = Record.readInt(); local
244 if (HasInit)
1845 bool HasInit = Record.readInt(); local
1855 assert((HasInit == E->hasInitializer()) && "Wrong HasInit!");
1860 (void)HasInit;
2819 /* HasInit=*/Record[ASTStmtReader::NumStmtFields + 3]);
2825 /* HasInit
[all...]
H A DASTWriterStmt.cpp138 bool HasInit = S->getInit() != nullptr; local
143 Record.push_back(HasInit);
151 if (HasInit)
164 bool HasInit = S->getInit() != nullptr; local
166 Record.push_back(HasInit);
172 if (HasInit)

Completed in 123 milliseconds