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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 170 static PyTypeObject *UnaryOp_type;
323 static PyTypeObject *unaryop_type; variable
746 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
747 if (!UnaryOp_type) return 0;
887 unaryop_type = make_type("unaryop", &AST_type, NULL, 0);
888 if (!unaryop_type) return 0;
889 if (!add_attributes(unaryop_type, NULL, 0)) return 0;
890 Invert_type = make_type("Invert", unaryop_type, NULL, 0);
894 Not_type = make_type("Not", unaryop_type, NULL, 0);
898 UAdd_type = make_type("UAdd", unaryop_type, NULL, 0);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 170 static PyTypeObject *UnaryOp_type;
323 static PyTypeObject *unaryop_type; variable
729 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
730 if (!UnaryOp_type) return 0;
870 unaryop_type = make_type("unaryop", &AST_type, NULL, 0);
871 if (!unaryop_type) return 0;
872 if (!add_attributes(unaryop_type, NULL, 0)) return 0;
873 Invert_type = make_type("Invert", unaryop_type, NULL, 0);
877 Not_type = make_type("Not", unaryop_type, NULL, 0);
881 UAdd_type = make_type("UAdd", unaryop_type, NULL, 0);
    [all...]
  /external/python/cpython2/Python/
Python-ast.c 170 static PyTypeObject *UnaryOp_type;
323 static PyTypeObject *unaryop_type; variable
746 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
747 if (!UnaryOp_type) return 0;
887 unaryop_type = make_type("unaryop", &AST_type, NULL, 0);
888 if (!unaryop_type) return 0;
889 if (!add_attributes(unaryop_type, NULL, 0)) return 0;
890 Invert_type = make_type("Invert", unaryop_type, NULL, 0);
894 Not_type = make_type("Not", unaryop_type, NULL, 0);
898 UAdd_type = make_type("UAdd", unaryop_type, NULL, 0)
    [all...]
  /external/python/cpython3/Python/
Python-ast.c 208 static PyTypeObject *UnaryOp_type;
412 static PyTypeObject *unaryop_type; variable
917 UnaryOp_type = make_type("UnaryOp", expr_type, UnaryOp_fields, 2);
918 if (!UnaryOp_type) return 0;
1078 unaryop_type = make_type("unaryop", &AST_type, NULL, 0);
1079 if (!unaryop_type) return 0;
1080 if (!add_attributes(unaryop_type, NULL, 0)) return 0;
1081 Invert_type = make_type("Invert", unaryop_type, NULL, 0);
1085 Not_type = make_type("Not", unaryop_type, NULL, 0);
    [all...]

Completed in 1862 milliseconds