Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp920 bool HasVar = Var != nullptr; in IfStmt() local
923 IfStmtBits.HasVar = HasVar; in IfStmt()
932 if (HasVar) in IfStmt()
945 IfStmtBits.HasVar = HasVar; in IfStmt()
954 bool HasVar = Var != nullptr; in Create() local
1052 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
1059 if (HasVar) in SwitchStmt()
1068 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
1117 WhileStmtBits.HasVar = HasVar; in WhileStmt()
1121 if (HasVar) in WhileStmt()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h170 unsigned HasVar : 1; in alignas() local
188 unsigned HasVar : 1; in alignas() local
206 unsigned HasVar : 1; in alignas() local
1958 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1977 bool hasVarStorage() const { return IfStmtBits.HasVar; } in hasVarStorage()
2166 explicit SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar);
2177 bool HasVar);
2183 bool hasVarStorage() const { return SwitchStmtBits.HasVar; } in hasVarStorage()
2350 explicit WhileStmt(EmptyShell Empty, bool HasVar);
2360 static WhileStmt *CreateEmpty(const ASTContext &Ctx, bool HasVar);
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp138 bool HasVar = S->getConditionVariableDeclStmt() != nullptr; in VisitIfStmt() local
143 Record.push_back(HasVar); in VisitIfStmt()
150 if (HasVar) in VisitIfStmt()
168 bool HasVar = S->getConditionVariableDeclStmt() != nullptr; in VisitSwitchStmt() local
170 Record.push_back(HasVar); in VisitSwitchStmt()
177 if (HasVar) in VisitSwitchStmt()
193 bool HasVar = S->getConditionVariableDeclStmt() != nullptr; in VisitWhileStmt() local
194 Record.push_back(HasVar); in VisitWhileStmt()
198 if (HasVar) in VisitWhileStmt()
H A DASTReaderStmt.cpp218 bool HasVar = Record.readInt(); in VisitIfStmt() local
225 if (HasVar) in VisitIfStmt()
241 bool HasVar = Record.readInt(); in VisitSwitchStmt() local
250 if (HasVar) in VisitSwitchStmt()
272 bool HasVar = Record.readInt(); in VisitWhileStmt() local
276 if (HasVar) in VisitWhileStmt()