OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PyFile_Check
(Results
1 - 25
of
39
) sorted by null
1
2
/prebuilts/misc/common/swig/include/2.0.11/python/
file.i
21
if (
PyFile_Check
(obj)) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
fileobject.h
49
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
fileobject.h
37
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
fileobject.h
48
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
fileobject.h
49
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/external/python/cpython2/Include/
fileobject.h
37
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/prebuilts/gdb/darwin-x86/include/python2.7/
fileobject.h
37
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/prebuilts/gdb/linux-x86/include/python2.7/
fileobject.h
37
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
fileobject.h
37
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
fileobject.h
37
#define
PyFile_Check
(op) PyObject_TypeCheck(op, &PyFile_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c
76
if (f == NULL || !
PyFile_Check
(f))
96
if (f == NULL || !
PyFile_Check
(f))
146
assert(
PyFile_Check
(f));
323
assert(
PyFile_Check
(f));
563
assert(
PyFile_Check
(f));
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c
76
if (f == NULL || !
PyFile_Check
(f))
96
if (f == NULL || !
PyFile_Check
(f))
146
assert(
PyFile_Check
(f));
323
assert(
PyFile_Check
(f));
556
assert(
PyFile_Check
(f));
[
all
...]
/external/python/cpython2/Objects/
fileobject.c
76
if (f == NULL || !
PyFile_Check
(f))
96
if (f == NULL || !
PyFile_Check
(f))
146
assert(
PyFile_Check
(f));
323
assert(
PyFile_Check
(f));
563
assert(
PyFile_Check
(f));
[
all
...]
/external/libxml2/python/
libxml_wrap.h
179
(
PyFile_Check
(v) ? (PyFile_AsFile(v)) : stdout))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pythonrun.c
344
PyFile_Check
(sys_stream)) {
356
PyFile_Check
(sys_stream)) {
368
PyFile_Check
(sys_stream)) {
[
all
...]
sysmodule.c
64
if (v != NULL &&
PyFile_Check
(v))
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pythonrun.c
332
PyFile_Check
(sys_stream)) {
344
PyFile_Check
(sys_stream)) {
356
PyFile_Check
(sys_stream)) {
[
all
...]
marshal.c
[
all
...]
sysmodule.c
64
if (v != NULL &&
PyFile_Check
(v))
[
all
...]
/external/python/cpython2/Python/
pythonrun.c
354
PyFile_Check
(sys_stream)) {
361
PyFile_Check
(sys_stream)) {
368
PyFile_Check
(sys_stream)) {
[
all
...]
marshal.c
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
marshal.c
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
marshal.c
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.c
777
if (sysstdin == NULL || !
PyFile_Check
(sysstdin))
[
all
...]
/external/python/cpython2/Modules/
svmodule.c
216
if (!
PyFile_Check
(file)) {
Completed in 1081 milliseconds
1
2