HomeSort by relevance Sort by last modified time
    Searched refs:PyString_InternFromString (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 721 if (!(_PyIO_str_close = PyString_InternFromString("close")))
723 if (!(_PyIO_str_closed = PyString_InternFromString("closed")))
725 if (!(_PyIO_str_decode = PyString_InternFromString("decode")))
727 if (!(_PyIO_str_encode = PyString_InternFromString("encode")))
729 if (!(_PyIO_str_fileno = PyString_InternFromString("fileno")))
731 if (!(_PyIO_str_flush = PyString_InternFromString("flush")))
733 if (!(_PyIO_str_getstate = PyString_InternFromString("getstate")))
735 if (!(_PyIO_str_isatty = PyString_InternFromString("isatty")))
737 if (!(_PyIO_str_newlines = PyString_InternFromString("newlines")))
739 if (!(_PyIO_str_nl = PyString_InternFromString("\n")))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 712 if (!(_PyIO_str_close = PyString_InternFromString("close")))
714 if (!(_PyIO_str_closed = PyString_InternFromString("closed")))
716 if (!(_PyIO_str_decode = PyString_InternFromString("decode")))
718 if (!(_PyIO_str_encode = PyString_InternFromString("encode")))
720 if (!(_PyIO_str_fileno = PyString_InternFromString("fileno")))
722 if (!(_PyIO_str_flush = PyString_InternFromString("flush")))
724 if (!(_PyIO_str_getstate = PyString_InternFromString("getstate")))
726 if (!(_PyIO_str_isatty = PyString_InternFromString("isatty")))
728 if (!(_PyIO_str_newlines = PyString_InternFromString("newlines")))
730 if (!(_PyIO_str_nl = PyString_InternFromString("\n")))
    [all...]
  /external/python/cpython2/Modules/_io/
_iomodule.c 721 if (!(_PyIO_str_close = PyString_InternFromString("close")))
723 if (!(_PyIO_str_closed = PyString_InternFromString("closed")))
725 if (!(_PyIO_str_decode = PyString_InternFromString("decode")))
727 if (!(_PyIO_str_encode = PyString_InternFromString("encode")))
729 if (!(_PyIO_str_fileno = PyString_InternFromString("fileno")))
731 if (!(_PyIO_str_flush = PyString_InternFromString("flush")))
733 if (!(_PyIO_str_getstate = PyString_InternFromString("getstate")))
735 if (!(_PyIO_str_isatty = PyString_InternFromString("isatty")))
737 if (!(_PyIO_str_newlines = PyString_InternFromString("newlines")))
739 if (!(_PyIO_str_nl = PyString_InternFromString("\n"))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
boolobject.c 28 (true_str = PyString_InternFromString("True"));
31 (false_str = PyString_InternFromString("False"));
classobject.c 35 docstr= PyString_InternFromString("__doc__");
40 modstr= PyString_InternFromString("__module__");
45 namestr= PyString_InternFromString("__name__");
104 getattrstr = PyString_InternFromString("__getattr__");
107 setattrstr = PyString_InternFromString("__setattr__");
110 delattrstr = PyString_InternFromString("__delattr__");
557 initstr = PyString_InternFromString("__init__");
650 delstr = PyString_InternFromString("__del__");
905 reprstr = PyString_InternFromString("__repr__");
944 strstr = PyString_InternFromString("__str__");
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
boolobject.c 28 (true_str = PyString_InternFromString("True"));
31 (false_str = PyString_InternFromString("False"));
classobject.c 35 docstr= PyString_InternFromString("__doc__");
40 modstr= PyString_InternFromString("__module__");
45 namestr= PyString_InternFromString("__name__");
104 getattrstr = PyString_InternFromString("__getattr__");
107 setattrstr = PyString_InternFromString("__setattr__");
110 delattrstr = PyString_InternFromString("__delattr__");
547 initstr = PyString_InternFromString("__init__");
640 delstr = PyString_InternFromString("__del__");
881 reprstr = PyString_InternFromString("__repr__");
920 strstr = PyString_InternFromString("__str__");
    [all...]
  /external/python/cpython2/Objects/
boolobject.c 28 (true_str = PyString_InternFromString("True"));
31 (false_str = PyString_InternFromString("False"));
classobject.c 35 docstr= PyString_InternFromString("__doc__");
40 modstr= PyString_InternFromString("__module__");
45 namestr= PyString_InternFromString("__name__");
104 getattrstr = PyString_InternFromString("__getattr__");
107 setattrstr = PyString_InternFromString("__setattr__");
110 delattrstr = PyString_InternFromString("__delattr__");
557 initstr = PyString_InternFromString("__init__");
650 delstr = PyString_InternFromString("__del__");
905 reprstr = PyString_InternFromString("__repr__");
944 strstr = PyString_InternFromString("__str__")
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
_warnings.c 47 warnings_str = PyString_InternFromString("warnings");
650 get_source_name = PyString_InternFromString("get_source");
655 splitlines_name = PyString_InternFromString("splitlines");
804 ignore_str = PyString_InternFromString("ignore");
812 error_str = PyString_InternFromString("error");
820 default_str = PyString_InternFromString("default");
future.c 64 future = PyString_InternFromString("__future__");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
stringobject.h 84 PyAPI_FUNC(PyObject *) PyString_InternFromString(const char *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
stringobject.h 84 PyAPI_FUNC(PyObject *) PyString_InternFromString(const char *);
  /external/python/cpython2/Include/
stringobject.h 84 PyAPI_FUNC(PyObject *) PyString_InternFromString(const char *);
  /prebuilts/gdb/darwin-x86/include/python2.7/
stringobject.h 84 PyAPI_FUNC(PyObject *) PyString_InternFromString(const char *);
  /prebuilts/gdb/linux-x86/include/python2.7/
stringobject.h 84 PyAPI_FUNC(PyObject *) PyString_InternFromString(const char *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
stringobject.h 84 PyAPI_FUNC(PyObject *) PyString_InternFromString(const char *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
stringobject.h 84 PyAPI_FUNC(PyObject *) PyString_InternFromString(const char *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
_warnings.c 47 warnings_str = PyString_InternFromString("warnings");
651 get_source_name = PyString_InternFromString("get_source");
656 splitlines_name = PyString_InternFromString("splitlines");
805 ignore_str = PyString_InternFromString("ignore");
813 error_str = PyString_InternFromString("error");
821 default_str = PyString_InternFromString("default");
  /external/python/cpython2/Python/
_warnings.c 47 warnings_str = PyString_InternFromString("warnings");
650 get_source_name = PyString_InternFromString("get_source");
655 splitlines_name = PyString_InternFromString("splitlines");
804 ignore_str = PyString_InternFromString("ignore");
812 error_str = PyString_InternFromString("error");
820 default_str = PyString_InternFromString("default");
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyhead.swg 14 #define PyString_InternFromString(key) PyUnicode_InternFromString(key)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_json.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_json.c     [all...]
  /external/python/cpython2/Modules/
_json.c     [all...]
  /external/python/cpython2/Modules/_ctypes/
callbacks.c 521 context = PyString_InternFromString("_ctypes.DllGetClassObject");
600 context = PyString_InternFromString("_ctypes.DllCanUnloadNow");

Completed in 693 milliseconds

1 2 3 4