Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/AST/
H A DStmt.cpp926 bool HasElse = Else != nullptr; in IfStmt() local
929 IfStmtBits.HasElse = HasElse; in IfStmt()
937 if (HasElse) in IfStmt()
945 if (HasElse) in IfStmt()
949 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) in IfStmt() argument
951 IfStmtBits.HasElse = HasElse; in IfStmt()
960 bool HasElse = Else != nullptr; in Create() local
965 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in Create()
971 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, in CreateEmpty() argument
975 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in CreateEmpty()
[all …]
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DStmt.h172 unsigned HasElse : 1; in alignas() local
2003 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
2015 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
2025 bool hasElseStorage() const { return IfStmtBits.HasElse; } in hasElseStorage()
/openbsd/gnu/llvm/clang/lib/Serialization/
H A DASTWriterStmt.cpp140 bool HasElse = S->getElse() != nullptr; in VisitIfStmt() local
144 Record.push_back(HasElse); in VisitIfStmt()
150 if (HasElse) in VisitIfStmt()
160 if (HasElse) in VisitIfStmt()
H A DASTReaderStmt.cpp221 bool HasElse = Record.readInt(); in VisitIfStmt() local
228 if (HasElse) in VisitIfStmt()
238 if (HasElse) in VisitIfStmt()