Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/AST/
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 …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_dataflow.c453 unsigned int HasElse:1; member
657 if (masks->HasElse) { in pop_branch_mask()
756 d->BranchMasks[branch_depth].HasElse = 1; in get_readers_for_single_write()
/external/llvm-project/clang/include/clang/AST/
DStmt.h167 unsigned HasElse : 1; variable
1955 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1967 static IfStmt *CreateEmpty(const ASTContext &Ctx, bool HasElse, bool HasVar,
1977 bool hasElseStorage() const { return IfStmtBits.HasElse; } in hasElseStorage()
/external/llvm-project/clang/lib/Serialization/
DASTWriterStmt.cpp136 bool HasElse = S->getElse() != nullptr; in VisitIfStmt() local
141 Record.push_back(HasElse); in VisitIfStmt()
147 if (HasElse) in VisitIfStmt()
157 if (HasElse) in VisitIfStmt()
DASTReaderStmt.cpp215 bool HasElse = Record.readInt(); in VisitIfStmt() local
221 if (HasElse) in VisitIfStmt()
231 if (HasElse) in VisitIfStmt()