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 222 src/editor/editcomplete.c const char *match_expr, int *max_width) 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 431 src/editor/editcomplete.c GString *match_expr; match_expr 442 src/editor/editcomplete.c match_expr = g_string_new ("(^|\\s+|\\b)"); match_expr 444 src/editor/editcomplete.c g_string_append_c (match_expr, edit_buffer_get_byte (&edit->buffer, word_start + i)); match_expr 445 src/editor/editcomplete.c g_string_append (match_expr, match_expr 449 src/editor/editcomplete.c compl = edit_collect_completions (edit, word_start, word_len, match_expr->str, &max_width); match_expr 451 src/editor/editcomplete.c g_string_free (match_expr, TRUE); match_expr 315 src/editor/etags.c editcmd_dialog_select_definition_show (WEdit *edit, char *match_expr, GPtrArray *def_hash) match_expr 345 src/editor/etags.c dialog_colors, NULL, NULL, "[Definitions]", match_expr); match_expr 414 src/editor/etags.c GString *match_expr; match_expr 425 src/editor/etags.c match_expr = g_string_sized_new (word_len); match_expr 427 src/editor/etags.c g_string_append_c (match_expr, edit_buffer_get_byte (&edit->buffer, word_start + i)); match_expr 448 src/editor/etags.c def_hash = etags_set_definition_hash (tagfile, path, match_expr->str); match_expr 455 src/editor/etags.c editcmd_dialog_select_definition_show (edit, match_expr->str, def_hash); match_expr 460 src/editor/etags.c g_string_free (match_expr, TRUE);