Home
last modified time | relevance | path

Searched refs:ValueStmt (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td30 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 DStmt.h1812 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 DExpr.h109 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 DNullabilityChecker.cpp1142 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 Dprogram-parsers.cpp190 construct<OtherSpecificationStmt>(indirect(Parser<ValueStmt>{})), argument
H A DFortran-parsers.cpp930 TYPE_PARSER(construct<ValueStmt>("VALUE" >> maybe("::"_tok) >> listOfNames))
H A Dunparse.cpp679 void Unparse(const ValueStmt &x) { // R861 in Unparse()
/llvm-project-15.0.7/clang/lib/AST/
H A DStmt.cpp402 const Expr *ValueStmt::getExprStmt() const { in getExprStmt()
414 } while (isa<ValueStmt>(S)); in getExprStmt()
H A DComputeDependence.cpp181 dyn_cast_or_null<ValueStmt>(E->getSubStmt()->getStmtExprResult())) in computeDependence()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-tree.h173 struct ValueStmt; // R861
373 common::Indirection<ValueStmt>, common::Indirection<VolatileStmt>,
1535 WRAPPER_CLASS(ValueStmt, std::list<Name>);
H A Ddump-parse-tree.h704 NODE(parser, ValueStmt) in NODE()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-names.cpp881 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 DSemaExpr.cpp15893 dyn_cast<ValueStmt>(Compound->getStmtExprResult())) { in BuildStmtExpr()