Searched refs:stringlib_count (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Objects/stringlib/ |
D | count.h | 11 stringlib_count(const STRINGLIB_CHAR* str, Py_ssize_t str_len, in stringlib_count() function
|
/external/python/cpython3/Objects/stringlib/ |
D | transmogrify.h | 407 count = stringlib_count(self_s, self_len, in stringlib_replace_delete_substring() 623 count = stringlib_count(self_s, self_len, in stringlib_replace_substring()
|
/external/python/cpython3/Objects/ |
D | bytes_methods.c | 687 stringlib_count(str + start, end - start, sub, sub_len, PY_SSIZE_T_MAX) in _Py_bytes_count()
|
/external/python/cpython2/Objects/ |
D | bytearrayobject.c | 1242 stringlib_count(str + start, end - start, vsub.buf, vsub.len, PY_SSIZE_T_MAX) in bytearray_count() 1704 count = stringlib_count(self_s, self_len, in replace_delete_substring() 1916 count = stringlib_count(self_s, self_len, in replace_substring()
|
D | stringobject.c | 2156 stringlib_count(str + start, end - start, sub, sub_len, PY_SSIZE_T_MAX) in string_count() 2475 count = stringlib_count(self_s, self_len, in replace_delete_substring() 2686 count = stringlib_count(self_s, self_len, in replace_substring()
|
D | unicodeobject.c | 5393 result = stringlib_count( in PyUnicode_Count() 5950 n = stringlib_count(self->str, self->length, str1->str, str1->length, in replace() 6420 stringlib_count(self->str + start, end - start, in unicode_count()
|