Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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>;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h1779 class ValueStmt : public Stmt {
1786 const ValueStmt *ConstThis = this; in getExprStmt()
1798 class LabelStmt : public ValueStmt {
1806 : ValueStmt(LabelStmtClass), TheDecl(D), SubStmt(substmt) { in LabelStmt()
1811 explicit LabelStmt(EmptyShell Empty) : ValueStmt(LabelStmtClass, Empty) {} in LabelStmt()
1846 : public ValueStmt,
1855 : ValueStmt(AttributedStmtClass), SubStmt(SubStmt) { in AttributedStmt()
1862 : 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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp395 const Expr *ValueStmt::getExprStmt() const { in getExprStmt()
407 } while (isa<ValueStmt>(S)); in getExprStmt()
H A DComputeDependence.cpp164 dyn_cast_or_null<ValueStmt>(E->getSubStmt()->getStmtExprResult())) in computeDependence()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp15004 dyn_cast<ValueStmt>(Compound->getStmtExprResult())) { in BuildStmtExpr()