Home
last modified time | relevance | path

Searched refs:search_function (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
D__init__.py71 def search_function(encoding): function
157 codecs.register(search_function)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
D__init__.py71 def search_function(encoding): function
157 codecs.register(search_function)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dcodecs.h27 PyObject *search_function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dcodecs.h27 PyObject *search_function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dcodecs.c29 int PyCodec_Register(PyObject *search_function) in PyCodec_Register() argument
34 if (search_function == NULL) { in PyCodec_Register()
38 if (!PyCallable_Check(search_function)) { in PyCodec_Register()
42 return PyList_Append(interp->codec_search_path, search_function); in PyCodec_Register()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dcodecs.c29 int PyCodec_Register(PyObject *search_function) in PyCodec_Register() argument
34 if (search_function == NULL) { in PyCodec_Register()
38 if (!PyCallable_Check(search_function)) { in PyCodec_Register()
42 return PyList_Append(interp->codec_search_path, search_function); in PyCodec_Register()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_codecsmodule.c52 PyObject *codec_register(PyObject *self, PyObject *search_function) in codec_register() argument
54 if (PyCodec_Register(search_function)) in codec_register()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_codecsmodule.c52 PyObject *codec_register(PyObject *self, PyObject *search_function) in codec_register() argument
54 if (PyCodec_Register(search_function)) in codec_register()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_unicode.py12 def search_function(encoding): function
27 codecs.register(search_function)