Lines Matching defs:name
11 "Search functions are expected to take one argument, the encoding name in\n"
75 "and \'backslashreplace\' as well as any other name registered with\n"
152 "and \'backslashreplace\' as well as any other name registered with\n"
2714 "Register the specified error handler under the name errors.\n"
2758 "lookup_error($module, name, /)\n"
2763 "Return the error handler for the specified error handling name or raise a\n"
2764 "LookupError, if no handler exists under this name.");
2770 _codecs_lookup_error_impl(PyObject *module, const char *name);
2776 const char *name;
2783 name = PyUnicode_AsUTF8AndSize(arg, &name_length);
2784 if (name == NULL) {
2787 if (strlen(name) != (size_t)name_length) {
2791 return_value = _codecs_lookup_error_impl(module, name);