HomeSort by relevance Sort by last modified time
    Searched refs:stmt_type (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 34 static PyTypeObject *stmt_type; variable
687 stmt_type = make_type("stmt", &AST_type, NULL, 0);
688 if (!stmt_type) return 0;
689 if (!add_attributes(stmt_type, stmt_attributes, 2)) return 0;
690 FunctionDef_type = make_type("FunctionDef", stmt_type,
693 ClassDef_type = make_type("ClassDef", stmt_type, ClassDef_fields, 4);
695 Return_type = make_type("Return", stmt_type, Return_fields, 1);
697 Delete_type = make_type("Delete", stmt_type, Delete_fields, 1);
699 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2);
701 AugAssign_type = make_type("AugAssign", stmt_type, AugAssign_fields, 3);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 34 static PyTypeObject *stmt_type; variable
670 stmt_type = make_type("stmt", &AST_type, NULL, 0);
671 if (!stmt_type) return 0;
672 if (!add_attributes(stmt_type, stmt_attributes, 2)) return 0;
673 FunctionDef_type = make_type("FunctionDef", stmt_type,
676 ClassDef_type = make_type("ClassDef", stmt_type, ClassDef_fields, 4);
678 Return_type = make_type("Return", stmt_type, Return_fields, 1);
680 Delete_type = make_type("Delete", stmt_type, Delete_fields, 1);
682 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2);
684 AugAssign_type = make_type("AugAssign", stmt_type, AugAssign_fields, 3);
    [all...]
  /external/python/cpython2/Python/
Python-ast.c 34 static PyTypeObject *stmt_type; variable
687 stmt_type = make_type("stmt", &AST_type, NULL, 0);
688 if (!stmt_type) return 0;
689 if (!add_attributes(stmt_type, stmt_attributes, 2)) return 0;
690 FunctionDef_type = make_type("FunctionDef", stmt_type,
693 ClassDef_type = make_type("ClassDef", stmt_type, ClassDef_fields, 4);
695 Return_type = make_type("Return", stmt_type, Return_fields, 1);
697 Delete_type = make_type("Delete", stmt_type, Delete_fields, 1);
699 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2);
701 AugAssign_type = make_type("AugAssign", stmt_type, AugAssign_fields, 3)
    [all...]

Completed in 1058 milliseconds