Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/encodings/
D__init__.py71 def search_function(encoding): function
157 codecs.register(search_function)
/external/python/cpython3/Lib/encodings/
D__init__.py71 def search_function(encoding): function
156 codecs.register(search_function)
/external/fonttools/Lib/fontTools/encodings/
Dcodecs.py109 def search_function(name): function
135 codecs.register(search_function)
/external/python/cpython2/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()
/external/python/cpython2/Include/
Dcodecs.h27 PyObject *search_function
/external/python/cpython3/Include/
Dcodecs.h27 PyObject *search_function
/external/python/cpython3/Python/
Dcodecs.c33 int PyCodec_Register(PyObject *search_function) in PyCodec_Register() argument
38 if (search_function == NULL) { in PyCodec_Register()
42 if (!PyCallable_Check(search_function)) { in PyCodec_Register()
46 return PyList_Append(interp->codec_search_path, search_function); in PyCodec_Register()
/external/python/cpython3/Modules/
D_codecsmodule.c63 _codecs_register(PyObject *module, PyObject *search_function) in _codecs_register() argument
66 if (PyCodec_Register(search_function)) in _codecs_register()
/external/python/cpython3/Doc/c-api/
Dcodec.rst6 .. c:function:: int PyCodec_Register(PyObject *search_function)
/external/python/cpython2/Doc/c-api/
Dcodec.rst6 .. c:function:: int PyCodec_Register(PyObject *search_function)
/external/python/cpython2/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()
/external/python/cpython2/Lib/test/
Dtest_unicode.py19 def search_function(encoding): function
34 codecs.register(search_function)
/external/python/cpython3/Lib/test/
Dtest_unicode.py19 def search_function(encoding): function
34 codecs.register(search_function)
/external/python/cpython2/Doc/library/
Dcodecs.rst52 .. function:: register(search_function)
/external/python/cpython3/Doc/data/
Drefcounts.dat260 PyCodec_Register:PyObject*:search_function:+1:
/external/python/cpython3/Doc/library/
Dcodecs.rst159 .. function:: register(search_function)
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst3694 encodings.search_function() contains a dot.