Lines Matching refs:stmt_ty
970 static int obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena);
1040 stmt_ty
1044 stmt_ty p; in FunctionDef()
1055 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in FunctionDef()
1068 stmt_ty
1072 stmt_ty p; in ClassDef()
1078 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in ClassDef()
1091 stmt_ty
1094 stmt_ty p; in Return()
1095 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Return()
1105 stmt_ty
1108 stmt_ty p; in Delete()
1109 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Delete()
1119 stmt_ty
1123 stmt_ty p; in Assign()
1129 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Assign()
1140 stmt_ty
1144 stmt_ty p; in AugAssign()
1160 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in AugAssign()
1172 stmt_ty
1176 stmt_ty p; in Print()
1177 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Print()
1189 stmt_ty
1193 stmt_ty p; in For()
1204 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in For()
1217 stmt_ty
1221 stmt_ty p; in While()
1227 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in While()
1239 stmt_ty
1243 stmt_ty p; in If()
1249 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in If()
1261 stmt_ty
1265 stmt_ty p; in With()
1271 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in With()
1283 stmt_ty
1287 stmt_ty p; in Raise()
1288 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Raise()
1300 stmt_ty
1304 stmt_ty p; in TryExcept()
1305 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in TryExcept()
1317 stmt_ty
1321 stmt_ty p; in TryFinally()
1322 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in TryFinally()
1333 stmt_ty
1336 stmt_ty p; in Assert()
1342 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Assert()
1353 stmt_ty
1356 stmt_ty p; in Import()
1357 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Import()
1367 stmt_ty
1371 stmt_ty p; in ImportFrom()
1372 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in ImportFrom()
1384 stmt_ty
1388 stmt_ty p; in Exec()
1394 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Exec()
1406 stmt_ty
1409 stmt_ty p; in Global()
1410 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Global()
1420 stmt_ty
1423 stmt_ty p; in Expr()
1429 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Expr()
1439 stmt_ty
1442 stmt_ty p; in Pass()
1443 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Pass()
1452 stmt_ty
1455 stmt_ty p; in Break()
1456 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Break()
1465 stmt_ty
1468 stmt_ty p; in Continue()
1469 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Continue()
2191 stmt_ty o = (stmt_ty)_o; in ast2obj_stmt()
3351 stmt_ty val; in obj2ast_mod()
3391 stmt_ty val; in obj2ast_mod()
3454 stmt_ty val; in obj2ast_mod()
3483 obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena) in obj2ast_stmt()
3567 stmt_ty val; in obj2ast_stmt()
3681 stmt_ty val; in obj2ast_stmt()
4007 stmt_ty val; in obj2ast_stmt()
4036 stmt_ty val; in obj2ast_stmt()
4091 stmt_ty val; in obj2ast_stmt()
4120 stmt_ty val; in obj2ast_stmt()
4174 stmt_ty val; in obj2ast_stmt()
4203 stmt_ty val; in obj2ast_stmt()
4268 stmt_ty val; in obj2ast_stmt()
4357 stmt_ty val; in obj2ast_stmt()
4415 stmt_ty val; in obj2ast_stmt()
4457 stmt_ty val; in obj2ast_stmt()
4486 stmt_ty val; in obj2ast_stmt()
6558 stmt_ty val; in obj2ast_excepthandler()