Searched refs:match_char (Results 1 – 2 of 2) sorted by relevance
88 const char *match_char; in replace_all() local90 while ((match_char = strstr(first_char, oldSubstring))) { in replace_all()91 output.append(first_char, (match_char - first_char)); in replace_all()93 first_char = match_char + oldSubstringLen; in replace_all()
104 const char *match_char; in replace_all() local106 while (NULL != (match_char = strstr(first_char, oldSubstring))) { in replace_all()107 output.append(first_char, (match_char - first_char)); in replace_all()109 first_char = match_char + oldSubstringLen; in replace_all()