• Home
  • Raw
  • Download

Lines Matching refs:stmt_ty

1171 static int obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena);
1243 stmt_ty
1248 stmt_ty p; in FunctionDef()
1259 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in FunctionDef()
1273 stmt_ty
1278 stmt_ty p; in AsyncFunctionDef()
1289 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in AsyncFunctionDef()
1303 stmt_ty
1308 stmt_ty p; in ClassDef()
1314 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in ClassDef()
1328 stmt_ty
1331 stmt_ty p; in Return()
1332 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Return()
1342 stmt_ty
1345 stmt_ty p; in Delete()
1346 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Delete()
1356 stmt_ty
1360 stmt_ty p; in Assign()
1366 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Assign()
1377 stmt_ty
1381 stmt_ty p; in AugAssign()
1397 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in AugAssign()
1409 stmt_ty
1413 stmt_ty p; in AnnAssign()
1424 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in AnnAssign()
1437 stmt_ty
1441 stmt_ty p; in For()
1452 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in For()
1465 stmt_ty
1469 stmt_ty p; in AsyncFor()
1480 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in AsyncFor()
1493 stmt_ty
1497 stmt_ty p; in While()
1503 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in While()
1515 stmt_ty
1519 stmt_ty p; in If()
1525 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in If()
1537 stmt_ty
1541 stmt_ty p; in With()
1542 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in With()
1553 stmt_ty
1557 stmt_ty p; in AsyncWith()
1558 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in AsyncWith()
1569 stmt_ty
1572 stmt_ty p; in Raise()
1573 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Raise()
1584 stmt_ty
1588 stmt_ty p; in Try()
1589 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Try()
1602 stmt_ty
1605 stmt_ty p; in Assert()
1611 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Assert()
1622 stmt_ty
1625 stmt_ty p; in Import()
1626 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Import()
1636 stmt_ty
1640 stmt_ty p; in ImportFrom()
1641 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in ImportFrom()
1653 stmt_ty
1656 stmt_ty p; in Global()
1657 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Global()
1667 stmt_ty
1670 stmt_ty p; in Nonlocal()
1671 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Nonlocal()
1681 stmt_ty
1684 stmt_ty p; in Expr()
1690 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Expr()
1700 stmt_ty
1703 stmt_ty p; in Pass()
1704 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Pass()
1713 stmt_ty
1716 stmt_ty p; in Break()
1717 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Break()
1726 stmt_ty
1729 stmt_ty p; in Continue()
1730 p = (stmt_ty)PyArena_Malloc(arena, sizeof(*p)); in Continue()
2625 stmt_ty o = (stmt_ty)_o; in ast2obj_stmt()
3979 stmt_ty val; in obj2ast_mod()
4020 stmt_ty val; in obj2ast_mod()
4085 stmt_ty val; in obj2ast_mod()
4108 obj2ast_stmt(PyObject* obj, stmt_ty* out, PyArena* arena) in obj2ast_stmt()
4202 stmt_ty val; in obj2ast_stmt()
4317 stmt_ty val; in obj2ast_stmt()
4479 stmt_ty val; in obj2ast_stmt()
4819 stmt_ty val; in obj2ast_stmt()
4849 stmt_ty val; in obj2ast_stmt()
4919 stmt_ty val; in obj2ast_stmt()
4949 stmt_ty val; in obj2ast_stmt()
5005 stmt_ty val; in obj2ast_stmt()
5035 stmt_ty val; in obj2ast_stmt()
5091 stmt_ty val; in obj2ast_stmt()
5121 stmt_ty val; in obj2ast_stmt()
5193 stmt_ty val; in obj2ast_stmt()
5265 stmt_ty val; in obj2ast_stmt()
5347 stmt_ty val; in obj2ast_stmt()
5407 stmt_ty val; in obj2ast_stmt()
5437 stmt_ty val; in obj2ast_stmt()
7773 stmt_ty val; in obj2ast_excepthandler()