Home
last modified time | relevance | path

Searched refs:fixed_source (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzipimport.c1015 PyObject *fixed_source; in normalize_line_endings() local
1040 fixed_source = PyString_FromString(buf); in normalize_line_endings()
1042 return fixed_source; in normalize_line_endings()
1050 PyObject *code, *fixed_source; in compile_source() local
1052 fixed_source = normalize_line_endings(source); in compile_source()
1053 if (fixed_source == NULL) in compile_source()
1056 code = Py_CompileString(PyString_AsString(fixed_source), pathname, in compile_source()
1058 Py_DECREF(fixed_source); in compile_source()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzipimport.c987 PyObject *fixed_source; in normalize_line_endings() local
1012 fixed_source = PyString_FromString(buf); in normalize_line_endings()
1014 return fixed_source; in normalize_line_endings()
1022 PyObject *code, *fixed_source; in compile_source() local
1024 fixed_source = normalize_line_endings(source); in compile_source()
1025 if (fixed_source == NULL) in compile_source()
1028 code = Py_CompileString(PyString_AsString(fixed_source), pathname, in compile_source()
1030 Py_DECREF(fixed_source); in compile_source()