Searched refs:HasInit (Results 1 – 7 of 7) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Stmt.cpp | 915 bool HasInit = Init != nullptr; in IfStmt() local 918 IfStmtBits.HasInit = HasInit; in IfStmt() 928 if (HasInit) in IfStmt() 936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) in IfStmt() argument 940 IfStmtBits.HasInit = HasInit; in IfStmt() 949 bool HasInit = Init != nullptr; in Create() local 952 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in Create() 959 bool HasInit) { in CreateEmpty() argument 962 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in CreateEmpty() 964 return new (Mem) IfStmt(EmptyShell(), HasElse, HasVar, HasInit); in CreateEmpty() [all …]
|
| H A D | ODRHash.cpp | 297 const bool HasInit = D->hasInit(); in VisitVarDecl() local 298 Hash.AddBoolean(HasInit); in VisitVarDecl() 299 if (HasInit) { in VisitVarDecl()
|
| H A D | ExprCXX.cpp | 252 bool HasInit = Initializer != nullptr; in Create() local 257 IsArray + HasInit + NumPlacementArgs, IsParenTypeId), in Create() 267 bool HasInit, unsigned NumPlacementArgs, in CreateEmpty() argument 271 IsArray + HasInit + NumPlacementArgs, IsParenTypeId), in CreateEmpty()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Stmt.h | 173 unsigned HasInit : 1; variable 185 unsigned HasInit : 1; variable 1958 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit); 1971 bool HasInit); 1974 bool hasInitStorage() const { return IfStmtBits.HasInit; } in hasInitStorage() 2166 explicit SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar); 2176 static SwitchStmt *CreateEmpty(const ASTContext &Ctx, bool HasInit, 2180 bool hasInitStorage() const { return SwitchStmtBits.HasInit; } in hasInitStorage()
|
| H A D | ExprCXX.h | 2229 bool HasInit, unsigned NumPlacementArgs,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 139 bool HasInit = S->getInit() != nullptr; in VisitIfStmt() local 144 Record.push_back(HasInit); in VisitIfStmt() 152 if (HasInit) in VisitIfStmt() 167 bool HasInit = S->getInit() != nullptr; in VisitSwitchStmt() local 169 Record.push_back(HasInit); in VisitSwitchStmt() 175 if (HasInit) in VisitSwitchStmt()
|
| H A D | ASTReaderStmt.cpp | 219 bool HasInit = Record.readInt(); in VisitIfStmt() local 227 if (HasInit) in VisitIfStmt() 240 bool HasInit = Record.readInt(); in VisitSwitchStmt() local 248 if (HasInit) in VisitSwitchStmt() 1860 bool HasInit = Record.readInt(); in VisitCXXNewExpr() local 1870 assert((HasInit == E->hasInitializer()) && "Wrong HasInit!"); in VisitCXXNewExpr() 1875 (void)HasInit; in VisitCXXNewExpr()
|