Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp812 bool HasVar = Var != nullptr; in IfStmt() local
815 IfStmtBits.HasVar = HasVar; in IfStmt()
824 if (HasVar) in IfStmt()
837 IfStmtBits.HasVar = HasVar; in IfStmt()
845 bool HasVar = Var != nullptr; in Create() local
927 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
934 if (HasVar) in SwitchStmt()
943 SwitchStmtBits.HasVar = HasVar; in SwitchStmt()
990 WhileStmtBits.HasVar = HasVar; in WhileStmt()
994 if (HasVar) in WhileStmt()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h166 unsigned HasVar : 1; in alignas() local
184 unsigned HasVar : 1; in alignas() local
202 unsigned HasVar : 1; in alignas() local
1739 explicit IfStmt(EmptyShell Empty, bool HasElse, bool HasVar, bool HasInit);
1757 bool hasVarStorage() const { return IfStmtBits.HasVar; } in hasVarStorage()
1928 explicit SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar);
1938 bool HasVar);
1944 bool hasVarStorage() const { return SwitchStmtBits.HasVar; } in hasVarStorage()
2098 explicit WhileStmt(EmptyShell Empty, bool HasVar);
2107 static WhileStmt *CreateEmpty(const ASTContext &Ctx, bool HasVar);
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriterStmt.cpp136 bool HasVar = S->getConditionVariableDeclStmt() != nullptr; in VisitIfStmt() local
141 Record.push_back(HasVar); in VisitIfStmt()
148 if (HasVar) in VisitIfStmt()
164 bool HasVar = S->getConditionVariableDeclStmt() != nullptr; in VisitSwitchStmt() local
166 Record.push_back(HasVar); in VisitSwitchStmt()
173 if (HasVar) in VisitSwitchStmt()
187 bool HasVar = S->getConditionVariableDeclStmt() != nullptr; in VisitWhileStmt() local
188 Record.push_back(HasVar); in VisitWhileStmt()
192 if (HasVar) in VisitWhileStmt()
H A DASTReaderStmt.cpp224 bool HasVar = Record.readInt(); in VisitIfStmt() local
231 if (HasVar) in VisitIfStmt()
245 bool HasVar = Record.readInt(); in VisitSwitchStmt() local
254 if (HasVar) in VisitSwitchStmt()
274 bool HasVar = Record.readInt(); in VisitWhileStmt() local
278 if (HasVar) in VisitWhileStmt()