match_expr 401 src/editor/editbuffer.c GString *match_expr; match_expr 413 src/editor/editbuffer.c match_expr = g_string_sized_new (16); match_expr 417 src/editor/editbuffer.c c1 = edit_buffer_get_byte (buf, word_start + match_expr->len); match_expr 418 src/editor/editbuffer.c c2 = edit_buffer_get_byte (buf, word_start + match_expr->len + 1); match_expr 419 src/editor/editbuffer.c g_string_append_c (match_expr, c1); match_expr 426 src/editor/editbuffer.c return match_expr; match_expr 221 src/editor/editcomplete.c edit_collect_completions (WEdit *edit, off_t word_start, gsize word_len, const char *match_expr, match_expr 232 src/editor/editcomplete.c srch = mc_search_new (match_expr, cp_source); match_expr 234 src/editor/editcomplete.c srch = mc_search_new (match_expr, NULL); match_expr 429 src/editor/editcomplete.c GString *match_expr; match_expr 440 src/editor/editcomplete.c match_expr = g_string_new ("(^|\\s+|\\b)"); match_expr 442 src/editor/editcomplete.c g_string_append_c (match_expr, edit_buffer_get_byte (&edit->buffer, word_start + i)); match_expr 444 src/editor/editcomplete.c match_expr, match_expr 448 src/editor/editcomplete.c compl = edit_collect_completions (edit, word_start, word_len, match_expr->str, &max_width); match_expr 450 src/editor/editcomplete.c g_string_free (match_expr, TRUE); match_expr 310 src/editor/etags.c editcmd_dialog_select_definition_show (WEdit *edit, char *match_expr, GPtrArray *def_hash) match_expr 341 src/editor/etags.c dialog_colors, NULL, NULL, "[Definitions]", match_expr); match_expr 410 src/editor/etags.c GString *match_expr; match_expr 421 src/editor/etags.c match_expr = g_string_sized_new (word_len); match_expr 423 src/editor/etags.c g_string_append_c (match_expr, edit_buffer_get_byte (&edit->buffer, word_start + i)); match_expr 444 src/editor/etags.c def_hash = etags_set_definition_hash (tagfile, path, match_expr->str); match_expr 451 src/editor/etags.c editcmd_dialog_select_definition_show (edit, match_expr->str, def_hash); match_expr 456 src/editor/etags.c g_string_free (match_expr, TRUE);