text               42 lib/event-types.h     char **text;
text              220 lib/mcconfig/history.c         char *text = (char *) h->data;
text              223 lib/mcconfig/history.c         if (text == NULL)
text              229 lib/mcconfig/history.c             mc_config_set_string_raw (cfg, name, key, text);
text              233 lib/mcconfig/history.c             if (str_convert (conv, text, buffer) == ESTR_FAILURE)
text              234 lib/mcconfig/history.c                 mc_config_set_string_raw (cfg, name, key, text);
text              109 lib/strutil.h      gboolean (*is_valid_string) (const char *text);
text              111 lib/strutil.h      /*I*/ void (*cnext_char) (const char **text);
text              112 lib/strutil.h      void (*cprev_char) (const char **text);
text              113 lib/strutil.h      void (*cnext_char_safe) (const char **text);
text              114 lib/strutil.h      /*I*/ void (*cprev_char_safe) (const char **text);
text              115 lib/strutil.h      /*I*/ int (*cnext_noncomb_char) (const char **text);
text              116 lib/strutil.h      /*I*/ int (*cprev_noncomb_char) (const char **text, const char *begin);
text              123 lib/strutil.h      /*I*/ int (*length) (const char *text);
text              124 lib/strutil.h      /*I*/ int (*length2) (const char *text, int size);
text              125 lib/strutil.h      /*I*/ int (*length_noncomb) (const char *text);
text              128 lib/strutil.h      void (*fix_string) (char *text);
text              129 lib/strutil.h      /*I*/ const char *(*term_form) (const char *text);
text              130 lib/strutil.h      /*I*/ const char *(*fit_to_term) (const char *text, int width, align_crt_t just_mode);
text              131 lib/strutil.h      /*I*/ const char *(*term_trim) (const char *text, int width);
text              132 lib/strutil.h      /*I*/ const char *(*term_substring) (const char *text, int start, int width);
text              133 lib/strutil.h      /*I*/ int (*term_width1) (const char *text);
text              134 lib/strutil.h      /*I*/ int (*term_width2) (const char *text, size_t length);
text              137 lib/strutil.h      /*I*/ int (*offset_to_pos) (const char *text, size_t length);
text              138 lib/strutil.h      /*I*/ int (*column_to_pos) (const char *text, size_t pos);
text              141 lib/strutil.h      const char *(*search_first) (const char *text, const char *needle, gboolean case_sen);
text              142 lib/strutil.h      const char *(*search_last) (const char *text, const char *needle, gboolean case_sen);
text              147 lib/strutil.h      /*I*/ int (*prefix) (const char *text, const char *prefix);
text              148 lib/strutil.h      /*I*/ int (*caseprefix) (const char *text, const char *prefix);
text              149 lib/strutil.h      /*I*/ char *(*create_key) (const char *text, gboolean case_sen);
text              150 lib/strutil.h      /*I*/ char *(*create_key_for_filename) (const char *text, gboolean case_sen);
text              246 lib/strutil.h  gboolean str_is_valid_string (const char *text);
text              258 lib/strutil.h  char *str_get_next_char (char *text);
text              259 lib/strutil.h  const char *str_cget_next_char (const char *text);
text              263 lib/strutil.h  char *str_get_prev_char (char *text);
text              264 lib/strutil.h  const char *str_cget_prev_char (const char *text);
text              268 lib/strutil.h  void str_next_char (char **text);
text              269 lib/strutil.h  void str_cnext_char (const char **text);
text              273 lib/strutil.h  void str_prev_char (char **text);
text              274 lib/strutil.h  void str_cprev_char (const char **text);
text              280 lib/strutil.h  char *str_get_next_char_safe (char *text);
text              281 lib/strutil.h  const char *str_cget_next_char_safe (const char *text);
text              287 lib/strutil.h  char *str_get_prev_char_safe (char *text);
text              288 lib/strutil.h  const char *str_cget_prev_char_safe (const char *text);
text              294 lib/strutil.h  void str_next_char_safe (char **text);
text              295 lib/strutil.h  void str_cnext_char_safe (const char **text);
text              301 lib/strutil.h  void str_prev_char_safe (char **text);
text              302 lib/strutil.h  void str_cprev_char_safe (const char **text);
text              309 lib/strutil.h  int str_next_noncomb_char (char **text);
text              310 lib/strutil.h  int str_cnext_noncomb_char (const char **text);
text              317 lib/strutil.h  int str_prev_noncomb_char (char **text, const char *begin);
text              318 lib/strutil.h  int str_cprev_noncomb_char (const char **text, const char *begin);
text              366 lib/strutil.h  int str_length (const char *text);
text              371 lib/strutil.h  int str_length2 (const char *text, int size);
text              376 lib/strutil.h  int str_length_char (const char *text);
text              381 lib/strutil.h  int str_length_noncomb (const char *text);
text              387 lib/strutil.h  void str_fix_string (char *text);
text              395 lib/strutil.h  const char *str_term_form (const char *text);
text              402 lib/strutil.h  const char *str_fit_to_term (const char *text, int width, align_crt_t just_mode);
text              409 lib/strutil.h  const char *str_term_trim (const char *text, int width);
text              416 lib/strutil.h  const char *str_term_substring (const char *text, int start, int width);
text              421 lib/strutil.h  int str_term_width1 (const char *text);
text              427 lib/strutil.h  int str_term_width2 (const char *text, size_t length);
text              433 lib/strutil.h  int str_term_char_width (const char *text);
text              438 lib/strutil.h  int str_offset_to_pos (const char *text, size_t length);
text              443 lib/strutil.h  int str_column_to_pos (const char *text, size_t pos);
text              449 lib/strutil.h  const char *str_trunc (const char *text, int width);
text              463 lib/strutil.h  const char *str_search_first (const char *text, const char *needle, gboolean case_sen);
text              467 lib/strutil.h  const char *str_search_last (const char *text, const char *needle, gboolean case_sen);
text              497 lib/strutil.h  int str_prefix (const char *text, const char *prefix);
text              502 lib/strutil.h  int str_caseprefix (const char *text, const char *prefix);
text              507 lib/strutil.h  char *str_create_key (const char *text, gboolean case_sen);
text              513 lib/strutil.h  char *str_create_key_for_filename (const char *text, gboolean case_sen);
text              544 lib/strutil.h  void str_msg_term_size (const char *text, int *lines, int *columns);
text              570 lib/strutil.h  char *str_shell_unescape (const char *text);
text              571 lib/strutil.h  char *str_shell_escape (const char *text);
text              573 lib/strutil.h  char *str_glob_escape (const char *text);
text              574 lib/strutil.h  char *str_glob_unescape (const char *text);
text              576 lib/strutil.h  char *str_regex_escape (const char *text);
text              577 lib/strutil.h  char *str_regex_unescape (const char *text);
text              218 lib/strutil/strescape.c str_shell_unescape (const char *text)
text              220 lib/strutil/strescape.c     return str_unescape (text, -1, ESCAPE_SHELL_CHARS, TRUE);
text              226 lib/strutil/strescape.c str_glob_unescape (const char *text)
text              228 lib/strutil/strescape.c     return str_unescape (text, -1, ESCAPE_GLOB_CHARS, TRUE);
text              233 lib/strutil/strescape.c str_regex_unescape (const char *text)
text              235 lib/strutil/strescape.c     return str_unescape (text, -1, ESCAPE_REGEX_CHARS, TRUE);
text              442 lib/strutil/strutil.c str_term_form (const char *text)
text              444 lib/strutil/strutil.c     return used_class.term_form (text);
text              450 lib/strutil/strutil.c str_fit_to_term (const char *text, int width, align_crt_t just_mode)
text              452 lib/strutil/strutil.c     return used_class.fit_to_term (text, width, just_mode);
text              458 lib/strutil/strutil.c str_term_trim (const char *text, int width)
text              460 lib/strutil/strutil.c     return used_class.term_trim (text, width);
text              466 lib/strutil/strutil.c str_term_substring (const char *text, int start, int width)
text              468 lib/strutil/strutil.c     return used_class.term_substring (text, start, width);
text              474 lib/strutil/strutil.c str_get_next_char (char *text)
text              477 lib/strutil/strutil.c     used_class.cnext_char ((const char **) &text);
text              478 lib/strutil/strutil.c     return text;
text              484 lib/strutil/strutil.c str_cget_next_char (const char *text)
text              486 lib/strutil/strutil.c     used_class.cnext_char (&text);
text              487 lib/strutil/strutil.c     return text;
text              493 lib/strutil/strutil.c str_next_char (char **text)
text              495 lib/strutil/strutil.c     used_class.cnext_char ((const char **) text);
text              501 lib/strutil/strutil.c str_cnext_char (const char **text)
text              503 lib/strutil/strutil.c     used_class.cnext_char (text);
text              509 lib/strutil/strutil.c str_get_prev_char (char *text)
text              511 lib/strutil/strutil.c     used_class.cprev_char ((const char **) &text);
text              512 lib/strutil/strutil.c     return text;
text              518 lib/strutil/strutil.c str_cget_prev_char (const char *text)
text              520 lib/strutil/strutil.c     used_class.cprev_char (&text);
text              521 lib/strutil/strutil.c     return text;
text              527 lib/strutil/strutil.c str_prev_char (char **text)
text              529 lib/strutil/strutil.c     used_class.cprev_char ((const char **) text);
text              535 lib/strutil/strutil.c str_cprev_char (const char **text)
text              537 lib/strutil/strutil.c     used_class.cprev_char (text);
text              543 lib/strutil/strutil.c str_get_next_char_safe (char *text)
text              545 lib/strutil/strutil.c     used_class.cnext_char_safe ((const char **) &text);
text              546 lib/strutil/strutil.c     return text;
text              552 lib/strutil/strutil.c str_cget_next_char_safe (const char *text)
text              554 lib/strutil/strutil.c     used_class.cnext_char_safe (&text);
text              555 lib/strutil/strutil.c     return text;
text              561 lib/strutil/strutil.c str_next_char_safe (char **text)
text              563 lib/strutil/strutil.c     used_class.cnext_char_safe ((const char **) text);
text              569 lib/strutil/strutil.c str_cnext_char_safe (const char **text)
text              571 lib/strutil/strutil.c     used_class.cnext_char_safe (text);
text              577 lib/strutil/strutil.c str_get_prev_char_safe (char *text)
text              579 lib/strutil/strutil.c     used_class.cprev_char_safe ((const char **) &text);
text              580 lib/strutil/strutil.c     return text;
text              586 lib/strutil/strutil.c str_cget_prev_char_safe (const char *text)
text              588 lib/strutil/strutil.c     used_class.cprev_char_safe (&text);
text              589 lib/strutil/strutil.c     return text;
text              595 lib/strutil/strutil.c str_prev_char_safe (char **text)
text              597 lib/strutil/strutil.c     used_class.cprev_char_safe ((const char **) text);
text              603 lib/strutil/strutil.c str_cprev_char_safe (const char **text)
text              605 lib/strutil/strutil.c     used_class.cprev_char_safe (text);
text              611 lib/strutil/strutil.c str_next_noncomb_char (char **text)
text              613 lib/strutil/strutil.c     return used_class.cnext_noncomb_char ((const char **) text);
text              619 lib/strutil/strutil.c str_cnext_noncomb_char (const char **text)
text              621 lib/strutil/strutil.c     return used_class.cnext_noncomb_char (text);
text              627 lib/strutil/strutil.c str_prev_noncomb_char (char **text, const char *begin)
text              629 lib/strutil/strutil.c     return used_class.cprev_noncomb_char ((const char **) text, begin);
text              635 lib/strutil/strutil.c str_cprev_noncomb_char (const char **text, const char *begin)
text              637 lib/strutil/strutil.c     return used_class.cprev_noncomb_char (text, begin);
text              651 lib/strutil/strutil.c str_term_width1 (const char *text)
text              653 lib/strutil/strutil.c     return used_class.term_width1 (text);
text              659 lib/strutil/strutil.c str_term_width2 (const char *text, size_t length)
text              661 lib/strutil/strutil.c     return used_class.term_width2 (text, length);
text              667 lib/strutil/strutil.c str_term_char_width (const char *text)
text              669 lib/strutil/strutil.c     return used_class.term_char_width (text);
text              675 lib/strutil/strutil.c str_offset_to_pos (const char *text, size_t length)
text              677 lib/strutil/strutil.c     return used_class.offset_to_pos (text, length);
text              683 lib/strutil/strutil.c str_length (const char *text)
text              685 lib/strutil/strutil.c     return used_class.length (text);
text              691 lib/strutil/strutil.c str_length_char (const char *text)
text              693 lib/strutil/strutil.c     return str_cget_next_char_safe (text) - text;
text              699 lib/strutil/strutil.c str_length2 (const char *text, int size)
text              701 lib/strutil/strutil.c     return used_class.length2 (text, size);
text              707 lib/strutil/strutil.c str_length_noncomb (const char *text)
text              709 lib/strutil/strutil.c     return used_class.length_noncomb (text);
text              715 lib/strutil/strutil.c str_column_to_pos (const char *text, size_t pos)
text              717 lib/strutil/strutil.c     return used_class.column_to_pos (text, pos);
text              787 lib/strutil/strutil.c str_trunc (const char *text, int width)
text              789 lib/strutil/strutil.c     return used_class.trunc (text, width);
text              811 lib/strutil/strutil.c str_search_first (const char *text, const char *search, gboolean case_sen)
text              813 lib/strutil/strutil.c     return used_class.search_first (text, search, case_sen);
text              819 lib/strutil/strutil.c str_search_last (const char *text, const char *search, gboolean case_sen)
text              821 lib/strutil/strutil.c     return used_class.search_last (text, search, case_sen);
text              827 lib/strutil/strutil.c str_is_valid_string (const char *text)
text              829 lib/strutil/strutil.c     return used_class.is_valid_string (text);
text              867 lib/strutil/strutil.c str_prefix (const char *text, const char *prefix)
text              869 lib/strutil/strutil.c     return used_class.prefix (text, prefix);
text              875 lib/strutil/strutil.c str_caseprefix (const char *text, const char *prefix)
text              877 lib/strutil/strutil.c     return used_class.caseprefix (text, prefix);
text              883 lib/strutil/strutil.c str_fix_string (char *text)
text              885 lib/strutil/strutil.c     used_class.fix_string (text);
text              891 lib/strutil/strutil.c str_create_key (const char *text, gboolean case_sen)
text              893 lib/strutil/strutil.c     return used_class.create_key (text, case_sen);
text              899 lib/strutil/strutil.c str_create_key_for_filename (const char *text, gboolean case_sen)
text              901 lib/strutil/strutil.c     return used_class.create_key_for_filename (text, case_sen);
text              923 lib/strutil/strutil.c str_msg_term_size (const char *text, int *lines, int *columns)
text              932 lib/strutil/strutil.c     tmp = g_strdup (text);
text               85 lib/strutil/strutil8bit.c str_8bit_is_valid_string (const char *text)
text               87 lib/strutil/strutil8bit.c     (void) text;
text              104 lib/strutil/strutil8bit.c str_8bit_cnext_char (const char **text)
text              106 lib/strutil/strutil8bit.c     (*text)++;
text              112 lib/strutil/strutil8bit.c str_8bit_cprev_char (const char **text)
text              114 lib/strutil/strutil8bit.c     (*text)--;
text              120 lib/strutil/strutil8bit.c str_8bit_cnext_noncomb_char (const char **text)
text              122 lib/strutil/strutil8bit.c     if (*text[0] == '\0')
text              125 lib/strutil/strutil8bit.c     (*text)++;
text              132 lib/strutil/strutil8bit.c str_8bit_cprev_noncomb_char (const char **text, const char *begin)
text              134 lib/strutil/strutil8bit.c     if ((*text) == begin)
text              137 lib/strutil/strutil8bit.c     (*text)--;
text              144 lib/strutil/strutil8bit.c str_8bit_isspace (const char *text)
text              146 lib/strutil/strutil8bit.c     return char_isspace (text[0]) != 0;
text              152 lib/strutil/strutil8bit.c str_8bit_ispunct (const char *text)
text              154 lib/strutil/strutil8bit.c     return char_ispunct (text[0]) != 0;
text              160 lib/strutil/strutil8bit.c str_8bit_isalnum (const char *text)
text              162 lib/strutil/strutil8bit.c     return char_isalnum (text[0]) != 0;
text              168 lib/strutil/strutil8bit.c str_8bit_isdigit (const char *text)
text              170 lib/strutil/strutil8bit.c     return char_isdigit (text[0]) != 0;
text              176 lib/strutil/strutil8bit.c str_8bit_isprint (const char *text)
text              178 lib/strutil/strutil8bit.c     return char_isprint (text[0]) != 0;
text              184 lib/strutil/strutil8bit.c str_8bit_iscombiningmark (const char *text)
text              186 lib/strutil/strutil8bit.c     (void) text;
text              193 lib/strutil/strutil8bit.c str_8bit_toupper (const char *text, char **out, size_t *remain)
text              198 lib/strutil/strutil8bit.c     (*out)[0] = char_toupper (text[0]);
text              207 lib/strutil/strutil8bit.c str_8bit_tolower (const char *text, char **out, size_t *remain)
text              212 lib/strutil/strutil8bit.c     (*out)[0] = char_tolower (text[0]);
text              221 lib/strutil/strutil8bit.c str_8bit_length (const char *text)
text              223 lib/strutil/strutil8bit.c     return strlen (text);
text              229 lib/strutil/strutil8bit.c str_8bit_length2 (const char *text, int size)
text              233 lib/strutil/strutil8bit.c     length = strlen (text);
text              289 lib/strutil/strutil8bit.c str_8bit_term_form (const char *text)
text              299 lib/strutil/strutil8bit.c     length = strlen (text);
text              302 lib/strutil/strutil8bit.c         actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              311 lib/strutil/strutil8bit.c str_8bit_fit_to_term (const char *text, int width, align_crt_t just_mode)
text              320 lib/strutil/strutil8bit.c     length = strlen (text);
text              346 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              359 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              369 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              387 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              400 lib/strutil/strutil8bit.c str_8bit_term_trim (const char *text, int width)
text              407 lib/strutil/strutil8bit.c     length = strlen (text);
text              418 lib/strutil/strutil8bit.c                 actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              432 lib/strutil/strutil8bit.c                 actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              443 lib/strutil/strutil8bit.c str_8bit_term_width2 (const char *text, size_t length)
text              447 lib/strutil/strutil8bit.c     text_len = strlen (text);
text              455 lib/strutil/strutil8bit.c str_8bit_term_width1 (const char *text)
text              457 lib/strutil/strutil8bit.c     return str_8bit_term_width2 (text, (size_t) (-1));
text              463 lib/strutil/strutil8bit.c str_8bit_term_char_width (const char *text)
text              465 lib/strutil/strutil8bit.c     (void) text;
text              472 lib/strutil/strutil8bit.c str_8bit_term_substring (const char *text, int start, int width)
text              481 lib/strutil/strutil8bit.c     length = strlen (text);
text              489 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              502 lib/strutil/strutil8bit.c str_8bit_trunc (const char *text, int width)
text              512 lib/strutil/strutil8bit.c     length = strlen (text);
text              517 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              527 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              532 lib/strutil/strutil8bit.c             actual[0] = char_isprint (text[pos]) ? text[pos] : '.';
text              543 lib/strutil/strutil8bit.c str_8bit_offset_to_pos (const char *text, size_t length)
text              545 lib/strutil/strutil8bit.c     (void) text;
text              552 lib/strutil/strutil8bit.c str_8bit_column_to_pos (const char *text, size_t pos)
text              554 lib/strutil/strutil8bit.c     (void) text;
text              597 lib/strutil/strutil8bit.c str_8bit_search_first (const char *text, const char *search, gboolean case_sen)
text              603 lib/strutil/strutil8bit.c     fold_text = case_sen ? (char *) text : str_8bit_strdown (text);
text              612 lib/strutil/strutil8bit.c         match = text + offset;
text              627 lib/strutil/strutil8bit.c str_8bit_search_last (const char *text, const char *search, gboolean case_sen)
text              633 lib/strutil/strutil8bit.c     fold_text = case_sen ? (char *) text : str_8bit_strdown (text);
text              642 lib/strutil/strutil8bit.c         match = text + offset;
text              755 lib/strutil/strutil8bit.c str_8bit_prefix (const char *text, const char *prefix)
text              760 lib/strutil/strutil8bit.c          text[result] != '\0' && prefix[result] != '\0' && text[result] == prefix[result]; result++)
text              769 lib/strutil/strutil8bit.c str_8bit_caseprefix (const char *text, const char *prefix)
text              773 lib/strutil/strutil8bit.c     for (result = 0; text[result] != '\0' && prefix[result] != '\0'
text              774 lib/strutil/strutil8bit.c          && char_toupper (text[result]) == char_toupper (prefix[result]);
text              784 lib/strutil/strutil8bit.c str_8bit_fix_string (char *text)
text              786 lib/strutil/strutil8bit.c     (void) text;
text              792 lib/strutil/strutil8bit.c str_8bit_create_key (const char *text, gboolean case_sen)
text              794 lib/strutil/strutil8bit.c     return case_sen ? (char *) text : str_8bit_strdown (text);
text               63 lib/strutil/strutilascii.c str_ascii_is_valid_string (const char *text)
text               65 lib/strutil/strutilascii.c     (void) text;
text               82 lib/strutil/strutilascii.c str_ascii_cnext_char (const char **text)
text               84 lib/strutil/strutilascii.c     (*text)++;
text               90 lib/strutil/strutilascii.c str_ascii_cprev_char (const char **text)
text               92 lib/strutil/strutilascii.c     (*text)--;
text               98 lib/strutil/strutilascii.c str_ascii_cnext_noncomb_char (const char **text)
text              100 lib/strutil/strutilascii.c     if (*text[0] == '\0')
text              103 lib/strutil/strutilascii.c     (*text)++;
text              110 lib/strutil/strutilascii.c str_ascii_cprev_noncomb_char (const char **text, const char *begin)
text              112 lib/strutil/strutilascii.c     if ((*text) == begin)
text              115 lib/strutil/strutilascii.c     (*text)--;
text              122 lib/strutil/strutilascii.c str_ascii_isspace (const char *text)
text              124 lib/strutil/strutilascii.c     return g_ascii_isspace ((gchar) text[0]);
text              130 lib/strutil/strutilascii.c str_ascii_ispunct (const char *text)
text              132 lib/strutil/strutilascii.c     return g_ascii_ispunct ((gchar) text[0]);
text              138 lib/strutil/strutilascii.c str_ascii_isalnum (const char *text)
text              140 lib/strutil/strutilascii.c     return g_ascii_isalnum ((gchar) text[0]);
text              146 lib/strutil/strutilascii.c str_ascii_isdigit (const char *text)
text              148 lib/strutil/strutilascii.c     return g_ascii_isdigit ((gchar) text[0]);
text              154 lib/strutil/strutilascii.c str_ascii_isprint (const char *text)
text              156 lib/strutil/strutilascii.c     return g_ascii_isprint ((gchar) text[0]);
text              162 lib/strutil/strutilascii.c str_ascii_iscombiningmark (const char *text)
text              164 lib/strutil/strutilascii.c     (void) text;
text              171 lib/strutil/strutilascii.c str_ascii_toupper (const char *text, char **out, size_t *remain)
text              176 lib/strutil/strutilascii.c     (*out)[0] = (char) g_ascii_toupper ((gchar) text[0]);
text              185 lib/strutil/strutilascii.c str_ascii_tolower (const char *text, char **out, size_t *remain)
text              190 lib/strutil/strutilascii.c     (*out)[0] = (char) g_ascii_tolower ((gchar) text[0]);
text              199 lib/strutil/strutilascii.c str_ascii_length (const char *text)
text              201 lib/strutil/strutilascii.c     return strlen (text);
text              207 lib/strutil/strutilascii.c str_ascii_length2 (const char *text, int size)
text              211 lib/strutil/strutilascii.c     length = strlen (text);
text              241 lib/strutil/strutilascii.c str_ascii_term_form (const char *text)
text              251 lib/strutil/strutilascii.c     length = strlen (text);
text              256 lib/strutil/strutilascii.c         actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              267 lib/strutil/strutilascii.c str_ascii_fit_to_term (const char *text, int width, align_crt_t just_mode)
text              276 lib/strutil/strutilascii.c     length = strlen (text);
text              305 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              323 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              338 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              361 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              376 lib/strutil/strutilascii.c str_ascii_term_trim (const char *text, int width)
text              383 lib/strutil/strutilascii.c     length = strlen (text);
text              396 lib/strutil/strutilascii.c                 actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              414 lib/strutil/strutilascii.c                 actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              427 lib/strutil/strutilascii.c str_ascii_term_width2 (const char *text, size_t length)
text              431 lib/strutil/strutilascii.c     text_len = strlen (text);
text              439 lib/strutil/strutilascii.c str_ascii_term_width1 (const char *text)
text              441 lib/strutil/strutilascii.c     return str_ascii_term_width2 (text, (size_t) (-1));
text              447 lib/strutil/strutilascii.c str_ascii_term_char_width (const char *text)
text              449 lib/strutil/strutilascii.c     (void) text;
text              456 lib/strutil/strutilascii.c str_ascii_term_substring (const char *text, int start, int width)
text              465 lib/strutil/strutilascii.c     length = strlen (text);
text              475 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              491 lib/strutil/strutilascii.c str_ascii_trunc (const char *text, int width)
text              501 lib/strutil/strutilascii.c     length = strlen (text);
text              508 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              523 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              532 lib/strutil/strutilascii.c             actual[0] = isascii ((unsigned char) text[pos]) ? text[pos] : '?';
text              545 lib/strutil/strutilascii.c str_ascii_offset_to_pos (const char *text, size_t length)
text              547 lib/strutil/strutilascii.c     (void) text;
text              554 lib/strutil/strutilascii.c str_ascii_column_to_pos (const char *text, size_t pos)
text              556 lib/strutil/strutilascii.c     (void) text;
text              581 lib/strutil/strutilascii.c str_ascii_search_first (const char *text, const char *search, gboolean case_sen)
text              587 lib/strutil/strutilascii.c     fold_text = case_sen ? (char *) text : g_ascii_strdown (text, -1);
text              596 lib/strutil/strutilascii.c         match = text + offset;
text              611 lib/strutil/strutilascii.c str_ascii_search_last (const char *text, const char *search, gboolean case_sen)
text              617 lib/strutil/strutilascii.c     fold_text = case_sen ? (char *) text : g_ascii_strdown (text, -1);
text              626 lib/strutil/strutilascii.c         match = text + offset;
text              683 lib/strutil/strutilascii.c str_ascii_fix_string (char *text)
text              685 lib/strutil/strutilascii.c     for (; text[0] != '\0'; text++)
text              686 lib/strutil/strutilascii.c         text[0] = ((unsigned char) text[0] < 128) ? text[0] : '?';
text              692 lib/strutil/strutilascii.c str_ascii_create_key (const char *text, gboolean case_sen)
text              695 lib/strutil/strutilascii.c     return (char *) text;
text              718 lib/strutil/strutilascii.c str_ascii_prefix (const char *text, const char *prefix)
text              723 lib/strutil/strutilascii.c          text[result] != '\0' && prefix[result] != '\0' && text[result] == prefix[result]; result++)
text              732 lib/strutil/strutilascii.c str_ascii_caseprefix (const char *text, const char *prefix)
text              736 lib/strutil/strutilascii.c     for (result = 0; text[result] != '\0' && prefix[result] != '\0'
text              737 lib/strutil/strutilascii.c          && g_ascii_toupper (text[result]) == g_ascii_toupper (prefix[result]);
text               55 lib/strutil/strutilutf8.c     char text[BUF_MEDIUM * MB_LEN_MAX];
text               91 lib/strutil/strutilutf8.c str_utf8_is_valid_string (const char *text)
text               93 lib/strutil/strutilutf8.c     return g_utf8_validate (text, -1, NULL);
text              115 lib/strutil/strutilutf8.c str_utf8_cnext_char (const char **text)
text              117 lib/strutil/strutilutf8.c     (*text) = g_utf8_next_char (*text);
text              123 lib/strutil/strutilutf8.c str_utf8_cprev_char (const char **text)
text              125 lib/strutil/strutilutf8.c     (*text) = g_utf8_prev_char (*text);
text              131 lib/strutil/strutilutf8.c str_utf8_cnext_char_safe (const char **text)
text              133 lib/strutil/strutilutf8.c     if (str_utf8_is_valid_char (*text, -1) == 1)
text              134 lib/strutil/strutilutf8.c         (*text) = g_utf8_next_char (*text);
text              136 lib/strutil/strutilutf8.c         (*text)++;
text              142 lib/strutil/strutilutf8.c str_utf8_cprev_char_safe (const char **text)
text              146 lib/strutil/strutilutf8.c     result = g_utf8_prev_char (*text);
text              149 lib/strutil/strutilutf8.c     if (t == *text)
text              150 lib/strutil/strutilutf8.c         (*text) = result;
text              152 lib/strutil/strutilutf8.c         (*text)--;
text              158 lib/strutil/strutilutf8.c str_utf8_fix_string (char *text)
text              160 lib/strutil/strutilutf8.c     while (text[0] != '\0')
text              164 lib/strutil/strutilutf8.c         uni = g_utf8_get_char_validated (text, -1);
text              166 lib/strutil/strutilutf8.c             text = g_utf8_next_char (text);
text              169 lib/strutil/strutilutf8.c             text[0] = '?';
text              170 lib/strutil/strutilutf8.c             text++;
text              178 lib/strutil/strutilutf8.c str_utf8_isspace (const char *text)
text              182 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (text, -1);
text              189 lib/strutil/strutilutf8.c str_utf8_ispunct (const char *text)
text              193 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (text, -1);
text              200 lib/strutil/strutilutf8.c str_utf8_isalnum (const char *text)
text              204 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (text, -1);
text              211 lib/strutil/strutilutf8.c str_utf8_isdigit (const char *text)
text              215 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (text, -1);
text              244 lib/strutil/strutilutf8.c str_utf8_cnext_noncomb_char (const char **text)
text              248 lib/strutil/strutilutf8.c     while ((*text)[0] != '\0')
text              250 lib/strutil/strutilutf8.c         str_utf8_cnext_char_safe (text);
text              252 lib/strutil/strutilutf8.c         if (!str_utf8_iscombiningmark (*text))
text              262 lib/strutil/strutilutf8.c str_utf8_cprev_noncomb_char (const char **text, const char *begin)
text              266 lib/strutil/strutilutf8.c     while ((*text) != begin)
text              268 lib/strutil/strutilutf8.c         str_utf8_cprev_char_safe (text);
text              270 lib/strutil/strutilutf8.c         if (!str_utf8_iscombiningmark (*text))
text              280 lib/strutil/strutilutf8.c str_utf8_toupper (const char *text, char **out, size_t *remain)
text              285 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (text, -1);
text              303 lib/strutil/strutilutf8.c str_utf8_tolower (const char *text, char **out, size_t *remain)
text              308 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (text, -1);
text              326 lib/strutil/strutilutf8.c str_utf8_length (const char *text)
text              332 lib/strutil/strutilutf8.c     start = text;
text              342 lib/strutil/strutilutf8.c     if (start == text)
text              343 lib/strutil/strutilutf8.c         result = g_utf8_strlen (text, -1);
text              353 lib/strutil/strutilutf8.c str_utf8_length2 (const char *text, int size)
text              359 lib/strutil/strutilutf8.c     start = text;
text              372 lib/strutil/strutilutf8.c     if (start == text)
text              373 lib/strutil/strutilutf8.c         result = g_utf8_strlen (text, size);
text              383 lib/strutil/strutilutf8.c str_utf8_length_noncomb (const char *text)
text              386 lib/strutil/strutilutf8.c     const char *t = text;
text              443 lib/strutil/strutilutf8.c str_utf8_make_make_term_form (const char *text, size_t length)
text              450 lib/strutil/strutilutf8.c     result.text[0] = '\0';
text              453 lib/strutil/strutilutf8.c     actual = result.text;
text              457 lib/strutil/strutilutf8.c     if (length != 0 && text[0] != '\0')
text              459 lib/strutil/strutilutf8.c         uni = g_utf8_get_char_validated (text, -1);
text              470 lib/strutil/strutilutf8.c     while (length != 0 && text[0] != '\0')
text              472 lib/strutil/strutilutf8.c         uni = g_utf8_get_char_validated (text, -1);
text              494 lib/strutil/strutilutf8.c             text = g_utf8_next_char (text);
text              500 lib/strutil/strutilutf8.c             text++;
text              519 lib/strutil/strutilutf8.c str_utf8_term_form (const char *text)
text              524 lib/strutil/strutilutf8.c     pre_form = str_utf8_make_make_term_form (text, (size_t) (-1));
text              529 lib/strutil/strutilutf8.c         composed = g_utf8_normalize (pre_form->text, -1, G_NORMALIZE_DEFAULT_COMPOSE);
text              534 lib/strutil/strutilutf8.c         g_strlcpy (result, pre_form->text, sizeof (result));
text              684 lib/strutil/strutilutf8.c str_utf8_fit_to_term (const char *text, int width, align_crt_t just_mode)
text              690 lib/strutil/strutilutf8.c     pre_form = str_utf8_make_make_term_form (text, (size_t) (-1));
text              691 lib/strutil/strutilutf8.c     tool.checked = pre_form->text;
text              757 lib/strutil/strutilutf8.c str_utf8_term_trim (const char *text, int width)
text              769 lib/strutil/strutilutf8.c     pre_form = str_utf8_make_make_term_form (text, (size_t) (-1));
text              771 lib/strutil/strutilutf8.c     tool.checked = pre_form->text;
text              804 lib/strutil/strutilutf8.c str_utf8_term_width2 (const char *text, size_t length)
text              808 lib/strutil/strutilutf8.c     result = str_utf8_make_make_term_form (text, length);
text              815 lib/strutil/strutilutf8.c str_utf8_term_width1 (const char *text)
text              817 lib/strutil/strutilutf8.c     return str_utf8_term_width2 (text, (size_t) (-1));
text              823 lib/strutil/strutilutf8.c str_utf8_term_char_width (const char *text)
text              827 lib/strutil/strutilutf8.c     uni = g_utf8_get_char_validated (text, -1);
text              834 lib/strutil/strutilutf8.c str_utf8_term_substring (const char *text, int start, int width)
text              840 lib/strutil/strutilutf8.c     pre_form = str_utf8_make_make_term_form (text, (size_t) (-1));
text              842 lib/strutil/strutilutf8.c     tool.checked = pre_form->text;
text              865 lib/strutil/strutilutf8.c str_utf8_trunc (const char *text, int width)
text              871 lib/strutil/strutilutf8.c     pre_form = str_utf8_make_make_term_form (text, (size_t) (-1));
text              873 lib/strutil/strutilutf8.c     tool.checked = pre_form->text;
text              900 lib/strutil/strutilutf8.c str_utf8_offset_to_pos (const char *text, size_t length)
text              902 lib/strutil/strutilutf8.c     if (str_utf8_is_valid_string (text))
text              903 lib/strutil/strutilutf8.c         return g_utf8_offset_to_pointer (text, length) - text;
text              909 lib/strutil/strutilutf8.c         buffer = g_strdup (text);
text              920 lib/strutil/strutilutf8.c str_utf8_column_to_pos (const char *text, size_t pos)
text              925 lib/strutil/strutilutf8.c     while (text[0] != '\0')
text              929 lib/strutil/strutilutf8.c         uni = g_utf8_get_char_validated (text, MB_LEN_MAX);
text              945 lib/strutil/strutilutf8.c             text = g_utf8_next_char (text);
text              949 lib/strutil/strutilutf8.c             text++;
text              993 lib/strutil/strutilutf8.c str_utf8_search_first (const char *text, const char *search, gboolean case_sen)
text             1001 lib/strutil/strutilutf8.c         deco_text = g_utf8_normalize (text, -1, G_NORMALIZE_ALL);
text             1006 lib/strutil/strutilutf8.c         fold_text = g_utf8_casefold (text, -1);
text             1024 lib/strutil/strutilutf8.c                 result = text;
text             1045 lib/strutil/strutilutf8.c str_utf8_search_last (const char *text, const char *search, gboolean case_sen)
text             1053 lib/strutil/strutilutf8.c         deco_text = g_utf8_normalize (text, -1, G_NORMALIZE_ALL);
text             1058 lib/strutil/strutilutf8.c         fold_text = g_utf8_casefold (text, -1);
text             1075 lib/strutil/strutilutf8.c                 result = text;
text             1096 lib/strutil/strutilutf8.c str_utf8_normalize (const char *text)
text             1112 lib/strutil/strutilutf8.c     for (end = text; *end != '\0'; end++)
text             1121 lib/strutil/strutilutf8.c         return g_strndup (text, end - text);
text             1125 lib/strutil/strutilutf8.c     start = text;
text             1138 lib/strutil/strutilutf8.c     if (start == text)
text             1140 lib/strutil/strutilutf8.c         result = g_utf8_normalize (text, -1, G_NORMALIZE_ALL);
text             1160 lib/strutil/strutilutf8.c str_utf8_casefold_normalize (const char *text)
text             1170 lib/strutil/strutilutf8.c     start = text;
text             1185 lib/strutil/strutilutf8.c     if (start == text)
text             1187 lib/strutil/strutilutf8.c         fold = g_utf8_casefold (text, -1);
text             1293 lib/strutil/strutilutf8.c str_utf8_prefix (const char *text, const char *prefix)
text             1300 lib/strutil/strutilutf8.c     t = str_utf8_normalize (text);
text             1330 lib/strutil/strutilutf8.c str_utf8_caseprefix (const char *text, const char *prefix)
text             1337 lib/strutil/strutilutf8.c     t = str_utf8_casefold_normalize (text);
text             1367 lib/strutil/strutilutf8.c str_utf8_create_key_gen (const char *text, gboolean case_sen,
text             1368 lib/strutil/strutilutf8.c                          gchar *(*keygen) (const gchar *text, gssize size))
text             1373 lib/strutil/strutilutf8.c         result = str_utf8_normalize (text);
text             1381 lib/strutil/strutilutf8.c         dot = text[0] == '.';
text             1385 lib/strutil/strutilutf8.c             start = text;
text             1388 lib/strutil/strutilutf8.c             start = text + 1;
text             1406 lib/strutil/strutilutf8.c         if (start == text)
text             1413 lib/strutil/strutilutf8.c         else if (dot && (start == text + 1))
text             1441 lib/strutil/strutilutf8.c str_utf8_create_key (const char *text, gboolean case_sen)
text             1443 lib/strutil/strutilutf8.c     return str_utf8_create_key_gen (text, case_sen, g_utf8_collate_key);
text             1450 lib/strutil/strutilutf8.c str_utf8_create_key_for_filename (const char *text, gboolean case_sen)
text             1452 lib/strutil/strutilutf8.c     return str_utf8_create_key_gen (text, case_sen, g_utf8_collate_key_for_filename);
text             1116 lib/util.c     list_append_unique (GList *list, char *text)
text             1125 lib/util.c         list = g_list_append (list, text);
text             1134 lib/util.c             if (strcmp ((char *) lc_link->data, text) == 0)
text              258 lib/util.h     GList *list_append_unique (GList *list, char *text);
text              129 lib/utilunix.c i_cache_add (int id, int_cache *cache, int size, char *text, int *last)
text              132 lib/utilunix.c     cache[*last].string = g_strdup (text);
text               90 lib/widget/button.c         if (b->text.hotkey != NULL && g_ascii_tolower ((gchar) b->text.hotkey[0]) == parm)
text              152 lib/widget/button.c         hotkey_draw (w, b->text, focused);
text              173 lib/widget/button.c         hotkey_free (b->text);
text              207 lib/widget/button.c button_new (int y, int x, int action, button_flags_t flags, const char *text, bcback_fn callback)
text              218 lib/widget/button.c     b->text = hotkey_new (text);
text              223 lib/widget/button.c     b->hotpos = (b->text.hotkey != NULL) ? str_term_width1 (b->text.start) : -1;
text              233 lib/widget/button.c     return hotkey_get_text (b->text);
text              239 lib/widget/button.c button_set_text (WButton *b, const char *text)
text              244 lib/widget/button.c     hk = hotkey_new (text);
text              245 lib/widget/button.c     if (hotkey_equal (b->text, hk))
text              251 lib/widget/button.c     hotkey_free (b->text);
text              252 lib/widget/button.c     b->text = hk;
text              253 lib/widget/button.c     b->hotpos = (b->text.hotkey != NULL) ? str_term_width1 (b->text.start) : -1;
text              263 lib/widget/button.c     int ret = hotkey_width (b->text);
text               37 lib/widget/button.h     hotkey_t text;         // text of button, contain hotkey too
text               46 lib/widget/button.h WButton *button_new (int y, int x, int action, button_flags_t flags, const char *text,
text               49 lib/widget/button.h void button_set_text (WButton *b, const char *text);
text              138 lib/widget/buttonbar.c set_label_text (WButtonBar *bb, int idx, const char *text)
text              140 lib/widget/buttonbar.c     g_free (bb->labels[idx - 1].text);
text              141 lib/widget/buttonbar.c     bb->labels[idx - 1].text = g_strdup (text);
text              190 lib/widget/buttonbar.c                 const char *text;
text              200 lib/widget/buttonbar.c                 text = (bb->labels[i].text != NULL) ? bb->labels[i].text : "";
text              201 lib/widget/buttonbar.c                 tty_print_string (str_fit_to_term (text, width - 2, J_LEFT_FIT));
text              208 lib/widget/buttonbar.c             g_free (bb->labels[i].text);
text              263 lib/widget/buttonbar.c buttonbar_set_label (WButtonBar *bb, int idx, const char *text, const global_keymap_t *keymap,
text              273 lib/widget/buttonbar.c         if ((text == NULL) || (text[0] == '\0'))
text              276 lib/widget/buttonbar.c             set_label_text (bb, idx, text);
text               28 lib/widget/buttonbar.h         char *text;
text               40 lib/widget/buttonbar.h void buttonbar_set_label (WButtonBar *bb, int idx, const char *text, const global_keymap_t *keymap,
text               66 lib/widget/check.c         if (c->text.hotkey != NULL)
text               68 lib/widget/check.c             if (g_ascii_tolower ((gchar) c->text.hotkey[0]) == parm)
text               97 lib/widget/check.c         hotkey_draw (w, c->text, focused);
text              102 lib/widget/check.c         hotkey_free (c->text);
text              138 lib/widget/check.c check_new (int y, int x, gboolean state, const char *text)
text              146 lib/widget/check.c     c->text = hotkey_new (text);
text              148 lib/widget/check.c     r.cols = 4 + hotkey_width (c->text);
text              159 lib/widget/check.c check_set_text (WCheck *check, const char *text)
text              164 lib/widget/check.c     hk = hotkey_new (text);
text              165 lib/widget/check.c     if (hotkey_equal (check->text, hk))
text              171 lib/widget/check.c     hotkey_free (check->text);
text              172 lib/widget/check.c     check->text = hk;
text              174 lib/widget/check.c     if (check->text.start[0] == '\0' && check->text.hotkey == NULL && check->text.end == NULL)
text              177 lib/widget/check.c         w->rect.cols = 4 + hotkey_width (check->text);  // "[ ]  text"
text               21 lib/widget/check.h     hotkey_t text;   // text of check button
text               28 lib/widget/check.h WCheck *check_new (int y, int x, gboolean state, const char *text);
text               29 lib/widget/check.h void check_set_text (WCheck *check, const char *text);
text              159 lib/widget/history.c     char *text = (char *) data;
text              162 lib/widget/history.c     width = str_term_width1 (text);
text              165 lib/widget/history.c     listbox_add_item (hd->listbox, LISTBOX_APPEND_AT_END, 0, text, NULL, TRUE);
text              173 lib/widget/history.c     void *text;
text              177 lib/widget/history.c     text = le->text;
text              178 lib/widget/history.c     le->text = NULL;
text              180 lib/widget/history.c     return text;
text              195 lib/widget/history.c     hd->text = NULL;
text              281 lib/widget/history.c         hd->text = g_strdup (q);
text               30 lib/widget/history.h     char *text;   // return text of selected item
text              123 lib/widget/hline.c         if (l->text != NULL)
text              127 lib/widget/hline.c             text_width = str_term_width1 (l->text);
text              129 lib/widget/hline.c             tty_print_string (l->text);
text              134 lib/widget/hline.c         g_free (l->text);
text              157 lib/widget/hline.c     l->text = NULL;
text              167 lib/widget/hline.c hline_set_text (WHLine *l, const char *text)
text              169 lib/widget/hline.c     g_free (l->text);
text              171 lib/widget/hline.c     if (text == NULL || *text == '\0')
text              172 lib/widget/hline.c         l->text = NULL;
text              174 lib/widget/hline.c         l->text = g_strdup (text);
text               20 lib/widget/hline.h     char *text;
text               30 lib/widget/hline.h void hline_set_text (WHLine *l, const char *text);
text              170 lib/widget/input.c     if (hd.text != NULL)
text              172 lib/widget/input.c         input_assign_text (in, hd.text);
text              173 lib/widget/input.c         g_free (hd.text);
text              572 lib/widget/input.c     event_data.text = &p;
text             1135 lib/widget/input.c input_assign_text (WInput *in, const char *text)
text             1137 lib/widget/input.c     if (text == NULL)
text             1138 lib/widget/input.c         text = "";
text             1144 lib/widget/input.c     g_string_assign (in->buffer, text);
text             1153 lib/widget/input.c input_insert (WInput *in, const char *text, gboolean insert_extra_space)
text             1156 lib/widget/input.c     while (*text != '\0')
text             1157 lib/widget/input.c         input_handle_char (in, (unsigned char) *text++);  // unsigned extension char->int
text               86 lib/widget/input.h WInput *input_new (int y, int x, const int *colors, int len, const char *text, const char *histname,
text               92 lib/widget/input.h void input_assign_text (WInput *in, const char *text);
text               93 lib/widget/input.h void input_insert (WInput *in, const char *text, gboolean insert_extra_space);
text               66 lib/widget/input_complete.c         fprintf (stderr, "%s: text='%s' flags=%s\n", func, text, show_c_flags (flags))
text               76 lib/widget/input_complete.c typedef char *CompletionFunction (const char *text, int state, input_complete_t flags);
text               91 lib/widget/input_complete.c MC_MOCKABLE GPtrArray *try_complete (char *text, int *lc_start, int *lc_end,
text              130 lib/widget/input_complete.c filename_completion_function (const char *text, int state, input_complete_t flags)
text              144 lib/widget/input_complete.c     if (text != NULL && (flags & INPUT_COMPLETE_SHELL_ESC) != 0)
text              150 lib/widget/input_complete.c         u_text = str_shell_unescape (text);
text              171 lib/widget/input_complete.c         if ((*text != '\0') && (temp = strrchr (text, PATH_SEP)) != NULL)
text              174 lib/widget/input_complete.c             dirname = g_strndup (text, temp - text);
text              179 lib/widget/input_complete.c             filename = g_strdup (text);
text              307 lib/widget/input_complete.c username_completion_function (const char *text, int state, input_complete_t flags)
text              315 lib/widget/input_complete.c     if (text[0] == '\\' && text[1] == '~')
text              316 lib/widget/input_complete.c         text++;
text              320 lib/widget/input_complete.c         userlen = strlen (text + 1);
text              328 lib/widget/input_complete.c         if (text[1] == entry->pw_name[0] && strncmp (text + 1, entry->pw_name, userlen) == 0)
text              344 lib/widget/input_complete.c variable_completion_function (const char *text, int state, input_complete_t flags)
text              356 lib/widget/input_complete.c         isbrace = (text[1] == '{');
text              357 lib/widget/input_complete.c         varlen = strlen (text + 1 + isbrace);
text              365 lib/widget/input_complete.c             && strncmp (text + 1 + isbrace, *env_p, varlen) == 0)
text              476 lib/widget/input_complete.c hostname_completion_function (const char *text, int state, input_complete_t flags)
text              496 lib/widget/input_complete.c         textstart = (*text == '@') ? 1 : 0;
text              497 lib/widget/input_complete.c         textlen = strlen (text + textstart);
text              504 lib/widget/input_complete.c         if (strncmp (text + textstart, g_ptr_array_index (hosts, host_p), textlen) == 0)
text              538 lib/widget/input_complete.c command_completion_function (const char *text, int state, input_complete_t flags)
text              570 lib/widget/input_complete.c     u_text = str_shell_unescape (text);
text              698 lib/widget/input_complete.c completion_matches (const char *text, CompletionFunction entry_function, input_complete_t flags)
text              705 lib/widget/input_complete.c     while ((string = entry_function (text, match_list->len, flags)) != NULL)
text              775 lib/widget/input_complete.c check_is_cd (const char *text, int lc_start, input_complete_t flags)
text              785 lib/widget/input_complete.c     p = text;
text              786 lib/widget/input_complete.c     q = text + lc_start;
text              797 lib/widget/input_complete.c try_complete_commands_prepare (try_complete_automation_state_t *state, char *text, int *lc_start)
text              803 lib/widget/input_complete.c         ti = text;
text              806 lib/widget/input_complete.c         ti = str_get_prev_char (&text[*lc_start]);
text              807 lib/widget/input_complete.c         while (ti > text && whitespace (ti[0]))
text              811 lib/widget/input_complete.c     if (ti == text)
text              816 lib/widget/input_complete.c         if (ti != text)
text              828 lib/widget/input_complete.c                 || (ti != text && str_get_prev_char (ti)[0] == '\\'))
text              868 lib/widget/input_complete.c try_complete_all_possible (try_complete_automation_state_t *state, char *text, int *lc_start)
text              887 lib/widget/input_complete.c             state->q = text + *lc_start;
text              888 lib/widget/input_complete.c             for (state->p = text;
text              937 lib/widget/input_complete.c insert_text (WInput *in, const char *text, ssize_t size)
text              943 lib/widget/input_complete.c     text_len = strlen (text);
text              975 lib/widget/input_complete.c     g_string_overwrite_len (in->buffer, start, text, size);
text             1035 lib/widget/input_complete.c                     if (strncmp (input->buffer->str + start, le->text, new_end - start) == 0)
text             1089 lib/widget/input_complete.c                     if (strncmp (input->buffer->str + start, le->text, end - start) == 0
text             1090 lib/widget/input_complete.c                         && strncmp (le->text + end - start, buff, bl) == 0)
text             1096 lib/widget/input_complete.c                             last_text = le->text;
text             1105 lib/widget/input_complete.c                             for (si = le->text + start; si < le->text + end;
text             1113 lib/widget/input_complete.c                             si = &le->text[str_offset_to_pos (le->text, ++si_num)];
text             1132 lib/widget/input_complete.c                             last_text = le->text;
text             1277 lib/widget/input_complete.c try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags)
text             1286 lib/widget/input_complete.c     state.word = g_strndup (text + *lc_start, *lc_end - *lc_start);
text             1288 lib/widget/input_complete.c     state.is_cd = check_is_cd (text, *lc_start, state.flags);
text             1295 lib/widget/input_complete.c         try_complete_commands_prepare (&state, text, lc_start);
text             1341 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
text             1347 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
text               72 lib/widget/label.c         char *p = l->text;
text               77 lib/widget/label.c         if (l->text == NULL)
text              120 lib/widget/label.c         g_free (l->text);
text              133 lib/widget/label.c label_new (int y, int x, const char *text)
text              139 lib/widget/label.c     if (text != NULL)
text              140 lib/widget/label.c         str_msg_term_size (text, &r.lines, &r.cols);
text              146 lib/widget/label.c     l->text = g_strdup (text);
text              156 lib/widget/label.c label_set_text (WLabel *label, const char *text)
text              162 lib/widget/label.c     if (label->text != NULL && text != NULL && strcmp (label->text, text) == 0)
text              165 lib/widget/label.c     g_free (label->text);
text              167 lib/widget/label.c     if (text == NULL)
text              168 lib/widget/label.c         label->text = NULL;
text              171 lib/widget/label.c         label->text = g_strdup (text);
text              174 lib/widget/label.c             str_msg_term_size (text, &newlines, &newcols);
text               21 lib/widget/label.h     char *text;
text               29 lib/widget/label.h WLabel *label_new (int y, int x, const char *text);
text               30 lib/widget/label.h void label_set_text (WLabel *label, const char *text);
text               74 lib/widget/listbox.c     return strcmp (ea->text, eb->text);
text               84 lib/widget/listbox.c     g_free (e->text);
text              164 lib/widget/listbox.c         const char *text = "";
text              181 lib/widget/listbox.c             text = e->text;
text              186 lib/widget/listbox.c         tty_print_string (str_fit_to_term (text, w->cols - 2, J_LEFT_FIT));
text              584 lib/widget/listbox.c listbox_search_text (WListbox *l, const char *text)
text              595 lib/widget/listbox.c             if (strcmp (e->text, text) == 0)
text              713 lib/widget/listbox.c         *string = ok ? e->text : NULL;
text              824 lib/widget/listbox.c listbox_add_item (WListbox *l, listbox_append_t pos, int hotkey, const char *text, void *data,
text              827 lib/widget/listbox.c     return listbox_add_item_take (l, pos, hotkey, g_strdup (text), data, free_data);
text              847 lib/widget/listbox.c listbox_add_item_take (WListbox *l, listbox_append_t pos, int hotkey, char *text, void *data,
text              855 lib/widget/listbox.c     if (!l->allow_duplicates && (listbox_search_text (l, text) >= 0))
text              859 lib/widget/listbox.c     entry->text = text;
text              866 lib/widget/listbox.c     return entry->text;
text               38 lib/widget/listbox.h     char *text;  // Text to display
text               64 lib/widget/listbox.h int listbox_search_text (WListbox *l, const char *text);
text               77 lib/widget/listbox.h char *listbox_add_item (WListbox *l, listbox_append_t pos, int hotkey, const char *text, void *data,
text               79 lib/widget/listbox.h char *listbox_add_item_take (WListbox *l, listbox_append_t pos, int hotkey, char *text, void *data,
text               60 lib/widget/menu.c     hotkey_t text;
text               68 lib/widget/menu.c     hotkey_t text;
text              103 lib/widget/menu.c                 len = (size_t) hotkey_width (entry->text);
text              156 lib/widget/menu.c         tty_print_string (entry->text.start);
text              158 lib/widget/menu.c         if (entry->text.hotkey != NULL)
text              161 lib/widget/menu.c             tty_print_string (entry->text.hotkey);
text              165 lib/widget/menu.c         if (entry->text.end != NULL)
text              166 lib/widget/menu.c             tty_print_string (entry->text.end);
text              240 lib/widget/menu.c         tty_print_string (menu->text.start);
text              242 lib/widget/menu.c         if (menu->text.hotkey != NULL)
text              245 lib/widget/menu.c             tty_print_string (menu->text.hotkey);
text              249 lib/widget/menu.c         if (menu->text.end != NULL)
text              250 lib/widget/menu.c             tty_print_string (menu->text.end);
text              495 lib/widget/menu.c         if (menu->text.hotkey != NULL && hotkey == g_ascii_tolower (menu->text.hotkey[0]))
text              519 lib/widget/menu.c         if (entry != NULL && entry->text.hotkey != NULL
text              520 lib/widget/menu.c             && hotkey == g_ascii_tolower (entry->text.hotkey[0]))
text              898 lib/widget/menu.c     entry->text = hotkey_new (name);
text              912 lib/widget/menu.c         hotkey_free (entry->text);
text              927 lib/widget/menu.c     menu->text = hotkey_new (name);
text              942 lib/widget/menu.c     hotkey_free (menu->text);
text              943 lib/widget/menu.c     menu->text = hotkey_new (name);
text              951 lib/widget/menu.c     hotkey_free (menu->text);
text             1030 lib/widget/menu.c         menu->start_x = hotkey_width (menu->text) + 2;
text               75 lib/widget/quick.c     in = input_new (y, x, input_colors, 8, qw->u.input.text, qw->u.input.histname,
text              208 lib/widget/quick.c                                              I18N (quick_widget->u.checkbox.text)));
text              224 lib/widget/quick.c                 I18N (quick_widget->u.button.text), quick_widget->u.button.callback));
text              258 lib/widget/quick.c             item.widget = WIDGET (label_new (++y, x, I18N (quick_widget->u.label.text)));
text              367 lib/widget/quick.c                     I18N (quick_widget->u.button.text), quick_widget->u.button.callback));
text               20 lib/widget/quick.h                 .text = txt,                                                                       \
text               34 lib/widget/quick.h                 .text = txt,                                                                       \
text               52 lib/widget/quick.h                  .text = txt,                                                                      \
text               74 lib/widget/quick.h                 .text = txt,                                                                       \
text               92 lib/widget/quick.h                 .text = txt,                                                                       \
text              134 lib/widget/quick.h                 .text = NULL,                                                                      \
text              163 lib/widget/quick.h                 .text = NULL,                                                                      \
text              178 lib/widget/quick.h                 .text = NULL,                                                                      \
text              193 lib/widget/quick.h                 .text = NULL,                                                                      \
text              227 lib/widget/quick.h                 .text = NULL,                                                                      \
text              284 lib/widget/quick.h             const char *text;
text              290 lib/widget/quick.h             const char *text;
text              300 lib/widget/quick.h             const char *text;
text              310 lib/widget/quick.h             const char *text;
text               34 lib/widget/radio.h WRadio *radio_new (int y, int x, int count, const char **text);
text              195 lib/widget/widget-common.c hotkey_new (const char *text)
text              200 lib/widget/widget-common.c     if (text == NULL)
text              201 lib/widget/widget-common.c         text = "";
text              204 lib/widget/widget-common.c     cp = strchr (text, '&');
text              207 lib/widget/widget-common.c         result.start = g_strndup (text, cp - text);
text              219 lib/widget/widget-common.c         result.start = g_strdup (text);
text              288 lib/widget/widget-common.c     GString *text;
text              290 lib/widget/widget-common.c     text = g_string_new (hotkey.start);
text              294 lib/widget/widget-common.c         g_string_append_c (text, '&');
text              295 lib/widget/widget-common.c         g_string_append (text, hotkey.hotkey);
text              299 lib/widget/widget-common.c         g_string_append (text, hotkey.end);
text              301 lib/widget/widget-common.c     return g_string_free (text, FALSE);
text              193 lib/widget/widget-common.h hotkey_t hotkey_new (const char *text);
text              127 lib/widget/wtools.c bg_message (int dummy, int *flags, char *title, const char *text)
text              131 lib/widget/wtools.c     query_dialog (title, text, *flags, 1, _ ("&OK"));
text              150 lib/widget/wtools.c fg_input_dialog_help (const char *header, const char *text, const char *help,
text              160 lib/widget/wtools.c     p_text = g_strstrip (g_strdup (text));
text              239 lib/widget/wtools.c query_dialog (const char *header, const char *text, int flags, int count, ...)
text              271 lib/widget/wtools.c     str_msg_term_size (text, &lines, &cols);
text              284 lib/widget/wtools.c         group_add_widget_autopos (g, label_new (2, 3, text), WPOS_KEEP_TOP | WPOS_CENTER_HORZ,
text              328 lib/widget/wtools.c         group_add_widget_autopos (g, label_new (2, 3, text), WPOS_KEEP_TOP | WPOS_CENTER_HORZ,
text              352 lib/widget/wtools.c create_message (int flags, const char *title, const char *text, ...)
text              358 lib/widget/wtools.c     va_start (args, text);
text              359 lib/widget/wtools.c     p = g_strdup_vprintf (text, args);
text              378 lib/widget/wtools.c message (int flags, const char *title, const char *text, ...)
text              383 lib/widget/wtools.c     va_start (ap, text);
text              384 lib/widget/wtools.c     p = g_strdup_vprintf (text, ap);
text              443 lib/widget/wtools.c input_dialog_help (const char *header, const char *text, const char *help, const char *history_name,
text              457 lib/widget/wtools.c             func.p, 7, strlen (header), header, strlen (text), text, strlen (help), help,
text              463 lib/widget/wtools.c         return fg_input_dialog_help (header, text, help, history_name, def_text, strip_password,
text              471 lib/widget/wtools.c input_dialog (const char *header, const char *text, const char *history_name, const char *def_text,
text              474 lib/widget/wtools.c     return input_dialog_help (header, text, "[Input Line Keys]", history_name, def_text, FALSE,
text              481 lib/widget/wtools.c input_expand_dialog (const char *header, const char *text, const char *history_name,
text              486 lib/widget/wtools.c     result = input_dialog (header, text, history_name, def_text, completion_flags);
text               65 lib/widget/wtools.h char *input_dialog (const char *header, const char *text, const char *history_name,
text               67 lib/widget/wtools.h char *input_dialog_help (const char *header, const char *text, const char *help,
text               70 lib/widget/wtools.h char *input_expand_dialog (const char *header, const char *text, const char *history_name,
text               73 lib/widget/wtools.h int query_dialog (const char *header, const char *text, int flags, int count, ...);
text               77 lib/widget/wtools.h WDialog *create_message (int flags, const char *title, const char *text, ...) G_GNUC_PRINTF (3, 4);
text               80 lib/widget/wtools.h MC_MOCKABLE void message (int flags, const char *title, const char *text, ...) G_GNUC_PRINTF (3, 4);
text              180 src/clipboard.c     const char *text = (const char *) data;
text              186 src/clipboard.c     if (text == NULL)
text              196 src/clipboard.c     str_len = strlen (text);
text              200 src/clipboard.c         ret = mc_write (file, text, str_len);
text              234 src/clipboard.c     *(event_data->text) = NULL;
text              249 src/clipboard.c                 *(event_data->text) = g_strdup (buf);
text              256 src/clipboard.c                 tmp = g_strconcat (*(event_data->text), " ", buf, (char *) NULL);
text              257 src/clipboard.c                 g_free (*(event_data->text));
text              258 src/clipboard.c                 *(event_data->text) = tmp;
text              264 src/clipboard.c     event_data->ret = (*(event_data->text) != NULL);
text              622 src/diffviewer/ydiff.c dview_str_utf8_offset_to_pos (const char *text, size_t length)
text              626 src/diffviewer/ydiff.c     if (text == NULL || text[0] == '\0')
text              629 src/diffviewer/ydiff.c     if (g_utf8_validate (text, -1, NULL))
text              630 src/diffviewer/ydiff.c         result = g_utf8_offset_to_pointer (text, length) - text;
text              636 src/diffviewer/ydiff.c         buffer = tmpbuf = g_strdup (text);
text              263 src/editor/syntax.c compare_word_to_right (const WEdit *edit, off_t i, const GString *text, const char *whole_left,
text              274 src/editor/syntax.c     for (p = (const unsigned char *) text->str, q = p + text->len; p < q; p++, i++)
text              305 src/editor/syntax.c                     if (p[0] == text->str[0]
text              175 src/file_history.c     fhd->file_name = le->text;
text              176 src/file_history.c     le->text = NULL;
text              243 src/file_history.c     return hd.text;
text               76 src/filemanager/achown.c     const char *text;
text              123 src/filemanager/achown.c         advanced_chown_but[i].text = _ (advanced_chown_but[i].text);
text              126 src/filemanager/achown.c         advanced_chown_but[i].len = str_term_width1 (advanced_chown_but[i].text) + 3;
text              222 src/filemanager/achown.c     set_perm_by_flags (b_att[0]->text.start, 0);
text              223 src/filemanager/achown.c     set_perm_by_flags (b_att[1]->text.start, 3);
text              224 src/filemanager/achown.c     set_perm_by_flags (b_att[2]->text.start, 6);
text              404 src/filemanager/achown.c             if (b->text.start[flag_pos % 3] == '-')
text              458 src/filemanager/achown.c perm_button_new (int y, int x, int action, button_flags_t flags, const char *text,
text              465 src/filemanager/achown.c     b = button_new (y, x, action, flags, text, callback);
text              593 src/filemanager/achown.c                 char *text;
text              595 src/filemanager/achown.c                 listbox_get_current (chl_list, &text, NULL);
text              598 src/filemanager/achown.c                     chl_pass = getpwnam (text);
text              607 src/filemanager/achown.c                     chl_grp = getgrnam (text);
text              761 src/filemanager/achown.c         (advanced_chown_but[i].text), cb
text              785 src/filemanager/achown.c                         advanced_chown_but[i].text, NULL));
text              790 src/filemanager/achown.c                         advanced_chown_but[i].flags, advanced_chown_but[i].text, NULL));
text              800 src/filemanager/achown.c                                       advanced_chown_but[i].text, NULL));
text              805 src/filemanager/achown.c                     advanced_chown_but[i].flags, advanced_chown_but[i].text, NULL));
text              137 src/filemanager/chattr.c     const char *text;
text              222 src/filemanager/chattr.c     const char *text;
text              489 src/filemanager/chattr.c         g_snprintf (btext, sizeof (btext), "(%c) %s", check_attr[m].attr, check_attr[m].text);
text              928 src/filemanager/chattr.c             check_attr[i].text = _ (check_attr[i].text);
text              933 src/filemanager/chattr.c             width = 4 + str_term_width1 (check_attr[i].text);  // "(Q) text "
text              942 src/filemanager/chattr.c         chattr_but[i].text = _ (chattr_but[i].text);
text              945 src/filemanager/chattr.c         chattr_but[i].width = str_term_width1 (chattr_but[i].text) + 3;  // [], spaces and w/o &
text             1026 src/filemanager/chattr.c                                                    chattr_but[i].text, NULL));
text             1032 src/filemanager/chattr.c                                 chattr_but[i].flags, chattr_but[i].text, NULL));
text               70 src/filemanager/chmod.c     const char *text;
text              105 src/filemanager/chmod.c     const char *text;
text              144 src/filemanager/chmod.c         check_perm[i].text = _ (check_perm[i].text);
text              150 src/filemanager/chmod.c         chmod_but[i].text = _ (chmod_but[i].text);
text              155 src/filemanager/chmod.c         len = str_term_width1 (check_perm[i].text);
text              169 src/filemanager/chmod.c         chmod_but[i].len = str_term_width1 (chmod_but[i].text) + 3;  // [], spaces and w/o &
text              341 src/filemanager/chmod.c             check_new (PY + i + 1, PX + 2, (ch_mode & check_perm[i].mode) != 0, check_perm[i].text);
text              373 src/filemanager/chmod.c                                           chmod_but[i].text, NULL));
text              378 src/filemanager/chmod.c                                           chmod_but[i].text, NULL));
text              387 src/filemanager/chmod.c                                   chmod_but[i].ret_cmd, chmod_but[i].flags, chmod_but[i].text,
text              392 src/filemanager/chmod.c                                   chmod_but[i].flags, chmod_but[i].text, NULL));
text               80 src/filemanager/chown.c     const char *text;
text              122 src/filemanager/chown.c         chown_but[i].text = _ (chown_but[i].text);
text              127 src/filemanager/chown.c         chown_but[i].len = str_term_width1 (chown_but[i].text) + 3;  // [], spaces and w/o &
text              244 src/filemanager/chown.c                                           chown_but[i].text, NULL));
text              254 src/filemanager/chown.c                                   chown_but[i].ret_cmd, chown_but[i].flags, chown_but[i].text,
text              259 src/filemanager/chown.c                                   chown_but[i].flags, chown_but[i].text, NULL));
text              441 src/filemanager/chown.c             char *text;
text              443 src/filemanager/chown.c             listbox_get_current (l_group, &text, NULL);
text              444 src/filemanager/chown.c             grp = getgrnam (text);
text              447 src/filemanager/chown.c             listbox_get_current (l_user, &text, NULL);
text              448 src/filemanager/chown.c             user = getpwnam (text);
text              481 src/filemanager/chown.c             char *text;
text              483 src/filemanager/chown.c             listbox_get_current (l_user, &text, NULL);
text              484 src/filemanager/chown.c             user = getpwnam (text);
text              498 src/filemanager/chown.c             char *text;
text              500 src/filemanager/chown.c             listbox_get_current (l_group, &text, NULL);
text              501 src/filemanager/chown.c             grp = getgrnam (text);
text              380 src/filemanager/cmd.c nice_cd (const char *text, const char *xtext, const char *help, const char *history_name,
text              386 src/filemanager/cmd.c     machine = input_dialog_help (text, xtext, help, history_name, INPUT_LAST_TEXT, strip_password,
text              249 src/filemanager/command.c command_insert (WInput *in, const char *text, gboolean insert_extra_space)
text              253 src/filemanager/command.c     quoted_text = name_quote (text, TRUE);
text               24 src/filemanager/command.h void command_insert (WInput *in, const char *text, gboolean insert_extra_space);
text              173 src/filemanager/ext.c     char *text;
text              175 src/filemanager/ext.c     text = expand_format (NULL, symbol, TRUE);
text              176 src/filemanager/ext.c     if (is_result_quoted && text != NULL)
text              180 src/filemanager/ext.c         quoted_text = g_strdup_printf ("\"%s\"", text);
text              181 src/filemanager/ext.c         g_free (text);
text              182 src/filemanager/ext.c         text = quoted_text;
text              184 src/filemanager/ext.c     return text;
text              192 src/filemanager/ext.c     char *text;
text              209 src/filemanager/ext.c     text = exec_get_file_name (filename_vpath);
text              210 src/filemanager/ext.c     if (text == NULL)
text              214 src/filemanager/ext.c     g_string_append_printf (export_vars_string, "%s\nexport MC_EXT_FILENAME\n", text);
text              215 src/filemanager/ext.c     g_free (text);
text              219 src/filemanager/ext.c         text =
text              221 src/filemanager/ext.c         if (text != NULL)
text              224 src/filemanager/ext.c                                     export_variables[i].name, text, export_variables[i].name);
text              225 src/filemanager/ext.c             g_free (text);
text              316 src/filemanager/ext.c                             char *text;
text              319 src/filemanager/ext.c                                 text = expand_format (NULL, *lc_data, !is_cd);
text              322 src/filemanager/ext.c                                 text = exec_get_file_name (filename_vpath);
text              323 src/filemanager/ext.c                                 if (text == NULL)
text              330 src/filemanager/ext.c                             if (text != NULL)
text              333 src/filemanager/ext.c                                     g_string_append (shell_string, text);
text              336 src/filemanager/ext.c                                     strcpy (pbuffer, text);
text              340 src/filemanager/ext.c                                 g_free (text);
text              987 src/filemanager/file.c         char *text;
text              994 src/filemanager/file.c         text = g_strdup_printf (msg, path_trunc (s, 30));
text              999 src/filemanager/file.c         ctx->recursive_result = query_dialog (op_names[OP_DELETE], text, D_ERROR, 5, _ ("&Yes"),
text             1001 src/filemanager/file.c         g_free (text);
text              245 src/filemanager/filegui.c     const char *text;
text              439 src/filemanager/filegui.c #define NEW_LABEL(i, text) W (i) = WIDGET (label_new (dlg_widgets[i].y, dlg_widgets[i].x, text))
text              447 src/filemanager/filegui.c                                 NORMAL_BUTTON, dlg_widgets[i].text, NULL))
text              459 src/filemanager/filegui.c         const char *text;
text              542 src/filemanager/filegui.c             if (dlg_widgets[i].text != NULL)
text              543 src/filemanager/filegui.c                 dlg_widgets[i].text = _ (dlg_widgets[i].text);
text              549 src/filemanager/filegui.c     NEW_LABEL (0, dlg_widgets[0].text);
text              564 src/filemanager/filegui.c     NEW_LABEL (4, dlg_widgets[4].text);
text              583 src/filemanager/filegui.c     NEW_LABEL (8, dlg_widgets[8].text);
text              591 src/filemanager/filegui.c     NEW_LABEL (13, dlg_widgets[13].text);
text              593 src/filemanager/filegui.c         WIDGET (check_new (dlg_widgets[14].y, dlg_widgets[14].x, FALSE, dlg_widgets[14].text));
text              624 src/filemanager/filegui.c         label_set_text (l, str_trunc (l->text, w));
text              633 src/filemanager/filegui.c         label_set_text (l, str_trunc (l->text, w));
text              752 src/filemanager/filegui.c     button_set_text (BUTTON (progress_buttons[i].w), progress_buttons[i].text);
text              896 src/filemanager/filegui.c             progress_buttons[i].text = _ (progress_buttons[i].text);
text              972 src/filemanager/filegui.c                             progress_buttons[0].text, progress_button_callback));
text              978 src/filemanager/filegui.c                             progress_buttons[1].text, progress_button_callback));
text              987 src/filemanager/filegui.c                                 progress_buttons[2].text, progress_button_callback));
text              995 src/filemanager/filegui.c                             progress_buttons[3].text, progress_button_callback));
text             1347 src/filemanager/filegui.c file_mask_dialog (file_op_context_t *ctx, gboolean only_one, const char *format, const void *text,
text             1385 src/filemanager/filegui.c         text_len = str_term_width1 (text);
text             1395 src/filemanager/filegui.c             text = str_trunc ((const char *) text, max_len - format_len);
text             1399 src/filemanager/filegui.c         g_snprintf (fmd_buf, sizeof (fmd_buf), format, (const char *) text);
text             1405 src/filemanager/filegui.c         g_snprintf (fmd_buf, sizeof (fmd_buf), format, *(const int *) text);
text              171 src/filemanager/filegui.h                         const void *text, const char *def_text, gboolean *do_bg);
text             1749 src/filemanager/filemanager.c         char text[BUF_SMALL];
text             1751 src/filemanager/filemanager.c         g_snprintf (text, sizeof (text), _ ("GNU Midnight Commander %s\n"), mc_global.mc_version);
text             1752 src/filemanager/filemanager.c         set_hintbar (text);
text              181 src/filemanager/find.c     const char *text;
text              345 src/filemanager/find.c add_to_list (const char *text, void *data)
text              347 src/filemanager/find.c     return listbox_add_item (find_list, LISTBOX_APPEND_AT_END, 0, text, data, TRUE);
text              353 src/filemanager/find.c add_to_list_take (char *text, void *data)
text              355 src/filemanager/find.c     return listbox_add_item_take (find_list, LISTBOX_APPEND_AT_END, 0, text, data, TRUE);
text              369 src/filemanager/find.c status_update (const char *text)
text              371 src/filemanager/find.c     label_set_text (status_label, text);
text             1478 src/filemanager/find.c     char *text = NULL;
text             1481 src/filemanager/find.c     listbox_get_current (find_list, &text, (void **) &location);
text             1483 src/filemanager/find.c     if ((text == NULL) || (location == NULL) || (location->dir == NULL))
text             1486 src/filemanager/find.c     find_do_view_edit (unparsed_view, edit, location->dir, text, location->start, location->end);
text             1627 src/filemanager/find.c     button_set_text (button, fbuts[is_start ? 3 : 2].text);
text             1678 src/filemanager/find.c             fbuts[i].text = _ (fbuts[i].text);
text             1680 src/filemanager/find.c             fbuts[i].len = str_term_width1 (fbuts[i].text) + 3;
text             1719 src/filemanager/find.c                                                   fbuts[i].text, fbuts[i].callback));
text             1827 src/filemanager/find.c             if ((le->text == NULL) || (location == NULL) || (location->dir == NULL))
text             1831 src/filemanager/find.c                 lc_filename = strchr (le->text + 4, ':') + 1;
text             1833 src/filemanager/find.c                 lc_filename = le->text + 4;
text              168 src/filemanager/hotlist.c     const char *text;
text              231 src/filemanager/hotlist.c     const char *text = "";
text              243 src/filemanager/hotlist.c             text = ctext;
text              249 src/filemanager/hotlist.c                 text = hlp->directory;
text              251 src/filemanager/hotlist.c                 text = _ ("Subgroup - press ENTER to see list");
text              261 src/filemanager/hotlist.c         label_set_text (pname, str_trunc (text, w->rect.cols));
text              684 src/filemanager/hotlist.c             hotlist_but[i].text = _ (hotlist_but[i].text);
text              686 src/filemanager/hotlist.c             hotlist_but[i].len = str_term_width1 (hotlist_but[i].text) + 3;
text              819 src/filemanager/hotlist.c                                                   hotlist_but[i].text, hotlist_button_callback),
text              870 src/filemanager/hotlist.c                                                   hotlist_but[i].text, hotlist_button_callback),
text             1145 src/filemanager/hotlist.c         char text[BUF_MEDIUM];
text             1151 src/filemanager/hotlist.c         g_snprintf (text, sizeof (text), _ ("Are you sure you want to remove entry \"%s\"?"),
text             1153 src/filemanager/hotlist.c         result = query_dialog (Q_ ("DialogTitle|Delete"), text, D_ERROR | D_CENTER, 2, _ ("&Yes"),
text             1165 src/filemanager/hotlist.c             char text[BUF_MEDIUM];
text             1168 src/filemanager/hotlist.c             g_snprintf (text, sizeof (text), _ ("Group \"%s\" is not empty.\nRemove it?"),
text             1170 src/filemanager/hotlist.c             result = query_dialog (Q_ ("DialogTitle|Delete"), text, D_ERROR | D_CENTER, 2,
text             1652 src/filemanager/hotlist.c         char *text = NULL;
text             1655 src/filemanager/hotlist.c         listbox_get_current (l_hotlist, &text, (void **) &hlp);
text             1656 src/filemanager/hotlist.c         target = g_strdup (hlp != NULL ? hlp->directory : text);
text              166 src/filemanager/layout.c     const char *text;
text              523 src/filemanager/layout.c                 check_options[i].text = _ (check_options[i].text);
text              538 src/filemanager/layout.c         l1 = max (l1, str_term_width1 (check_options[i].text) + 7);
text              560 src/filemanager/layout.c #define XTRACT(i) (*check_options[i].variable != 0), check_options[i].text
text               76 src/filemanager/listmode.c     char *text;
text               83 src/filemanager/listmode.c     char *text;
text              225 src/filemanager/listmode.c                                 listmode_but[i].flags, listmode_but[i].text,
text              231 src/filemanager/listmode.c         pname = label_new (listmode_labels[i].y, listmode_labels[i].x, listmode_labels[i].text);
text              303 src/filemanager/listmode.c     char *text, *extra;
text              316 src/filemanager/listmode.c         listbox_get_current (l_listmode, &text, &extra);
text              317 src/filemanager/listmode.c         if (text == last)
text              321 src/filemanager/listmode.c         strcat (newformat, text);
text              322 src/filemanager/listmode.c         last = text;
text             3451 src/filemanager/panel.c     if (hd.text != NULL)
text             3455 src/filemanager/panel.c         s_vpath = vfs_path_from_str (hd.text);
text             3460 src/filemanager/panel.c             cd_error_message (hd.text);
text             3462 src/filemanager/panel.c         g_free (hd.text);
text              165 src/filemanager/panelize.c         const char *text;
text              189 src/filemanager/panelize.c         panelize_but[i].text = _ (panelize_but[i].text);
text              191 src/filemanager/panelize.c         blen += str_term_width1 (panelize_but[i].text) + 3 + 1;
text              228 src/filemanager/panelize.c         b = button_new (y, x, panelize_but[i].ret_cmd, panelize_but[i].flags, panelize_but[i].text,
text              625 src/filemanager/tree.c search_tree (WTree *tree, const GString *text)
text              632 src/filemanager/tree.c         if (strncmp (current->subname, text->str, text->len) == 0)
text              124 src/help.c     search_string (const char *start, const char *text)
text              131 src/help.c         local_text = g_strdup (text);
text              164 src/help.c     search_string_node (const char *start, const char *text)
text              168 src/help.c             const char *d = text;
text              176 src/help.c                     d = text;
text              546 src/usermenu.c                 char *text;
text              548 src/usermenu.c                 text = expand_format (edit_widget, *commands, do_quote);
text              549 src/usermenu.c                 if (text != NULL)
text              551 src/usermenu.c                     fputs (text, cmd_file);
text              552 src/usermenu.c                     g_free (text);
text              788 src/vfs/sftpfs/connection.c         if (memcmp (prompts[i].text, "Password: ", prompts[i].length) == 0)
text              790 src/vfs/sftpfs/connection.c             responses[i].text = strdup (kbi_passwd);
text              390 src/viewer/hex.c         char *text;
text              429 src/viewer/hex.c         text = g_strdup_printf (_ ("Cannot save file:\n%s"), unix_error_string (errno));
text              432 src/viewer/hex.c         answer = query_dialog (_ ("Save file"), text, D_ERROR, 2, _ ("&Retry"), _ ("&Cancel"));
text              433 src/viewer/hex.c         g_free (text);
text               45 tests/lib/vfs/vfs_parse_ls_lga.c void message (int flags, const char *title, const char *text, ...) G_GNUC_PRINTF (3, 4);
text               86 tests/lib/vfs/vfs_parse_ls_lga.c message (int flags, const char *title, const char *text, ...)
text               94 tests/lib/vfs/vfs_parse_ls_lga.c     va_start (ap, text);
text               95 tests/lib/vfs/vfs_parse_ls_lga.c     p = g_strdup_vprintf (text, ap);
text               36 tests/lib/widget/complete_engine.c GPtrArray *try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags);
text               54 tests/lib/widget/complete_engine.c try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags)
text               56 tests/lib/widget/complete_engine.c     try_complete__text__captured = g_strdup (text);
text              143 tests/src/execute__common.c message (int flags, const char *title, const char *text, ...)
text              151 tests/src/execute__common.c     va_start (ap, text);
text              152 tests/src/execute__common.c     message_text__captured = g_strdup_vprintf (text, ap);
text              228 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c message (int flags, const char *title, const char *text, ...)
text              236 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c     va_start (ap, text);
text              237 tests/src/vfs/extfs/helpers-list/mc_parse_ls_l.c     p = g_strdup_vprintf (text, ap);