Home | History | Annotate | Download | only in python2.7

Lines Matching full:stmt_ty

7 typedef struct _stmt *stmt_ty;
384 stmt_ty _Py_FunctionDef(identifier name, arguments_ty args, asdl_seq * body,
388 stmt_ty _Py_ClassDef(identifier name, asdl_seq * bases, asdl_seq * body,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
400 stmt_ty _Py_AugAssign(expr_ty target, operator_ty op, expr_ty value, int
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int
406 stmt_ty _Py_For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq *
409 stmt_ty _Py_While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno,
412 stmt_ty _Py_If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno,
415 stmt_ty _Py_With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body,
418 stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
421 stmt_ty _Py_TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse,
424 stmt_ty _Py_TryFinally(asdl_seq * body, asdl_seq * finalbody, int lineno, int
427 stmt_ty _Py_Assert(expr_ty test, expr_ty msg, int lineno, int col_offset,
430 stmt_ty _Py_Import(asdl_seq * names, int lineno, int col_offset, PyArena
433 stmt_ty _Py_ImportFrom(identifier module, asdl_seq * names, int level, int
436 stmt_ty _Py_Exec(expr_ty body, expr_ty globals, expr_ty locals, int lineno, int
439 stmt_ty _Py_Global(asdl_seq * names, int lineno, int col_offset, PyArena
442 stmt_ty _Py_Expr(expr_ty value, int lineno, int col_offset, PyArena *arena);
444 stmt_ty _Py_Pass(int lineno, int col_offset, PyArena *arena);
446 stmt_ty _Py_Break(int lineno, int col_offset, PyArena *arena);
448 stmt_ty _Py_Continue(int lineno, int col_offset, PyArena *arena);