Searched refs:HasElse (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp833 bool HasElse = Else != nullptr; local
836 IfStmtBits.HasElse = HasElse;
844 if (HasElse)
852 if (HasElse)
856 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) argument
858 IfStmtBits.HasElse = HasElse;
866 bool HasElse = Else != nullptr; local
871 NumMandatoryStmtPtr + HasElse
877 CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, bool HasInit) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h167 unsigned HasElse : 1;
1918 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1929 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
1939 bool hasElseStorage() const { return IfStmtBits.HasElse; }
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp136 bool HasElse = S->getElse() != nullptr; local
141 Record.push_back(HasElse);
147 if (HasElse)
155 if (HasElse)
H A DASTReaderStmt.cpp215 bool HasElse = Record.readInt(); local
221 if (HasElse)
229 if (HasElse)
2817 /* HasElse=*/Record[ASTStmtReader::NumStmtFields + 1],

Completed in 188 milliseconds