Home
last modified time | relevance | path

Searched refs:findchar (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Objects/
Dbytearrayobject.c1534 #define findchar(target, target_len, c) \ macro
1554 while ( (start=findchar(start, end-start, c)) != NULL ) { in countchar()
1656 next = findchar(start, end-start, from_c); in replace_delete_single_character()
1735 next = findchar(self_s, self_len, from_c); in replace_single_character_in_place()
1756 next = findchar(start, end-start, from_c); in replace_single_character_in_place()
1860 next = findchar(start, end-start, from_c); in replace_single_character()
Dstringobject.c2317 #define findchar(target, target_len, c) \ macro
2341 while ( (start=findchar(start, end-start, c)) != NULL ) { in countchar()
2443 next = findchar(start, end-start, from_c); in replace_delete_single_character()
2521 next = findchar(self_s, self_len, from_c); in replace_single_character_in_place()
2542 next = findchar(start, end-start, from_c); in replace_single_character_in_place()
2646 next = findchar(start, end-start, from_c); in replace_single_character()
Dunicodeobject.c3024 Py_LOCAL_INLINE(const Py_UNICODE *) findchar(const Py_UNICODE *s, in findchar() function
3086 *p++ = (findchar(s, size, '\'') && in unicodeescape_string()
3087 !findchar(s, size, '"')) ? '"' : '\''; in unicodeescape_string()
5904 if (!findchar(self->str, self->length, str1->str[0])) in replace()
/external/python/cpython2/Modules/_io/
Dtextio.c1204 findchar(const Py_UNICODE *s, Py_ssize_t size, Py_UNICODE ch) in findchar() function
1274 if (findchar(PyUnicode_AS_UNICODE(text), in textiowrapper_write()
1289 findchar(PyUnicode_AS_UNICODE(text), in textiowrapper_write()