Searched refs:ValueStmt (Results 1 – 13 of 13) sorted by relevance
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 30 def ValueStmt : StmtNode<Stmt, 1>; 31 def LabelStmt : StmtNode<ValueStmt>; 32 def AttributedStmt : StmtNode<ValueStmt>; 58 def Expr : StmtNode<ValueStmt, 1>;
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Stmt.h | 1812 class ValueStmt : public Stmt { 1819 const ValueStmt *ConstThis = this; in getExprStmt() 1831 class LabelStmt : public ValueStmt { 1839 : ValueStmt(LabelStmtClass), TheDecl(D), SubStmt(substmt) { in LabelStmt() 1844 explicit LabelStmt(EmptyShell Empty) : ValueStmt(LabelStmtClass, Empty) {} in LabelStmt() 1879 : public ValueStmt, 1888 : ValueStmt(AttributedStmtClass), SubStmt(SubStmt) { in AttributedStmt() 1895 : ValueStmt(AttributedStmtClass, Empty) { in AttributedStmt()
|
| H A D | Expr.h | 109 class Expr : public ValueStmt { 121 : ValueStmt(SC) { in Expr() 130 explicit Expr(StmtClass SC, EmptyShell) : ValueStmt(SC) { } in Expr()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | NullabilityChecker.cpp | 1142 const Stmt *ValueStmt = S; in checkBind() local 1144 ValueStmt = ValueExpr; in checkBind() 1151 CK_NullPassedToNonnull, N, nullptr, C, ValueStmt); in checkBind()
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | program-parsers.cpp | 190 construct<OtherSpecificationStmt>(indirect(Parser<ValueStmt>{})), argument
|
| H A D | Fortran-parsers.cpp | 930 TYPE_PARSER(construct<ValueStmt>("VALUE" >> maybe("::"_tok) >> listOfNames))
|
| H A D | unparse.cpp | 679 void Unparse(const ValueStmt &x) { // R861 in Unparse()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Stmt.cpp | 402 const Expr *ValueStmt::getExprStmt() const { in getExprStmt() 414 } while (isa<ValueStmt>(S)); in getExprStmt()
|
| H A D | ComputeDependence.cpp | 181 dyn_cast_or_null<ValueStmt>(E->getSubStmt()->getStmtExprResult())) in computeDependence()
|
| /llvm-project-15.0.7/flang/include/flang/Parser/ |
| H A D | parse-tree.h | 173 struct ValueStmt; // R861 373 common::Indirection<ValueStmt>, common::Indirection<VolatileStmt>, 1535 WRAPPER_CLASS(ValueStmt, std::list<Name>);
|
| H A D | dump-parse-tree.h | 704 NODE(parser, ValueStmt) in NODE()
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | resolve-names.cpp | 881 bool Pre(const parser::ValueStmt &); 4132 bool DeclarationVisitor::Pre(const parser::ValueStmt &x) { in Pre()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 15893 dyn_cast<ValueStmt>(Compound->getStmtExprResult())) { in BuildStmtExpr()
|