Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp913 bool HasElse = Else != nullptr; in IfStmt() local
916 IfStmtBits.HasElse = HasElse; in IfStmt()
924 if (HasElse) in IfStmt()
932 if (HasElse) in IfStmt()
936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) in IfStmt() argument
938 IfStmtBits.HasElse = HasElse; in IfStmt()
947 bool HasElse = Else != nullptr; in Create() local
952 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in Create()
958 IfStmt *IfStmt::CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, in CreateEmpty() argument
962 NumMandatoryStmtPtr + HasElse + HasVar + HasInit, HasElse), in CreateEmpty()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h167 unsigned HasElse : 1; variable
1958 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1970 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
1980 bool hasElseStorage() const { return IfStmtBits.HasElse; } in hasElseStorage()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp137 bool HasElse = S->getElse() != nullptr; in VisitIfStmt() local
142 Record.push_back(HasElse); in VisitIfStmt()
148 if (HasElse) in VisitIfStmt()
158 if (HasElse) in VisitIfStmt()
H A DASTReaderStmt.cpp217 bool HasElse = Record.readInt(); in VisitIfStmt() local
223 if (HasElse) in VisitIfStmt()
233 if (HasElse) in VisitIfStmt()