converted_str      73 lib/search/lib.c     GString *converted_str;
converted_str      78 lib/search/lib.c     converted_str = mc_search__recode_str (str->str, str->len, charset, cp_display);
converted_str      80 lib/search/lib.c     dst_len = converted_str->len + 1;  // +1 is required for str_toupper/str_tolower
converted_str      83 lib/search/lib.c     for (src_ptr = converted_str->str, dst_ptr = dst_str; case_conv (src_ptr, &dst_ptr, &dst_len);
converted_str      88 lib/search/lib.c     dst_len = converted_str->len;
converted_str      89 lib/search/lib.c     g_string_free (converted_str, TRUE);
converted_str     156 lib/search/lib.c     GString *converted_str;
converted_str     165 lib/search/lib.c     converted_str = mc_search__recode_str (str, str_len, charset, cp_display);
converted_str     169 lib/search/lib.c     converted_str = g_string_new_len (str, str_len);
converted_str     172 lib/search/lib.c     next_char = str_cget_next_char (converted_str->str);
converted_str     173 lib/search/lib.c     g_string_set_size (converted_str, (gsize) (next_char - converted_str->str));
converted_str     177 lib/search/lib.c         mc_search__recode_str (converted_str->str, converted_str->len, cp_display, charset);
converted_str     180 lib/search/lib.c         *just_letters = str_isalnum (converted_str->str) && !str_isdigit (converted_str->str);
converted_str     182 lib/search/lib.c     g_string_free (converted_str, TRUE);
converted_str     185 lib/search/lib.c     return converted_str;