c 182 lib/charsets.c translate_character (GIConv cd, char c) c 186 lib/charsets.c const char *ibuf = &c; c 78 lib/charsets.h convert_to_display_c (int c) c 80 lib/charsets.h if (c < 0 || c >= 256) c 81 lib/charsets.h return c; c 82 lib/charsets.h return (int) conv_displ[c]; c 88 lib/charsets.h convert_from_input_c (int c) c 90 lib/charsets.h if (c < 0 || c >= 256) c 91 lib/charsets.h return c; c 92 lib/charsets.h return (int) conv_input[c]; c 289 lib/glibcompat.c mc_g_string_append_c_len (GString *s, gchar c, guint len) c 298 lib/glibcompat.c memset (s->str + s_len, (unsigned char) c, len); c 44 lib/glibcompat.h GString *mc_g_string_append_c_len (GString * s, gchar c, guint len); c 133 lib/search/glob.c char c = *str++; c 135 lib/search/glob.c switch (c) c 150 lib/search/glob.c c = ++cnt; c 160 lib/search/glob.c g_string_append_c (buff, c); c 295 lib/search/regex.c gunichar c = g_utf8_get_char_validated (p, -1); c 296 lib/search/regex.c if (c != (gunichar) (-1) && c != (gunichar) (-2)) c 461 lib/search/regex.c char c = curr_str[1]; c 465 lib/search/regex.c if (c == '{') c 485 lib/search/regex.c if (c == 'x') c 488 lib/search/regex.c c = curr_str[2]; c 489 lib/search/regex.c if (c == '{') c 508 lib/search/regex.c else if (!g_ascii_isxdigit ((guchar) c)) c 516 lib/search/regex.c c = curr_str[3]; c 517 lib/search/regex.c if (!g_ascii_isxdigit ((guchar) c)) c 527 lib/search/regex.c if (strchr ("ntvbrfa", c) != NULL) c 690 lib/search/regex.c unsigned int c = 0; c 711 lib/search/regex.c c = c * 16 + from[i] - '0'; c 713 lib/search/regex.c c = c * 16 + 10 + from[i] - 'a'; c 715 lib/search/regex.c c = c * 16 + 10 + from[i] - 'A'; c 722 lib/search/regex.c c = c * 8 + from[i] - '0'; c 728 lib/search/regex.c c = '\n'; c 731 lib/search/regex.c c = '\t'; c 734 lib/search/regex.c c = '\v'; c 737 lib/search/regex.c c = '\b'; c 740 lib/search/regex.c c = '\r'; c 743 lib/search/regex.c c = '\f'; c 746 lib/search/regex.c c = '\a'; c 754 lib/search/regex.c if (c < 0x80 || !is_utf8) c 755 lib/search/regex.c g_string_append_c (dest_str, (char) c); c 756 lib/search/regex.c else if (c < 0x800) c 758 lib/search/regex.c b = 0xC0 | (c >> 6); c 760 lib/search/regex.c b = 0x80 | (c & 0x3F); c 763 lib/search/regex.c else if (c < 0x10000) c 765 lib/search/regex.c b = 0xE0 | (c >> 12); c 767 lib/search/regex.c b = 0x80 | ((c >> 6) & 0x3F); c 769 lib/search/regex.c b = 0x80 | (c & 0x3F); c 772 lib/search/regex.c else if (c < 0x10FFFF) c 774 lib/search/regex.c b = 0xF0 | (c >> 16); c 776 lib/search/regex.c b = 0x80 | ((c >> 12) & 0x3F); c 778 lib/search/regex.c b = 0x80 | ((c >> 6) & 0x3F); c 780 lib/search/regex.c b = 0x80 | (c & 0x3F); c 93 lib/strutil/filevercmp.c unsigned char c; c 98 lib/strutil/filevercmp.c c = s[pos]; c 100 lib/strutil/filevercmp.c if (g_ascii_isdigit (c)) c 102 lib/strutil/filevercmp.c if (g_ascii_isalpha (c)) c 103 lib/strutil/filevercmp.c return c; c 104 lib/strutil/filevercmp.c if (c == '~') c 109 lib/strutil/filevercmp.c return (int) c + UCHAR_MAX + 1; c 922 lib/strutil/strutil.c char c = '\0'; c 937 lib/strutil/strutil.c c = q[0]; c 948 lib/strutil/strutil.c q[0] = c; c 52 lib/strutil/strutil8bit.c static inline int char_##func_name(char c) \ c 54 lib/strutil/strutil8bit.c return func_name((int)(unsigned char)c); \ c 52 lib/strutil/tokenize.c #define member(c, s) ((c != '\0') ? (strchr ((s), (c)) != NULL) : FALSE) c 103 lib/tty/color-internal.c parse_hex_digit (char c) c 105 lib/tty/color-internal.c if (c >= '0' && c <= '9') c 106 lib/tty/color-internal.c return c - '0'; c 107 lib/tty/color-internal.c c |= 0x20; c 108 lib/tty/color-internal.c if (c >= 'a' && c <= 'f') c 109 lib/tty/color-internal.c return c - 'a' + 10; c 723 lib/tty/key.c int c; c 733 lib/tty/key.c c = get_key_code (0); c 734 lib/tty/key.c if (c != -1) c 742 lib/tty/key.c return c; c 775 lib/tty/key.c char c; c 780 lib/tty/key.c while ((c = tty_lowlevel_getch ()) != ';') c 782 lib/tty/key.c if (c < '0' || c > '9') c 784 lib/tty/key.c btn = 10 * btn + (c - '0'); c 786 lib/tty/key.c while ((c = tty_lowlevel_getch ()) != ';') c 788 lib/tty/key.c if (c < '0' || c > '9') c 790 lib/tty/key.c ev->x = 10 * ev->x + (c - '0'); c 792 lib/tty/key.c while ((c = tty_lowlevel_getch ()) != 'M' && c != 'm') c 794 lib/tty/key.c if (c < '0' || c > '9') c 796 lib/tty/key.c ev->y = 10 * ev->y + (c - '0'); c 802 lib/tty/key.c if (c == 'm') c 1006 lib/tty/key.c push_char (int c) c 1015 lib/tty/key.c *(seq_append++) = c; c 1029 lib/tty/key.c unsigned int c = code & ~KEY_M_MASK; /* code without modifier */ c 1040 lib/tty/key.c if (c < 32 || c >= 256) c 1044 lib/tty/key.c if (c == '\r') c 1045 lib/tty/key.c c = '\n'; c 1048 lib/tty/key.c if (c == KEY_SCANCEL) c 1049 lib/tty/key.c c = '\t'; c 1052 lib/tty/key.c if (c == KEY_BTAB) c 1054 lib/tty/key.c c = '\t'; c 1059 lib/tty/key.c if (c == KEY_F (0)) c 1060 lib/tty/key.c c = KEY_F (10); c 1068 lib/tty/key.c if (c == '\b') c 1071 lib/tty/key.c c = KEY_BACKSPACE; c 1074 lib/tty/key.c else if (c < 32 && c != ESC_CHAR && c != '\t' && c != '\n') c 1080 lib/tty/key.c if (c == 127 && mod == 0) c 1084 lib/tty/key.c c = KEY_BACKSPACE; c 1087 lib/tty/key.c if (c == '0' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT) c 1091 lib/tty/key.c c = KEY_IC; c 1094 lib/tty/key.c if (c == '.' && mod == 0 && (qmod & KEY_M_SHIFT) == KEY_M_SHIFT) c 1098 lib/tty/key.c c = KEY_DC; c 1103 lib/tty/key.c if (c == 0177) c 1104 lib/tty/key.c c = KEY_BACKSPACE; c 1108 lib/tty/key.c if (c == 'd' & 31) c 1110 lib/tty/key.c c = KEY_DC; c 1115 lib/tty/key.c if (c == 'h' & 31) c 1117 lib/tty/key.c c = KEY_BACKSPACE; c 1123 lib/tty/key.c if (c == KEY_BACKSPACE && (mod & KEY_M_SHIFT) != 0) c 1127 lib/tty/key.c if (c >= KEY_F (1) && c <= KEY_F (10) && (mod & KEY_M_SHIFT) != 0) c 1128 lib/tty/key.c c += 10; c 1131 lib/tty/key.c if (c >= KEY_F (1) && c <= KEY_F (20)) c 1135 lib/tty/key.c switch (c) c 1138 lib/tty/key.c c = '+'; c 1141 lib/tty/key.c c = '-'; c 1144 lib/tty/key.c c = '*'; c 1150 lib/tty/key.c return (mod | c); c 1159 lib/tty/key.c int c; c 1168 lib/tty/key.c c = tty_lowlevel_getch (); c 1170 lib/tty/key.c return c; c 1176 lib/tty/key.c learn_store_key (GString *buffer, int c) c 1178 lib/tty/key.c if (c == ESC_CHAR) c 1180 lib/tty/key.c else if (c < ' ') c 1183 lib/tty/key.c g_string_append_c (buffer, c + 'a' - 1); c 1185 lib/tty/key.c else if (c == '^') c 1188 lib/tty/key.c g_string_append_c (buffer, (char) c); c 1729 lib/tty/key.c int c; c 1745 lib/tty/key.c c = *pending_keys++; c 1746 lib/tty/key.c while (c == ESC_CHAR) c 1747 lib/tty/key.c c = ALT (*pending_keys++); c 1768 lib/tty/key.c if (c > 127 && c < 256 && use_8th_bit_as_meta) c 1769 lib/tty/key.c c = ALT (c & 0x7f); c 1779 lib/tty/key.c c = tty_lowlevel_getch (); c 1781 lib/tty/key.c if (c == KEY_RESIZE) c 1788 lib/tty/key.c if (c == -1) c 1799 lib/tty/key.c else if (c == -1) c 1820 lib/tty/key.c if (c > 127 && c < 256 && use_8th_bit_as_meta) c 1822 lib/tty/key.c c &= 0x7f; c 1832 lib/tty/key.c if (c == this->ch) c 1838 lib/tty/key.c c = this->code; c 1843 lib/tty/key.c if (!push_char (c)) c 1860 lib/tty/key.c c = getch_with_timeout (old_esc_mode_timeout); c 1861 lib/tty/key.c if (c != -1) c 1871 lib/tty/key.c c = tty_lowlevel_getch (); c 1886 lib/tty/key.c if (g_ascii_isdigit (c)) c 1887 lib/tty/key.c c = KEY_F (c - '0'); c 1888 lib/tty/key.c else if (c == ' ') c 1889 lib/tty/key.c c = ESC_CHAR; c 1891 lib/tty/key.c c = ALT (c); c 1898 lib/tty/key.c push_char (c); c 1905 lib/tty/key.c return correct_key_code (c); c 1917 lib/tty/key.c int c; c 2093 lib/tty/key.c c = block ? getch_with_delay () : get_key_code (1); c 2100 lib/tty/key.c if (mouse_enabled && (c == MCKEY_MOUSE c 2102 lib/tty/key.c || c == KEY_MOUSE c 2104 lib/tty/key.c || c == MCKEY_EXTENDED_MOUSE)) c 2107 lib/tty/key.c gboolean extended = c == MCKEY_EXTENDED_MOUSE; c 2110 lib/tty/key.c extended = extended || (c == KEY_MOUSE && xmouse_seq == NULL c 2115 lib/tty/key.c c = (event->type != 0) ? EV_MOUSE : EV_NONE; c 2117 lib/tty/key.c else if (c == MCKEY_BRACKETED_PASTING_START) c 2120 lib/tty/key.c c = EV_NONE; c 2122 lib/tty/key.c else if (c == MCKEY_BRACKETED_PASTING_END) c 2125 lib/tty/key.c c = EV_NONE; c 2128 lib/tty/key.c return c; c 2156 lib/tty/key.c int c; c 2162 lib/tty/key.c c = tty_lowlevel_getch (); c 2163 lib/tty/key.c while (c == -1) c 2164 lib/tty/key.c c = tty_lowlevel_getch (); /* Sanity check, should be unnecessary */ c 2165 lib/tty/key.c learn_store_key (buffer, c); c 2172 lib/tty/key.c while ((c = tty_lowlevel_getch ()) == -1) c 2187 lib/tty/key.c if (c == -1) c 2189 lib/tty/key.c learn_store_key (buffer, c); c 116 lib/tty/key.h is_abort_char (int c) c 118 lib/tty/key.h return ((c == (int) ESC_CHAR) || (c == (int) KEY_F (10))); c 619 lib/tty/tty-ncurses.c tty_print_char (int c) c 622 lib/tty/tty-ncurses.c addch (c); c 629 lib/tty/tty-ncurses.c tty_print_anychar (int c) c 631 lib/tty/tty-ncurses.c if (mc_global.utf8_display || c > 255) c 636 lib/tty/tty-ncurses.c res = g_unichar_to_utf8 (c, (char *) str); c 653 lib/tty/tty-ncurses.c if (g_unichar_iswide (c)) c 655 lib/tty/tty-ncurses.c else if (!g_unichar_iszerowidth (c)) c 662 lib/tty/tty-ncurses.c addch (c); c 670 lib/tty/tty-ncurses.c tty_print_alt_char (int c, gboolean single) c 674 lib/tty/tty-ncurses.c if ((chtype) c == ACS_VLINE) c 675 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT]; c 676 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_HLINE) c 677 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ]; c 678 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LTEE) c 679 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE]; c 680 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_RTEE) c 681 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE]; c 682 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_ULCORNER) c 683 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP]; c 684 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LLCORNER) c 685 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM]; c 686 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_URCORNER) c 687 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP]; c 688 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_LRCORNER) c 689 lib/tty/tty-ncurses.c c = mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM]; c 690 lib/tty/tty-ncurses.c else if ((chtype) c == ACS_PLUS) c 691 lib/tty/tty-ncurses.c c = mc_tty_frm[MC_TTY_FRM_CROSS]; c 693 lib/tty/tty-ncurses.c addch (c); c 484 lib/tty/tty-slang.c int c; c 489 lib/tty/tty-slang.c c = SLang_getkey (); c 490 lib/tty/tty-slang.c if (c == SLANG_GETKEY_ERROR) c 498 lib/tty/tty-slang.c return c; c 652 lib/tty/tty-slang.c tty_print_char (int c) c 654 lib/tty/tty-slang.c SLsmg_write_char ((SLwchar_Type) ((unsigned int) c)); c 660 lib/tty/tty-slang.c tty_print_alt_char (int c, gboolean single) c 665 lib/tty/tty-slang.c switch (c) c 668 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_VERT : MC_TTY_FRM_DVERT]); c 671 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_HORIZ : MC_TTY_FRM_DHORIZ]); c 674 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTMIDDLE : MC_TTY_FRM_DLEFTMIDDLE]); c 677 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTMIDDLE : MC_TTY_FRM_DRIGHTMIDDLE]); c 680 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_TOPMIDDLE : MC_TTY_FRM_DTOPMIDDLE]); c 683 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_BOTTOMMIDDLE : MC_TTY_FRM_DBOTTOMMIDDLE]); c 686 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTTOP : MC_TTY_FRM_DLEFTTOP]); c 689 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_LEFTBOTTOM : MC_TTY_FRM_DLEFTBOTTOM]); c 692 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTTOP : MC_TTY_FRM_DRIGHTTOP]); c 695 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[single ? MC_TTY_FRM_RIGHTBOTTOM : MC_TTY_FRM_DRIGHTBOTTOM]); c 698 lib/tty/tty-slang.c DRAW (c, mc_tty_frm[MC_TTY_FRM_CROSS]); c 701 lib/tty/tty-slang.c SLsmg_write_char ((unsigned int) c); c 709 lib/tty/tty-slang.c tty_print_anychar (int c) c 711 lib/tty/tty-slang.c if (c > 255) c 716 lib/tty/tty-slang.c res = g_unichar_to_utf8 (c, str); c 730 lib/tty/tty-slang.c if (!is_printable (c)) c 731 lib/tty/tty-slang.c c = '.'; c 732 lib/tty/tty-slang.c SLsmg_write_char ((SLwchar_Type) ((unsigned int) c)); c 116 lib/tty/tty.h extern void tty_print_char (int c); c 117 lib/tty/tty.h extern void tty_print_alt_char (int c, gboolean single); c 118 lib/tty/tty.h extern void tty_print_anychar (int c); c 73 lib/tty/win.c unsigned char c; c 75 lib/tty/win.c while (read (0, &c, 1) != 1); c 76 lib/tty/win.c if (c == '\n') c 78 lib/tty/win.c r = (c - 'A') * 16; c 79 lib/tty/win.c while (read (0, &c, 1) != 1); c 80 lib/tty/win.c r += (c - 'A'); c 123 lib/tty/win.c int c; c 125 lib/tty/win.c c = rxvt_getc (); c 126 lib/tty/win.c if (c < 0) c 129 lib/tty/win.c k[j++] = c; c 132 lib/tty/win.c c = rxvt_getc (); c 133 lib/tty/win.c if (c < 0) c 136 lib/tty/win.c k[j++] = c; c 109 lib/unixcompat.h #define IS_PATH_SEP(c) ((c) == PATH_SEP) c 85 lib/util.c is_7bit_printable (unsigned char c) c 87 lib/util.c return (c > 31 && c < 127); c 94 lib/util.c is_iso_printable (unsigned char c) c 96 lib/util.c return ((c > 31 && c < 127) || c >= 160); c 102 lib/util.c is_8bit_printable (unsigned char c) c 106 lib/util.c return is_iso_printable (c); c 108 lib/util.c return (c > 31 && c != 127 && c != 155); c 117 lib/util.c char *buf, *buf2, *q, *r, c; c 138 lib/util.c c = *q; c 171 lib/util.c *q = c; c 174 lib/util.c while (c != '\0'); c 229 lib/util.c is_printable (int c) c 231 lib/util.c c &= 0xff; c 236 lib/util.c return is_8bit_printable (c); c 239 lib/util.c return is_7bit_printable (c); c 242 lib/util.c return is_8bit_printable (c); c 244 lib/util.c return is_iso_printable (c); c 1010 lib/util.c char c; c 1012 lib/util.c c = *p | 0x20; c 1013 lib/util.c if (c >= 'a' && c <= 'z') c 1015 lib/util.c *q++ = c - 'a' + 1; c 30 lib/util.h #define whitespace(c) ((c) == ' ' || (c) == '\t') c 31 lib/util.h #define whiteness(c) (whitespace (c) || (c) == '\n') c 142 lib/util.h int is_printable (int c); c 147 lib/util.h char *name_quote (const char *c, gboolean quote_percent); c 150 lib/util.h char *fake_name_quote (const char *c, gboolean quote_percent); c 1615 lib/vfs/direntry.c char c; c 1642 lib/vfs/direntry.c while (read (sock, &c, sizeof (c)) > 0) c 1649 lib/vfs/direntry.c ret1 = fwrite (&c, 1, 1, logfile); c 1654 lib/vfs/direntry.c if (c == '\n') c 61 lib/widget/check.c WCheck *c = CHECK (w); c 66 lib/widget/check.c if (c->text.hotkey != NULL) c 68 lib/widget/check.c if (g_ascii_tolower ((gchar) c->text.hotkey[0]) == parm) c 80 lib/widget/check.c c->state = !c->state; c 96 lib/widget/check.c tty_print_string (c->state ? "[x] " : "[ ] "); c 97 lib/widget/check.c hotkey_draw (w, c->text, focused); c 102 lib/widget/check.c hotkey_free (c->text); c 141 lib/widget/check.c WCheck *c; c 144 lib/widget/check.c c = g_new (WCheck, 1); c 145 lib/widget/check.c w = WIDGET (c); c 146 lib/widget/check.c c->text = hotkey_new (text); c 148 lib/widget/check.c r.cols = 4 + hotkey_width (c->text); c 151 lib/widget/check.c c->state = state; c 153 lib/widget/check.c return c; c 390 lib/widget/group.c Widget *c = WIDGET (data); c 391 lib/widget/group.c const WRect *g = &CONST_WIDGET (c->owner)->rect; c 393 lib/widget/group.c WRect r = c->rect; c 395 lib/widget/group.c if ((c->pos_flags & WPOS_CENTER_HORZ) != 0) c 396 lib/widget/group.c r.x = g->x + (g->cols - c->rect.cols) / 2; c 397 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0 && (c->pos_flags & WPOS_KEEP_RIGHT) != 0) c 402 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_LEFT) != 0) c 404 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_RIGHT) != 0) c 407 lib/widget/group.c if ((c->pos_flags & WPOS_CENTER_VERT) != 0) c 408 lib/widget/group.c r.y = g->y + (g->lines - c->rect.lines) / 2; c 409 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_TOP) != 0 && (c->pos_flags & WPOS_KEEP_BOTTOM) != 0) c 414 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_TOP) != 0) c 416 lib/widget/group.c else if ((c->pos_flags & WPOS_KEEP_BOTTOM) != 0) c 419 lib/widget/group.c send_message (c, NULL, MSG_RESIZE, 0, &r); c 524 lib/widget/group.c int c; c 547 lib/widget/group.c c = key & ~ALT (0); c 548 lib/widget/group.c if (key & ALT (0) && g_ascii_isalpha (c)) c 549 lib/widget/group.c key = g_ascii_tolower (c); c 106 lib/widget/input.c char c; c 110 lib/widget/input.c c = '^'; c 112 lib/widget/input.c c = 'v'; c 114 lib/widget/input.c c = '|'; c 125 lib/widget/input.c tty_print_char (c); c 901 lib/widget/input_complete.c char c; c 905 lib/widget/input_complete.c c = (cdpath == NULL) ? '\0' : ':'; c 907 lib/widget/input_complete.c while (matches == NULL && c == ':') c 915 lib/widget/input_complete.c c = *s; c 926 lib/widget/input_complete.c *s = c; c 97 lib/widget/label.c char c = '\0'; c 103 lib/widget/label.c c = q[0]; c 113 lib/widget/label.c q[0] = c; c 135 lib/widget/radio.c int c; c 137 lib/widget/radio.c c = g_ascii_tolower ((gchar) r->texts[i].hotkey[0]); c 138 lib/widget/radio.c if (c != parm) c 653 lib/widget/wtools.c int c; c 677 lib/widget/wtools.c c = tty_get_event (&event, FALSE, sm->block); c 678 lib/widget/wtools.c if (c == EV_NONE) c 684 lib/widget/wtools.c dlg_process_event (sm->dlg, c, &event); c 418 src/cons.handler.c char c; c 428 src/cons.handler.c c = screen_shot.buf[line * screen_info.mv_csz + col] & 0xFF; c 429 src/cons.handler.c tty_print_char (c); c 2495 src/diffviewer/ydiff.c dview_display_file (const WDiff *dview, diff_place_t ord, int r, int c, int height, int width) c 2530 src/diffviewer/ydiff.c c += xwidth; c 2554 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - 2); c 2561 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2586 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2651 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2661 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2712 src/diffviewer/ydiff.c tty_gotoyx (r + j, c - xwidth); c 2716 src/diffviewer/ydiff.c tty_gotoyx (r + j, c); c 2727 src/diffviewer/ydiff.c dview_status (const WDiff *dview, diff_place_t ord, int width, int c) c 2737 src/diffviewer/ydiff.c tty_gotoyx (0, c); c 154 src/editor/bookmark.c book_mark_query_color (WEdit *edit, long line, int c) c 164 src/editor/bookmark.c if (p->c == c) c 176 src/editor/bookmark.c book_mark_insert (WEdit *edit, long line, int c) c 185 src/editor/bookmark.c if (p->c != c) c 187 src/editor/bookmark.c p->c = c; c 196 src/editor/bookmark.c q->c = c; c 218 src/editor/bookmark.c book_mark_clear (WEdit *edit, long line, int c) c 229 src/editor/bookmark.c if (p->line == line && (p->c == c || c == -1)) c 252 src/editor/bookmark.c book_mark_flush (WEdit *edit, int c) c 265 src/editor/bookmark.c if (q->c == c || c == -1) c 329 src/editor/bookmark.c if (p->c == color && p->line >= 0) c 79 src/editor/edit-impl.h #define edit_query_dialog3(h,t,a,b,c) query_dialog (h, t, D_NORMAL, 3, a, b, c) c 165 src/editor/edit-impl.h void edit_insert (WEdit * edit, int c); c 168 src/editor/edit-impl.h void edit_push_undo_action (WEdit * edit, long c); c 169 src/editor/edit-impl.h void edit_push_redo_action (WEdit * edit, long c); c 171 src/editor/edit-impl.h void edit_insert_ahead (WEdit * edit, int c); c 236 src/editor/edit-impl.h void book_mark_insert (WEdit * edit, long line, int c); c 237 src/editor/edit-impl.h gboolean book_mark_query_color (WEdit * edit, long line, int c); c 239 src/editor/edit-impl.h gboolean book_mark_clear (WEdit * edit, long line, int c); c 240 src/editor/edit-impl.h void book_mark_flush (WEdit * edit, int c); c 247 src/editor/edit-impl.h gboolean is_break_char (char c); c 287 src/editor/edit.c int c; c 290 src/editor/edit.c for (i = 0; (c = fgetc (f)) >= 0; i++) c 291 src/editor/edit.c edit_insert (edit, c); c 554 src/editor/edit.c long c; c 561 src/editor/edit.c c = edit->undo_stack[sp]; c 562 src/editor/edit.c if (c >= 0) c 566 src/editor/edit.c return c; c 572 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; c 581 src/editor/edit.c return c; c 589 src/editor/edit.c long c; c 596 src/editor/edit.c c = edit->redo_stack[sp]; c 597 src/editor/edit.c if (c >= 0) c 600 src/editor/edit.c return c; c 606 src/editor/edit.c c = edit->redo_stack[(sp - 1) & edit->redo_stack_size_mask]; c 612 src/editor/edit.c return c; c 620 src/editor/edit.c long c; c 627 src/editor/edit.c c = edit->undo_stack[sp]; c 628 src/editor/edit.c if (c >= 0) c 629 src/editor/edit.c return c; c 634 src/editor/edit.c c = edit->undo_stack[(sp - 1) & edit->undo_stack_size_mask]; c 635 src/editor/edit.c return c; c 692 src/editor/edit.c int c; c 694 src/editor/edit.c c = edit_buffer_get_byte (buf, s); c 695 src/editor/edit.c if (!isspace (c)) c 912 src/editor/edit.c my_type_of (int c) c 919 src/editor/edit.c if (c == 0) c 921 src/editor/edit.c if (c == '!') c 924 src/editor/edit.c if (g_ascii_isupper ((gchar) c)) c 925 src/editor/edit.c c = 'A'; c 926 src/editor/edit.c else if (g_ascii_islower ((gchar) c)) c 927 src/editor/edit.c c = 'a'; c 928 src/editor/edit.c else if (g_ascii_isalpha (c)) c 929 src/editor/edit.c c = 'a'; c 930 src/editor/edit.c else if (isdigit (c)) c 931 src/editor/edit.c c = '0'; c 932 src/editor/edit.c else if (isspace (c)) c 933 src/editor/edit.c c = ' '; c 934 src/editor/edit.c q = strchr (chars_move_whole_word, c); c 948 src/editor/edit.c while ((q = strchr (q + 1, c)) != NULL); c 1041 src/editor/edit.c int c; c 1046 src/editor/edit.c c = edit_buffer_get_utf (&edit->buffer, edit->buffer.curs1, &char_length); c 1052 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 1054 src/editor/edit.c if (edit_options.cursor_beyond_eol && c == '\n') c 1442 src/editor/edit.c char c; c 1444 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, p++); c 1445 src/editor/edit.c if (!whitespace (c)) c 1447 src/editor/edit.c edit_insert (edit, c); c 1522 src/editor/edit.c int c; c 1525 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, curs); c 1526 src/editor/edit.c if (c == '\n' || curs <= 0) c 1531 src/editor/edit.c if (whitespace (c)) c 1556 src/editor/edit.c int i = 1, inc = -1, c, d, n = 0; c 1561 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 1562 src/editor/edit.c p = strchr (b, c); c 1569 src/editor/edit.c if (strchr ("{[(", c) != NULL) c 1596 src/editor/edit.c i += (a == c) - (a == d); c 1898 src/editor/edit.c unsigned char c; c 1900 src/editor/edit.c c = edit_buffer_get_byte (&edit->buffer, i); c 1901 src/editor/edit.c if (!(c == '\n' || c == '\r')) c 1904 src/editor/edit.c if (fputc (c, f) < 0) c 1922 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1926 src/editor/edit.c if (c == '\r' && c1 == '\r') c 1943 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1955 src/editor/edit.c if (c == '\r' && c1 == '\n') c 1959 src/editor/edit.c if (c == '\n' && c1 == '\n') c 1983 src/editor/edit.c is_break_char (char c) c 1985 src/editor/edit.c return (isspace (c) || strchr ("{}[]()<>=|/\\!?~-+`'\",.;:#$%^&*", c) != NULL); c 2388 src/editor/edit.c edit_push_undo_action (WEdit *edit, long c) c 2415 src/editor/edit.c edit_push_redo_action (edit, c); c 2431 src/editor/edit.c if (d == c && edit->undo_stack[spm1] > -1000000000) c 2433 src/editor/edit.c if (c < KEY_PRESS) /* --> no need to push multiple do-nothings */ c 2441 src/editor/edit.c if (d == c) c 2443 src/editor/edit.c if (c >= KEY_PRESS) c 2450 src/editor/edit.c edit->undo_stack[sp] = c; c 2458 src/editor/edit.c c = (edit->undo_stack_pointer + 2) & edit->undo_stack_size_mask; c 2459 src/editor/edit.c if ((unsigned long) c == edit->undo_stack_bottom || c 2460 src/editor/edit.c (((unsigned long) c + 1) & edit->undo_stack_size_mask) == edit->undo_stack_bottom) c 2479 src/editor/edit.c edit_push_redo_action (WEdit *edit, long c) c 2512 src/editor/edit.c if (d == c && edit->redo_stack[spm1] > -1000000000) c 2514 src/editor/edit.c if (c < KEY_PRESS) /* --> no need to push multiple do-nothings */ c 2522 src/editor/edit.c if (d == c) c 2524 src/editor/edit.c if (c >= KEY_PRESS) c 2531 src/editor/edit.c edit->redo_stack[sp] = c; c 2539 src/editor/edit.c c = (edit->redo_stack_pointer + 2) & edit->redo_stack_size_mask; c 2540 src/editor/edit.c if ((unsigned long) c == edit->redo_stack_bottom || c 2541 src/editor/edit.c (((unsigned long) c + 1) & edit->redo_stack_size_mask) == edit->redo_stack_bottom) c 2566 src/editor/edit.c edit_insert (WEdit *edit, int c) c 2572 src/editor/edit.c if (c == '\n') c 2581 src/editor/edit.c if (c == '\n') c 2591 src/editor/edit.c if (c > 32) c 2600 src/editor/edit.c edit_buffer_insert (&edit->buffer, c); c 2607 src/editor/edit.c edit_insert_ahead (WEdit *edit, int c) c 2612 src/editor/edit.c if (c == '\n') c 2616 src/editor/edit.c if (c == '\n') c 2623 src/editor/edit.c if (c > 32) c 2632 src/editor/edit.c edit_buffer_insert_ahead (&edit->buffer, c); c 2780 src/editor/edit.c int c; c 2784 src/editor/edit.c c = edit_buffer_get_previous_byte (&edit->buffer); c 2785 src/editor/edit.c edit_buffer_insert_ahead (&edit->buffer, c); c 2786 src/editor/edit.c c = edit_buffer_backspace (&edit->buffer); c 2787 src/editor/edit.c if (c == '\n') c 2798 src/editor/edit.c int c; c 2802 src/editor/edit.c c = edit_buffer_get_current_byte (&edit->buffer); c 2803 src/editor/edit.c edit_buffer_insert (&edit->buffer, c); c 2804 src/editor/edit.c c = edit_buffer_delete (&edit->buffer); c 2805 src/editor/edit.c if (c == '\n') c 2834 src/editor/edit.c int c, orig_c; c 2844 src/editor/edit.c orig_c = c = edit_buffer_get_byte (&edit->buffer, p); c 2864 src/editor/edit.c c = convert_to_display_c (c); c 2867 src/editor/edit.c if (c == '\n') c 2869 src/editor/edit.c if (c == '\t') c 2871 src/editor/edit.c else if ((c < 32 || c == 127) && (orig_c == c c 444 src/editor/editbuffer.c int c; c 451 src/editor/editbuffer.c c = edit_buffer_get_previous_byte (buf); c 453 src/editor/editbuffer.c if (is_break_char (c)) c 461 src/editor/editbuffer.c last = c; c 462 src/editor/editbuffer.c c = edit_buffer_get_byte (buf, buf->curs1 - i - 1); c 464 src/editor/editbuffer.c if (is_break_char (c)) c 491 src/editor/editbuffer.c edit_buffer_insert (edit_buffer_t *buf, int c) c 504 src/editor/editbuffer.c *((unsigned char *) b + i) = (unsigned char) c; c 523 src/editor/editbuffer.c edit_buffer_insert_ahead (edit_buffer_t *buf, int c) c 536 src/editor/editbuffer.c *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i) = (unsigned char) c; c 558 src/editor/editbuffer.c unsigned char c; c 566 src/editor/editbuffer.c c = *((unsigned char *) b + EDIT_BUF_SIZE - 1 - i); c 582 src/editor/editbuffer.c return c; c 598 src/editor/editbuffer.c unsigned char c; c 606 src/editor/editbuffer.c c = *((unsigned char *) b + i); c 622 src/editor/editbuffer.c return c; c 54 src/editor/editbuffer.h void edit_buffer_insert (edit_buffer_t * buf, int c); c 55 src/editor/editbuffer.h void edit_buffer_insert_ahead (edit_buffer_t * buf, int c); c 469 src/editor/editcmd.c long b, c, d; c 473 src/editor/editcmd.c c = (long) edit_move_forward3 (edit, r, 0, m1); c 476 src/editor/editcmd.c b = MAX (MIN (c, d), MIN (edit->column1, edit->column2)); c 477 src/editor/editcmd.c c = MAX (c, MAX (edit->column1, edit->column2)); c 485 src/editor/editcmd.c q = edit_move_forward3 (edit, r, c, 0); c 588 src/editor/editcmd.c int c; c 593 src/editor/editcmd.c c = edit_buffer_get_byte (&edit->buffer, start); c 595 src/editor/editcmd.c || (x >= edit->column2 && x < edit->column1) || c == '\n') c 597 src/editor/editcmd.c *s++ = c; c 563 src/editor/editdraw.c unsigned int c; c 565 src/editor/editdraw.c c = edit_buffer_get_byte (&edit->buffer, tws - 1); c 566 src/editor/editdraw.c if (!whitespace (c)) c 573 src/editor/editdraw.c unsigned int c; c 607 src/editor/editdraw.c c = edit_buffer_get_utf (&edit->buffer, q, &char_length); c 610 src/editor/editdraw.c c = edit_buffer_get_byte (&edit->buffer, q); c 623 src/editor/editdraw.c switch (c) c 643 src/editor/editdraw.c c = p->style; c 645 src/editor/editdraw.c c |= book_mark << 16; c 647 src/editor/editdraw.c c = p->style | MOD_WHITESPACE; c 651 src/editor/editdraw.c p->style = c; c 656 src/editor/editdraw.c p->style = c; c 660 src/editor/editdraw.c p->style = c; c 666 src/editor/editdraw.c p->style = c; c 669 src/editor/editdraw.c p->style = c; c 675 src/editor/editdraw.c p->style = c; c 684 src/editor/editdraw.c c = p->style & ~MOD_CURSOR; c 689 src/editor/editdraw.c p->style = c; c 696 src/editor/editdraw.c c = p->style & ~MOD_CURSOR; c 701 src/editor/editdraw.c p->style = c; c 725 src/editor/editdraw.c c = convert_from_8bit_to_utf_c ((unsigned char) c, edit->converter); c 726 src/editor/editdraw.c else if (g_unichar_iswide (c)) c 733 src/editor/editdraw.c c = convert_from_utf_to_current_c (c, edit->converter); c 735 src/editor/editdraw.c c = convert_to_display_c (c); c 739 src/editor/editdraw.c if (c < 32) c 744 src/editor/editdraw.c p->ch = c + 0x40; c 751 src/editor/editdraw.c if (c == 127) c 769 src/editor/editdraw.c printable = g_unichar_isprint (c); c 772 src/editor/editdraw.c printable = is_printable (c); c 777 src/editor/editdraw.c printable = is_printable (c); c 780 src/editor/editdraw.c p->ch = c; c 524 src/editor/editwidget.c int c; c 541 src/editor/editwidget.c c = convert_from_input_c (x_key); c 543 src/editor/editwidget.c if (is_printable (c)) c 546 src/editor/editwidget.c char_for_insertion = c; c 592 src/editor/editwidget.c c = convert_from_utf_to_current (edit->charbuf); c 595 src/editor/editwidget.c char_for_insertion = c; c 38 src/editor/editwidget.h int c; /* color */ c 97 src/editor/etags.c char c = *buf; c 99 src/editor/etags.c while (!(c == '\0' || c == '\n')) c 104 src/editor/etags.c if (c == 0x01) c 106 src/editor/etags.c else if (c == 0x7F) c 113 src/editor/etags.c g_string_append_c (longdef, c); c 118 src/editor/etags.c if (isdigit (c)) c 128 src/editor/etags.c else if (c == 0x01) c 135 src/editor/etags.c g_string_append_c (shortdef, c); c 141 src/editor/etags.c if (c == 0x01) c 143 src/editor/etags.c else if (c == '\n') c 150 src/editor/etags.c g_string_append_c (shortdef, c); c 155 src/editor/etags.c if (c == ',' || c == '\n') c 157 src/editor/etags.c else if (isdigit (c)) c 162 src/editor/etags.c g_string_append_c (linedef, c); c 184 src/editor/etags.c c = *buf; c 96 src/editor/format.c int c; c 98 src/editor/format.c c = edit_buffer_get_byte (buf, p); c 99 src/editor/format.c if (c == '.') c 105 src/editor/format.c if (c == '-') c 113 src/editor/format.c && strchr (edit_options.stop_format_chars, c) != NULL); c 310 src/editor/format.c unsigned char c; c 314 src/editor/format.c c = t[i - 1]; c 315 src/editor/format.c if (c == '\n') c 317 src/editor/format.c if (whitespace (c)) c 361 src/editor/format.c replace_at (WEdit *edit, off_t q, int c) c 365 src/editor/format.c edit_insert_ahead (edit, c); c 407 src/editor/format.c int c = '\0'; c 417 src/editor/format.c if (t[i - 1] == '\n' && c == '\n') c 433 src/editor/format.c else if (c == '\n') c 446 src/editor/format.c c = edit_buffer_get_byte (&edit->buffer, p); c 447 src/editor/format.c if (c != t[i]) c 200 src/editor/syntax.c xx_tolower (const WEdit *edit, int c) c 202 src/editor/syntax.c return edit->is_case_insensitive ? tolower (c) : c; c 249 src/editor/syntax.c int c, d, j; c 251 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i - 1); c 252 src/editor/syntax.c c = xx_tolower (edit, c); c 253 src/editor/syntax.c if ((line_start && c != '\n') || (whole_left != NULL && strchr (whole_left, c) != NULL)) c 265 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i); c 266 src/editor/syntax.c c = xx_tolower (edit, c); c 267 src/editor/syntax.c if (*p == '\0' && whole_right != NULL && strchr (whole_right, c) == NULL) c 269 src/editor/syntax.c if (c == *p) c 271 src/editor/syntax.c if (c == '\n') c 282 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i); c 283 src/editor/syntax.c c = xx_tolower (edit, c); c 284 src/editor/syntax.c if (c == *p) c 290 src/editor/syntax.c if (j != 0 && strchr ((const char *) p + 1, c) != NULL) /* c exists further down, so it will get matched later */ c 292 src/editor/syntax.c if (whiteness (c) || (whole_right != NULL && strchr (whole_right, c) == NULL)) c 310 src/editor/syntax.c c = -1; c 313 src/editor/syntax.c d = c; c 314 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i); c 315 src/editor/syntax.c c = xx_tolower (edit, c); c 317 src/editor/syntax.c if (c == p[j]) c 334 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i); c 335 src/editor/syntax.c c = xx_tolower (edit, c); c 337 src/editor/syntax.c if (c == *p) c 345 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i); c 346 src/editor/syntax.c if (*p != xx_tolower (edit, c)) c 354 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i); c 355 src/editor/syntax.c c = xx_tolower (edit, c); c 356 src/editor/syntax.c return strchr (whole_right, c) != NULL ? -1 : i; c 376 src/editor/syntax.c int c; c 384 src/editor/syntax.c c = edit_buffer_get_byte (&edit->buffer, i); c 385 src/editor/syntax.c c = xx_tolower (edit, c); c 386 src/editor/syntax.c if (c == 0) c 409 src/editor/syntax.c if (r->first_right == c && (edit->rule.border & RULE_ON_RIGHT_BORDER) == 0 c 447 src/editor/syntax.c while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0') c 503 src/editor/syntax.c if (r->first_right == c) c 530 src/editor/syntax.c if (r->first_left == c) c 562 src/editor/syntax.c while (*(p = xx_strchr (edit, (const unsigned char *) p + 1, c)) != '\0') c 678 src/editor/syntax.c int c; c 680 src/editor/syntax.c c = fgetc (f); c 681 src/editor/syntax.c if (c == EOF) c 694 src/editor/syntax.c if (c == '\n') c 696 src/editor/syntax.c if (c == '\r') c 698 src/editor/syntax.c c = fgetc (f); c 699 src/editor/syntax.c if (c == '\n') c 702 src/editor/syntax.c ungetc (c, f); c 706 src/editor/syntax.c g_string_append_c (p, c); c 944 src/editor/syntax.c context_rule_t *c = NULL; c 1048 src/editor/syntax.c c = g_new0 (context_rule_t, 1); c 1049 src/editor/syntax.c g_ptr_array_add (edit->rules, c); c 1050 src/editor/syntax.c c->left = g_string_new (" "); c 1051 src/editor/syntax.c c->right = g_string_new (" "); c 1056 src/editor/syntax.c c = g_new0 (context_rule_t, 1); c 1057 src/editor/syntax.c g_ptr_array_add (edit->rules, c); c 1061 src/editor/syntax.c c->between_delimiters = TRUE; c 1067 src/editor/syntax.c c->whole_word_chars_left = g_strdup (whole_left); c 1068 src/editor/syntax.c c->whole_word_chars_right = g_strdup (whole_right); c 1073 src/editor/syntax.c c->whole_word_chars_left = g_strdup (whole_left); c 1078 src/editor/syntax.c c->whole_word_chars_right = g_strdup (whole_right); c 1084 src/editor/syntax.c c->line_start_left = TRUE; c 1087 src/editor/syntax.c c->left = g_string_new (*a++); c 1092 src/editor/syntax.c c->line_start_right = TRUE; c 1095 src/editor/syntax.c c->right = g_string_new (*a++); c 1096 src/editor/syntax.c c->first_left = c->left->str[0]; c 1097 src/editor/syntax.c c->first_right = c->right->str[0]; c 1099 src/editor/syntax.c c->keyword = g_ptr_array_new_with_free_func (syntax_keyword_free); c 1101 src/editor/syntax.c g_ptr_array_add (c->keyword, k); c 1122 src/editor/syntax.c if (c == NULL) c 1127 src/editor/syntax.c c->spelling = TRUE; c 1244 src/editor/syntax.c c = CONTEXT_RULE (g_ptr_array_index (edit->rules, i)); c 1247 src/editor/syntax.c for (j = 1; j < c->keyword->len; j++) c 1251 src/editor/syntax.c k = SYNTAX_KEYWORD (g_ptr_array_index (c->keyword, j)); c 1255 src/editor/syntax.c c->keyword_first_chars = g_strndup (first_chars->str, first_chars->len); c 122 src/filemanager/cd.c char c; c 137 src/filemanager/cd.c c = *s; c 140 src/filemanager/cd.c *s = c; c 181 src/filemanager/cd.c char c; c 185 src/filemanager/cd.c c = (p == NULL) ? '\0' : ':'; c 187 src/filemanager/cd.c while (!result && c == ':') c 194 src/filemanager/cd.c c = *s; c 204 src/filemanager/cd.c *s = c; c 489 src/filemanager/chattr.c WCheck *c = CHECK (l->data); c 494 src/filemanager/chattr.c check_set_text (c, btext); c 495 src/filemanager/chattr.c c->state = check_attr[m].state; c 769 src/filemanager/filegui.c int c; c 780 src/filemanager/filegui.c c = tty_get_event (&event, FALSE, ctx->suspended); c 781 src/filemanager/filegui.c if (c == EV_NONE) c 787 src/filemanager/filegui.c dlg_process_event (ui->op_dlg, c, &event); c 981 src/filemanager/find.c int c; c 984 src/filemanager/find.c c = tty_get_event (&event, GROUP (h)->mouse_status == MOU_REPEAT, FALSE); c 985 src/filemanager/find.c if (c != EV_NONE) c 987 src/filemanager/find.c dlg_process_event (h, c, &event); c 1230 src/filemanager/hotlist.c int c; c 1232 src/filemanager/hotlist.c while ((c = getc (hotlist_file)) != EOF && c != '\n' && g_ascii_isspace (c)) c 1234 src/filemanager/hotlist.c return c; c 1242 src/filemanager/hotlist.c int c, ret = 0; c 1250 src/filemanager/hotlist.c c = hot_skip_blanks (); c 1251 src/filemanager/hotlist.c switch (c) c 1260 src/filemanager/hotlist.c while ((c = getc (hotlist_file)) != EOF && c != '\n') c 1261 src/filemanager/hotlist.c g_string_append_c (tkn_buf, c); c 1265 src/filemanager/hotlist.c while ((c = getc (hotlist_file)) != EOF && c != '"') c 1267 src/filemanager/hotlist.c if (c == '\\') c 1269 src/filemanager/hotlist.c c = getc (hotlist_file); c 1270 src/filemanager/hotlist.c if (c == EOF) c 1276 src/filemanager/hotlist.c g_string_append_c (tkn_buf, c == '\n' ? ' ' : c); c 1278 src/filemanager/hotlist.c ret = (c == EOF) ? TKN_EOF : TKN_STRING; c 1281 src/filemanager/hotlist.c c = getc (hotlist_file); c 1282 src/filemanager/hotlist.c if (c == EOF) c 1287 src/filemanager/hotlist.c if (c == '\n') c 1295 src/filemanager/hotlist.c g_string_append_c (tkn_buf, g_ascii_toupper (c)); c 1297 src/filemanager/hotlist.c while ((c = fgetc (hotlist_file)) != EOF && (g_ascii_isalnum (c) || !isascii (c))); c 1298 src/filemanager/hotlist.c if (c != EOF) c 1299 src/filemanager/hotlist.c ungetc (c, hotlist_file); c 208 src/help.c move_forward2 (const char *c, int lines) c 213 src/help.c currentpoint = c; c 222 src/help.c return currentpoint = c; c 228 src/help.c move_backward2 (const char *c, int lines) c 233 src/help.c currentpoint = c; c 250 src/help.c return currentpoint = c; c 481 src/help.c int c; c 488 src/help.c c = (unsigned char) buff[0]; c 489 src/help.c switch (c) c 547 src/help.c help_print_word (h, word, &col, &line, c == ' '); c 548 src/help.c if (c == '\t') c 569 src/help.c if ((c == ' ') || (c == '.')) c 570 src/help.c tty_print_char (c); c 573 src/help.c tty_print_char (acs_map[c]); c 576 src/help.c WIDGET (h)->rect.x + col + 2, c); c 171 src/learn.c learn_check_key (int c) c 177 src/learn.c if (key_name_conv_tab[i].code != c || learnkeys[i].ok) c 209 src/learn.c switch (c) c 229 src/learn.c return (c < 255 && g_ascii_isalnum (c)); c 1269 src/subshell/common.c int c; c 1271 src/subshell/common.c for (c = 0; c < n - su; c++) c 1272 src/subshell/common.c g_string_append_printf (ret, "\\0%03o", (unsigned char) su[c]); c 204 src/textconf.c #define PRINTF(a, b, c) \ c 205 src/textconf.c (void) printf ("\t%-15s %s/%s\n", a, b, c) c 206 src/textconf.c #define PRINTF2(a, b, c) \ c 207 src/textconf.c (void) printf ("\t%-15s %s%s\n", a, b, c) c 775 src/usermenu.c expand_format (const Widget *edit_widget, char c, gboolean do_quote) c 789 src/usermenu.c if (c == '%') c 803 src/usermenu.c if (g_ascii_islower ((gchar) c)) c 838 src/usermenu.c c_lc = g_ascii_tolower ((gchar) c); c 979 src/usermenu.c result[1] = c; c 22 src/usermenu.h char *expand_format (const Widget * edit_widget, char c, gboolean do_quote); c 232 src/vfs/extfs/extfs.c char c = PATH_SEP; c 247 src/vfs/extfs/extfs.c while ((pent != NULL) && (c != '\0') && (*p != '\0')) c 253 src/vfs/extfs/extfs.c c = *q; c 265 src/vfs/extfs/extfs.c *q = c; c 271 src/vfs/extfs/extfs.c *q = c; c 282 src/vfs/extfs/extfs.c *q = c; c 295 src/vfs/extfs/extfs.c *q = c; c 296 src/vfs/extfs/extfs.c if (c != '\0') c 758 src/vfs/ftpfs/ftpfs.c int c; c 760 src/vfs/ftpfs/ftpfs.c while ((c = fgetc (npf)) != EOF && c != '\n') c 1112 src/vfs/ftpfs/ftpfs.c char *c; c 1120 src/vfs/ftpfs/ftpfs.c for (c = reply_str + 4; *c != '\0' && !isdigit ((unsigned char) *c); c++) c 1123 src/vfs/ftpfs/ftpfs.c if (*c == '\0' || !isdigit ((unsigned char) *c)) c 1127 src/vfs/ftpfs/ftpfs.c if (sscanf (c, "%d,%d,%d,%d,%d,%d", &xa, &xb, &xc, &xd, &xe, &xf) != 6) c 1150 src/vfs/ftpfs/ftpfs.c char *c; c 1157 src/vfs/ftpfs/ftpfs.c c = strchr (reply_str, '|'); c 1158 src/vfs/ftpfs/ftpfs.c if (c == NULL || strlen (c) <= 3) c 1161 src/vfs/ftpfs/ftpfs.c c += 3; c 1162 src/vfs/ftpfs/ftpfs.c port = atoi (c); c 465 src/vfs/sfs/sfs.c char *c, *semi = NULL; c 471 src/vfs/sfs/sfs.c for (c = key; *c != '\0'; c++) c 472 src/vfs/sfs/sfs.c if (*c == ':' || IS_PATH_SEP (*c)) c 474 src/vfs/sfs/sfs.c semi = c; c 475 src/vfs/sfs/sfs.c if (IS_PATH_SEP (*c)) c 477 src/vfs/sfs/sfs.c *c = '\0'; c 490 src/vfs/sfs/sfs.c for (c = semi + 1; *c != '\0' && !whitespace (*c); c++) c 491 src/vfs/sfs/sfs.c switch (*c) c 503 src/vfs/sfs/sfs.c fprintf (stderr, _("Warning: Invalid flag %c in %s:\n%s\n"), *c, "sfs.ini", key); c 506 src/vfs/sfs/sfs.c if (*c == '\0') c 509 src/vfs/sfs/sfs.c c++; c 511 src/vfs/sfs/sfs.c semi = strchr (c, '\n'); c 516 src/vfs/sfs/sfs.c sfs_info[sfs_no].command = g_strdup (c); c 208 src/vfs/tar/tar-internal.c is_octal_digit (char c) c 210 src/vfs/tar/tar-internal.c return '0' <= c && c <= '7'; c 304 src/vfs/tar/tar-internal.h gboolean is_octal_digit (char c); c 203 src/viewer/ascii.c mcview_wcwidth (const WView *view, int c) c 208 src/viewer/ascii.c if (g_unichar_iswide (c)) c 210 src/viewer/ascii.c if (g_unichar_iszerowidth (c)) c 215 src/viewer/ascii.c (void) c; c 223 src/viewer/ascii.c mcview_ismark (const WView *view, int c) c 227 src/viewer/ascii.c return g_unichar_ismark (c); c 230 src/viewer/ascii.c (void) c; c 239 src/viewer/ascii.c mcview_is_non_spacing_mark (const WView *view, int c) c 246 src/viewer/ascii.c type = g_unichar_type (c); c 252 src/viewer/ascii.c (void) c; c 261 src/viewer/ascii.c mcview_is_spacing_mark (const WView *view, int c) c 265 src/viewer/ascii.c return g_unichar_type (c) == G_UNICODE_SPACING_MARK; c 268 src/viewer/ascii.c (void) c; c 277 src/viewer/ascii.c mcview_isprint (const WView *view, int c) c 281 src/viewer/ascii.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 282 src/viewer/ascii.c return g_unichar_isprint (c); c 286 src/viewer/ascii.c return is_printable (c); c 293 src/viewer/ascii.c mcview_char_display (const WView *view, int c, char *s) c 299 src/viewer/ascii.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 300 src/viewer/ascii.c if (!g_unichar_isprint (c)) c 301 src/viewer/ascii.c c = '.'; c 302 src/viewer/ascii.c return g_unichar_to_utf8 (c, s); c 306 src/viewer/ascii.c if (g_unichar_iswide (c)) c 311 src/viewer/ascii.c if (g_unichar_iszerowidth (c)) c 314 src/viewer/ascii.c c = convert_from_utf_to_current_c (c, view->converter); c 319 src/viewer/ascii.c c = convert_to_display_c (c); c 325 src/viewer/ascii.c if (!is_printable (c)) c 326 src/viewer/ascii.c c = '.'; c 327 src/viewer/ascii.c *s = c; c 346 src/viewer/ascii.c mcview_get_next_char (WView *view, mcview_state_machine_t *state, int *c) c 357 src/viewer/ascii.c if (!mcview_get_utf (view, state->offset, c, &char_length)) c 367 src/viewer/ascii.c if (!mcview_get_byte (view, state->offset, c)) c 393 src/viewer/ascii.c mcview_get_next_maybe_nroff_char (WView *view, mcview_state_machine_t *state, int *c, int *color) c 402 src/viewer/ascii.c return mcview_get_next_char (view, state, c); c 404 src/viewer/ascii.c if (!mcview_get_next_char (view, state, c)) c 407 src/viewer/ascii.c if (!mcview_isprint (view, *c)) c 422 src/viewer/ascii.c if (*c == '_' && c3 == '_') c 429 src/viewer/ascii.c else if (*c == c3) c 436 src/viewer/ascii.c else if (*c == '_') c 438 src/viewer/ascii.c *c = c3; c 68 src/viewer/coord_cache.c #define coord_cache_index(c, i) ((coord_cache_entry_t *) g_ptr_array_index ((c), (i))) c 297 src/viewer/coord_cache.c int c; c 299 src/viewer/coord_cache.c if (!mcview_get_byte (view, current.cc_offset, &c)) c 313 src/viewer/coord_cache.c if (c == '\r') c 337 src/viewer/coord_cache.c else if (c == '\t') c 342 src/viewer/coord_cache.c else if (c == '\n') c 371 src/viewer/coord_cache.c if (nroff_state == NROFF_START && c != '\r') c 375 src/viewer/display.c int c; c 381 src/viewer/display.c for (c = 0; c < r->cols; c++) c 383 src/viewer/display.c cl = view->dpy_text_column + c; c 386 src/viewer/display.c widget_gotoyx (view, r->y + line_row, r->x + c); c 395 src/viewer/display.c widget_gotoyx (view, r->y + nums_row, r->x + c - 1); c 172 src/viewer/hex.c int c; c 248 src/viewer/hex.c if (!mcview_get_byte (view, from, &c)) c 265 src/viewer/hex.c c = curr->value; c 280 src/viewer/hex.c tty_print_char (hex_char[c / 16]); c 285 src/viewer/hex.c tty_print_char (hex_char[c % 16]); c 328 src/viewer/hex.c c = convert_from_8bit_to_utf_c ((unsigned char) c, view->converter); c 329 src/viewer/hex.c if (!g_unichar_isprint (c)) c 330 src/viewer/hex.c c = '.'; c 338 src/viewer/hex.c c = convert_to_display_c (c); c 341 src/viewer/hex.c if (!is_printable (c)) c 342 src/viewer/hex.c c = '.'; c 354 src/viewer/hex.c tty_print_char (c); c 432 src/viewer/internal.h int c; c 434 src/viewer/internal.h while (offset >= 2 * backspaces && mcview_get_byte (view, offset - 2 * backspaces, &c) c 435 src/viewer/internal.h && c == '\b') c 316 src/viewer/lib.c int c; c 323 src/viewer/lib.c if (!mcview_get_byte (view, current, &c)) c 325 src/viewer/lib.c if (c == '\n') c 327 src/viewer/lib.c if (!mcview_get_byte (view, current - 1, &c)) c 329 src/viewer/lib.c if (c == '\r') c 334 src/viewer/lib.c if (!mcview_get_byte (view, current - 1, &c)) c 336 src/viewer/lib.c if (c == '\r' || c == '\n') c 351 src/viewer/lib.c int c, prev_ch = 0; c 358 src/viewer/lib.c if (!mcview_get_byte (view, current, &c)) c 360 src/viewer/lib.c if (c == '\n') c 370 src/viewer/lib.c prev_ch = c; c 64 src/viewer/nroff.c int c = 0; c 69 src/viewer/nroff.c if (!mcview_get_utf (nroff->view, nroff_index, &c, &nroff->char_length)) c 73 src/viewer/nroff.c if (!mcview_get_byte (nroff->view, nroff_index, &c) || !g_ascii_isprint (c)) c 81 src/viewer/nroff.c if (!mcview_get_byte (nroff->view, nroff_index, &c)) c 85 src/viewer/nroff.c *ret_val = c; c 87 src/viewer/nroff.c return g_unichar_isprint (c); c 33 tests/lib/search/regex_replace_esc_seq.c #define test_helper_check_valid_data( a, b, c, d, e, f ) \ c 36 tests/lib/search/regex_replace_esc_seq.c ck_assert_msg (c == d, "skip_len(%d) != %d", c, d); \ c 39 tests/lib/strutil/str_verscmp.c static char const c[] = "B007502357019.GBP.CORP.COM"; c 91 tests/lib/strutil/str_verscmp.c { b, c, -1 }, c 92 tests/lib/strutil/str_verscmp.c { a, c, -1 }, c 94 tests/lib/strutil/str_verscmp.c { c, b, 1 }, c 95 tests/lib/strutil/str_verscmp.c { c, a, 1 }