Searched defs:from_c (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython3/Objects/stringlib/
H A Dtransmogrify.h309 char from_c, Py_ssize_t maxcount)
320 count = countchar(self_s, self_len, from_c, maxcount);
337 next = findchar(start, end - start, from_c);
405 char from_c, char to_c,
417 next = findchar(self_s, self_len, from_c);
439 next = findchar(start, end - start, from_c);
504 char from_c,
517 count = countchar(self_s, self_len, from_c, maxcount);
541 next = findchar(start, end - start, from_c);
308 stringlib_replace_delete_single_character(PyObject *self, char from_c, Py_ssize_t maxcount) argument
404 stringlib_replace_single_character_in_place(PyObject *self, char from_c, char to_c, Py_ssize_t maxcount) argument
503 stringlib_replace_single_character(PyObject *self, char from_c, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
/external/python/cpython2/Objects/
H A Dbytearrayobject.c1629 char from_c, Py_ssize_t maxcount)
1640 count = countchar(self_s, self_len, from_c, maxcount);
1656 next = findchar(start, end-start, from_c);
1724 char from_c, char to_c,
1735 next = findchar(self_s, self_len, from_c);
1756 next = findchar(start, end-start, from_c);
1820 char from_c,
1833 count = countchar(self_s, self_len, from_c, maxcount);
1860 next = findchar(start, end-start, from_c);
1628 replace_delete_single_character(PyByteArrayObject *self, char from_c, Py_ssize_t maxcount) argument
1723 replace_single_character_in_place(PyByteArrayObject *self, char from_c, char to_c, Py_ssize_t maxcount) argument
1819 replace_single_character(PyByteArrayObject *self, char from_c, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument
H A Dstringobject.c2416 char from_c, Py_ssize_t maxcount)
2427 count = countchar(self_s, self_len, from_c, maxcount);
2443 next = findchar(start, end-start, from_c);
2510 char from_c, char to_c,
2521 next = findchar(self_s, self_len, from_c);
2542 next = findchar(start, end-start, from_c);
2606 char from_c,
2619 count = countchar(self_s, self_len, from_c, maxcount);
2646 next = findchar(start, end-start, from_c);
2415 replace_delete_single_character(PyStringObject *self, char from_c, Py_ssize_t maxcount) argument
2509 replace_single_character_in_place(PyStringObject *self, char from_c, char to_c, Py_ssize_t maxcount) argument
2605 replace_single_character(PyStringObject *self, char from_c, const char *to_s, Py_ssize_t to_len, Py_ssize_t maxcount) argument

Completed in 210 milliseconds