Lines Matching refs:from_s
2464 const char *from_s, Py_ssize_t from_len, in replace_delete_substring() argument
2476 from_s, from_len, in replace_delete_substring()
2497 from_s, from_len, in replace_delete_substring()
2560 const char *from_s, Py_ssize_t from_len, in replace_substring_in_place() argument
2575 from_s, from_len, in replace_substring_in_place()
2597 from_s, from_len, in replace_substring_in_place()
2674 const char *from_s, Py_ssize_t from_len, in replace_substring() argument
2687 from_s, from_len, in replace_substring()
2713 from_s, from_len, in replace_substring()
2741 const char *from_s, Py_ssize_t from_len, in replace() argument
2778 self, from_s[0], maxcount); in replace()
2780 return replace_delete_substring(self, from_s, from_len, maxcount); in replace()
2790 from_s[0], in replace()
2795 self, from_s, from_len, to_s, to_len, maxcount); in replace()
2801 return replace_single_character(self, from_s[0], in replace()
2805 return replace_substring(self, from_s, from_len, to_s, to_len, maxcount); in replace()
2821 const char *from_s, *to_s; in string_replace() local
2828 from_s = PyString_AS_STRING(from); in string_replace()
2836 else if (PyObject_AsCharBuffer(from, &from_s, &from_len)) in string_replace()
2852 from_s, from_len, in string_replace()