| /external/python/cpython3/Python/ |
| D | importdl.c | 49 tmp = PyUnicode_Substring(name, lastdot + 1, name_len); in get_encoded_name()
|
| D | import.c | 1607 PyObject *substr = PyUnicode_Substring(package, 0, dot); in resolve_name() 1633 base = PyUnicode_Substring(package, 0, last_dot); in resolve_name() 1827 PyObject *front = PyUnicode_Substring(name, 0, dot); in PyImport_ImportModuleLevelObject() 1838 PyObject *to_return = PyUnicode_Substring(abs_name, 0, in PyImport_ImportModuleLevelObject()
|
| D | _warnings.c | 452 module = PyUnicode_Substring(filename, 0, len-3); in normalize_module() 534 truncated = PyUnicode_Substring(sourceline, i, len); in show_warning()
|
| D | traceback.c | 474 truncated = PyUnicode_Substring(lineobj, i, PyUnicode_GET_LENGTH(lineobj)); in _Py_DisplaySourceLine()
|
| D | symtable.c | 1794 store_name = PyUnicode_Substring(name, 0, dot); in symtable_visit_alias()
|
| D | compile.c | 3133 attr = PyUnicode_Substring(name, pos, (dot != -1) ? dot : len); in compiler_import_as() 3182 tmp = PyUnicode_Substring(alias->name, 0, dot); in compiler_import()
|
| /external/python/cpython3/Modules/ |
| D | syslogmodule.c | 102 return PyUnicode_Substring(scriptobj, slash, scriptlen); in syslog_get_argv()
|
| D | _operator.c | 1218 attr_chain_item = PyUnicode_Substring(item, in attrgetter_new() 1233 attr_chain_item = PyUnicode_Substring(item, in attrgetter_new()
|
| D | _sre.c | 493 return PyUnicode_Substring(string, start, end); in getslice()
|
| D | _datetimemodule.c | 1278 temp = PyUnicode_Substring(repr, 0, PyUnicode_GET_LENGTH(repr) - 1); in append_keyword_tzinfo() 1302 temp = PyUnicode_Substring(repr, 0, PyUnicode_GET_LENGTH(repr) - 1); in append_keyword_fold()
|
| /external/python/cpython3/Objects/stringlib/ |
| D | unicode_format.h | 65 return PyUnicode_Substring(str->str, str->start, str->end); in SubString_new_object() 528 format_spec_object = PyUnicode_Substring(format_spec->str, in render_field()
|
| /external/python/cpython3/Objects/ |
| D | fileobject.c | 107 v = PyUnicode_Substring(result, 0, len-1); in PyFile_GetLine()
|
| D | exceptions.c | 1444 return PyUnicode_Substring(name, offset, size); in my_basename() 2909 PyObject *data = PyUnicode_Substring(self->text, start_pos, end_pos); in _set_legacy_print_statement_msg()
|
| D | unicodeobject.c | 7488 substring = PyUnicode_Substring(unicode, offset, offset+len); in encode_code_page_strict() 12349 return PyUnicode_Substring(self, i, j); in _PyUnicode_XStrip() 12353 PyUnicode_Substring(PyObject *self, Py_ssize_t start, Py_ssize_t end) in PyUnicode_Substring() function 12451 return PyUnicode_Substring(self, i, j); in do_strip() 14021 return PyUnicode_Substring(self, in unicode_subscript() 14490 key = PyUnicode_Substring(ctx->fmtstr, in unicode_format_arg_parse()
|
| D | setobject.c | 605 tmp = PyUnicode_Substring(listrepr, 1, PyUnicode_GET_LENGTH(listrepr)-1); in set_repr()
|
| /external/python/cpython3/Include/ |
| D | unicodeobject.h | 142 PyAPI_FUNC(PyObject*) PyUnicode_Substring(
|
| /external/python/cpython3/Modules/_io/ |
| D | textio.c | 358 PyObject *modified = PyUnicode_Substring(output, 0, output_len -1); in _PyIncrementalNewlineDecoder_decode() 1727 chars = PyUnicode_Substring(self->decoded_chars, in textiowrapper_get_decoded_chars() 2182 s = PyUnicode_Substring(line, start, endpos); in _textiowrapper_readline() 2195 remaining = PyUnicode_Substring(line, endpos, line_len); in _textiowrapper_readline() 2208 PyObject *s = PyUnicode_Substring(line, start, endpos); in _textiowrapper_readline()
|
| /external/python/cpython3/PC/ |
| D | python3.def | 712 PyUnicode_Substring=python38.PyUnicode_Substring
|
| /external/python/cpython3/Doc/data/ |
| D | refcounts.dat | 2821 PyUnicode_Substring:PyObject*::+1: 2822 PyUnicode_Substring:PyObject*:str:0: 2823 PyUnicode_Substring:Py_ssize_t:start:: 2824 PyUnicode_Substring:Py_ssize_t:end::
|
| /external/python/cpython3/Modules/cjkcodecs/ |
| D | multibytecodec.c | 813 ctx->pending = PyUnicode_Substring(inbuf, inpos, datalen); in encoder_encode_stateful()
|
| /external/python/cpython3/Doc/whatsnew/ |
| D | 3.3.rst | 2185 * :c:func:`PyUnicode_Substring` 2296 :c:func:`PyUnicode_Substring`
|
| /external/python/cpython3/Doc/c-api/ |
| D | unicode.rst | 630 .. c:function:: PyObject* PyUnicode_Substring(PyObject *str, Py_ssize_t start, \
|