Searched refs:PyUnicode_Substring (Results 1 - 19 of 19) sorted by relevance

/external/python/cpython3/Python/
H A Dimportdl.c49 tmp = PyUnicode_Substring(name, lastdot + 1, name_len);
H A Dimport.c1437 PyObject *substr = PyUnicode_Substring(package, 0, dot);
1472 base = PyUnicode_Substring(package, 0, last_dot);
1624 PyObject *front = PyUnicode_Substring(name, 0, dot);
1635 PyObject *to_return = PyUnicode_Substring(abs_name, 0,
H A D_warnings.c276 module = PyUnicode_Substring(filename, 0, len-3);
363 truncated = PyUnicode_Substring(sourceline, i, len);
708 *filename = PyUnicode_Substring(*filename, 0,
H A Dtraceback.c364 truncated = PyUnicode_Substring(lineobj, i, PyUnicode_GET_LENGTH(lineobj));
H A Dsymtable.c1647 store_name = PyUnicode_Substring(name, 0, dot);
H A Dcompile.c2599 attr = PyUnicode_Substring(name, pos,
2648 tmp = PyUnicode_Substring(alias->name, 0, dot);
/external/python/cpython3/Modules/
H A Dsyslogmodule.c102 return PyUnicode_Substring(scriptobj, slash, scriptlen);
H A Dzipimport.c118 filename = PyUnicode_Substring(path, 0, flen);
148 tmp = PyUnicode_Substring(path, flen+1,
217 return PyUnicode_Substring(fullname, dot+1, len);
601 key = PyUnicode_Substring(path, path_start, path_len);
H A D_operator.c655 attr_chain_item = PyUnicode_Substring(item,
670 attr_chain_item = PyUnicode_Substring(item,
H A D_sre.c468 return PyUnicode_Substring(string, start, end);
H A D_datetimemodule.c1044 temp = PyUnicode_Substring(repr, 0, PyUnicode_GET_LENGTH(repr) - 1);
1068 temp = PyUnicode_Substring(repr, 0, PyUnicode_GET_LENGTH(repr) - 1);
/external/python/cpython3/Objects/
H A Dfileobject.c117 v = PyUnicode_Substring(result, 0, len-1);
H A Dexceptions.c1374 return PyUnicode_Substring(name, offset, size);
H A Dsetobject.c604 tmp = PyUnicode_Substring(listrepr, 1, PyUnicode_GET_LENGTH(listrepr)-1);
H A Dunicodeobject.c7433 substring = PyUnicode_Substring(unicode, offset, offset+len);
12287 return PyUnicode_Substring(self, i, j);
12291 PyUnicode_Substring(PyObject *self, Py_ssize_t start, Py_ssize_t end) function
12389 return PyUnicode_Substring(self, i, j);
13929 return PyUnicode_Substring(self,
14398 key = PyUnicode_Substring(ctx->fmtstr,
/external/python/cpython3/Objects/stringlib/
H A Dunicode_format.h67 return PyUnicode_Substring(str->str, str->start, str->end);
521 format_spec_object = PyUnicode_Substring(format_spec->str,
/external/python/cpython3/Modules/_io/
H A Dtextio.c365 PyObject *modified = PyUnicode_Substring(output, 0, output_len -1);
1392 chars = PyUnicode_Substring(self->decoded_chars,
1839 s = PyUnicode_Substring(line, start, endpos);
1852 remaining = PyUnicode_Substring(line, endpos, line_len);
1865 PyObject *s = PyUnicode_Substring(line, start, endpos);
/external/python/cpython3/Include/
H A Dunicodeobject.h722 PyAPI_FUNC(PyObject*) PyUnicode_Substring(
/external/python/cpython3/Modules/cjkcodecs/
H A Dmultibytecodec.c809 ctx->pending = PyUnicode_Substring(inbuf, inpos, datalen);

Completed in 746 milliseconds