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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 159 static PyTypeObject *BoolOp_type;
300 static PyTypeObject *boolop_type; variable
742 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
743 if (!BoolOp_type) return 0;
825 boolop_type = make_type("boolop", &AST_type, NULL, 0);
826 if (!boolop_type) return 0;
827 if (!add_attributes(boolop_type, NULL, 0)) return 0;
828 And_type = make_type("And", boolop_type, NULL, 0);
832 Or_type = make_type("Or", boolop_type, NULL, 0);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 159 static PyTypeObject *BoolOp_type;
300 static PyTypeObject *boolop_type; variable
725 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
726 if (!BoolOp_type) return 0;
808 boolop_type = make_type("boolop", &AST_type, NULL, 0);
809 if (!boolop_type) return 0;
810 if (!add_attributes(boolop_type, NULL, 0)) return 0;
811 And_type = make_type("And", boolop_type, NULL, 0);
815 Or_type = make_type("Or", boolop_type, NULL, 0);
    [all...]
  /external/python/cpython2/Python/
Python-ast.c 159 static PyTypeObject *BoolOp_type;
300 static PyTypeObject *boolop_type; variable
742 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
743 if (!BoolOp_type) return 0;
825 boolop_type = make_type("boolop", &AST_type, NULL, 0);
826 if (!boolop_type) return 0;
827 if (!add_attributes(boolop_type, NULL, 0)) return 0;
828 And_type = make_type("And", boolop_type, NULL, 0);
832 Or_type = make_type("Or", boolop_type, NULL, 0);
    [all...]
  /external/python/cpython3/Python/
Python-ast.c 194 static PyTypeObject *BoolOp_type;
388 static PyTypeObject *boolop_type; variable
925 BoolOp_type = make_type("BoolOp", expr_type, BoolOp_fields, 2);
926 if (!BoolOp_type) return 0;
1024 boolop_type = make_type("boolop", &AST_type, NULL, 0);
1025 if (!boolop_type) return 0;
1026 if (!add_attributes(boolop_type, NULL, 0)) return 0;
1027 And_type = make_type("And", boolop_type, NULL, 0);
1031 Or_type = make_type("Or", boolop_type, NULL, 0);
    [all...]

Completed in 304 milliseconds