Home
last modified time | relevance | path

Searched defs:ExprStmt (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/pytorch/torch/csrc/jit/frontend/
H A Dtree_views.h802 struct ExprStmt : public Stmt { struct
803 explicit ExprStmt(const TreeRef& tree) : Stmt(tree) { in ExprStmt() argument
809 static ExprStmt create(const SourceRange& range, const Expr& list) { in create() argument
/aosp_15_r20/external/starlark-go/syntax/
H A Dsyntax.go136 type ExprStmt struct { struct
137 commentsRef
138 X Expr
141 func (x *ExprStmt) Span() (start, end Position) {
/aosp_15_r20/prebuilts/go/linux-x86/src/go/ast/
Dast.go633 ExprStmt struct { struct
634 X Expr // expression
769 func (s *ExprStmt) Pos() token.Pos { return s.X.Pos() }
796 func (s *ExprStmt) End() token.Pos { return s.X.End() }
855 func (*ExprStmt) stmtNode() {}
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
Dnodes.go360 ExprStmt struct { struct
361 X Expr
362 simpleStmt
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/dwarf/
Dputvarabbrevgen_test.go239 func findLineComment(cm ast.CommentMap, stmt *ast.ExprStmt) *ast.Comment {
/aosp_15_r20/external/libchrome/third_party/jinja2/
H A Dnodes.py378 class ExprStmt(Stmt): class
/aosp_15_r20/external/python/jinja/src/jinja2/
Dnodes.py372 class ExprStmt(Stmt): class