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

/netbsd-current/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp913 bool HasElse = Else != nullptr; local
916 IfStmtBits.HasElse = HasElse;
924 if (HasElse)
932 if (HasElse)
936 IfStmt::IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit) argument
938 IfStmtBits.HasElse = HasElse;
947 bool HasElse = Else != nullptr; local
952 NumMandatoryStmtPtr + HasElse
958 CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar, bool HasInit) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp137 bool HasElse = S->getElse() != nullptr; local
142 Record.push_back(HasElse);
148 if (HasElse)
158 if (HasElse)
H A DASTReaderStmt.cpp217 bool HasElse = Record.readInt(); local
223 if (HasElse)
233 if (HasElse)
2735 /* HasElse=*/Record[ASTStmtReader::NumStmtFields + 1],
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h167 unsigned HasElse : 1;
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; }

Completed in 142 milliseconds