col 613 lib/tty/tty-ncurses.c for (int col = 0; col < cols; col++) col 615 lib/tty/tty-ncurses.c getcchar (&ctext[col], wch, &attrs, &color_pair, NULL); col 616 lib/tty/tty-ncurses.c setcchar (&ctext[col], wch, attrs, color, NULL); col 416 src/cons.handler.c int col, line; col 425 src/cons.handler.c for (col = 0; col < MIN (COLS, screen_info.mv_csz); col++) col 427 src/cons.handler.c c = screen_shot.buf[line * screen_info.mv_csz + col] & 0xFF; col 1702 src/editor/edit.c long col; col 1707 src/editor/edit.c col = edit_get_col (edit); col 1728 src/editor/edit.c for (l = width - (edit_get_col (edit) - col); l > 0; l -= space_width) col 1747 src/editor/edit.c edit_cursor_move (edit, edit_move_forward3 (edit, p, col, 0) - edit->buffer.curs1); col 1749 src/editor/edit.c for (l = col - edit_get_col (edit); l >= space_width; l -= space_width) col 1754 src/editor/edit.c *col1 = col; col 1755 src/editor/edit.c *col2 = col + width; col 2777 src/editor/edit.c long col; col 2787 src/editor/edit.c for (col = 0, p = current; p < q; p++) col 2793 src/editor/edit.c if (col == cols) col 2795 src/editor/edit.c if (col > cols) col 2810 src/editor/edit.c col -= char_length - 1; col 2812 src/editor/edit.c col++; col 2815 src/editor/edit.c col -= char_length - 1; col 2821 src/editor/edit.c return (upto != 0 ? (off_t) col : p); col 2823 src/editor/edit.c col += TAB_SIZE - col % TAB_SIZE; col 2827 src/editor/edit.c col += 2; col 2829 src/editor/edit.c col++; col 2831 src/editor/edit.c return (off_t) col; col 669 src/editor/editcmd.c edit_append_spaces_at_eol (WEdit *edit, const long col, const long width) col 672 src/editor/editcmd.c for (long l = width - (edit_get_col (edit) - col); l > 0; l--) col 683 src/editor/editcmd.c long col; col 686 src/editor/editcmd.c col = edit_get_col (edit); col 696 src/editor/editcmd.c edit_append_spaces_at_eol (edit, col, width); col 713 src/editor/editcmd.c edit_cursor_move (edit, edit_move_forward3 (edit, p, col, 0) - edit->buffer.curs1); col 715 src/editor/editcmd.c for (long l = col - edit_get_col (edit); l >= 1; l--) col 721 src/editor/editcmd.c edit_append_spaces_at_eol (edit, col, width); col 723 src/editor/editcmd.c *col1 = col; col 724 src/editor/editcmd.c *col2 = col + width; col 497 src/editor/editdraw.c int col, start_col_real; col 524 src/editor/editdraw.c col = (int) edit_move_forward3 (edit, b, 0, q); col 525 src/editor/editdraw.c start_col_real = col + edit->start_col; col 544 src/editor/editdraw.c if (col <= -(edit->start_col + 16)) col 566 src/editor/editdraw.c while (col <= end_col - edit->start_col) col 620 src/editor/editdraw.c col = end_col - edit->start_col + 1; // quit col 628 src/editor/editdraw.c i = TAB_SIZE - ((int) col % TAB_SIZE); col 629 src/editor/editdraw.c tab_over = (end_col - edit->start_col) - (col + i - 1); col 632 src/editor/editdraw.c col += i; col 715 src/editor/editdraw.c col++; col 728 src/editor/editdraw.c col++; col 745 src/editor/editdraw.c col += 2; col 757 src/editor/editdraw.c col += 2; col 783 src/editor/editdraw.c col++; col 791 src/editor/editdraw.c if (col > (end_col - edit->start_col + 1)) col 519 src/filemanager/filemanager.c int col, row; col 525 src/filemanager/filemanager.c tty_getyx (&row, &col); col 532 src/filemanager/filemanager.c tty_gotoyx (row, col); col 1177 src/filemanager/panel.c show_vertical_separator_tee (const WPanel *panel, int col) col 1181 src/filemanager/panel.c widget_gotoyx (w, 0, col); col 1186 src/filemanager/panel.c widget_gotoyx (w, w->rect.lines - 3, col); col 1191 src/filemanager/panel.c widget_gotoyx (w, w->rect.lines - 1, col); col 1203 src/filemanager/panel.c int col, i; col 1225 src/filemanager/panel.c col = 0; col 1235 src/filemanager/panel.c col += fi->field_len; col 1237 src/filemanager/panel.c show_vertical_separator_tee (panel, ++col); col 1241 src/filemanager/panel.c show_vertical_separator_tee (panel, ++col); col 4022 src/filemanager/panel.c int lines, col_width, col; col 4033 src/filemanager/panel.c col = x / col_width; col 4035 src/filemanager/panel.c y += panel->top + lines * col; col 404 src/help.c help_print_word (WDialog *h, GString *word, int *col, int *line, gboolean add_space) col 413 src/help.c if (*col + w >= HELP_WINDOW_WIDTH) col 415 src/help.c *col = 0; col 423 src/help.c widget_gotoyx (h, *line + 2, *col + 2); col 426 src/help.c *col += w; col 432 src/help.c if (*col < HELP_WINDOW_WIDTH - 1) col 435 src/help.c (*col)++; col 439 src/help.c *col = 0; col 519 src/help.c int col = 0; col 556 src/help.c active_col = col + 2; col 559 src/help.c start_link_area (col, line, p); col 566 src/help.c help_print_word (h, word, &col, &line, FALSE); col 567 src/help.c end_link_area (col - 1, line); col 577 src/help.c widget_gotoyx (h, line + 2, col + 2); col 579 src/help.c col += str_term_width1 (mc_global.mc_version); col 588 src/help.c help_print_word (h, word, &col, &line, FALSE); col 593 src/help.c help_print_word (h, word, &col, &line, FALSE); col 595 src/help.c col = 0; col 602 src/help.c help_print_word (h, word, &col, &line, c == ' '); col 605 src/help.c col = (col / 8 + 1) * 8; col 606 src/help.c if (col >= HELP_WINDOW_WIDTH) col 609 src/help.c col = 8; col 620 src/help.c else if (col < HELP_WINDOW_WIDTH) col 622 src/help.c widget_gotoyx (h, line + 2, col + 2); col 624 src/help.c col++; col 632 src/help.c help_print_word (h, word, &col, &line, FALSE); col 454 src/usermenu.c int col; col 476 src/usermenu.c for (col = 0; *commands != '\0'; commands++) col 478 src/usermenu.c if (col == 0) col 487 src/usermenu.c col++; col 489 src/usermenu.c col = 0; col 1021 src/usermenu.c int col = 0; col 1084 src/usermenu.c if (col == 0 && (entries == NULL || menu_lines == entries->len)) col 1149 src/usermenu.c max_cols = MAX (max_cols, col); col 1150 src/usermenu.c col = 0; col 1156 src/usermenu.c col++; col 1171 src/usermenu.c max_cols = MIN (MAX (max_cols, col), MAX_ENTRY_LEN); col 544 src/viewer/ascii.c int col = 0; col 578 src/viewer/ascii.c *linewidth = col; col 579 src/viewer/ascii.c return (col > 0) ? 1 : 0; col 590 src/viewer/ascii.c *linewidth = col; col 622 src/viewer/ascii.c if (view->mode_flags.wrap && (off_t) col + charwidth > dpy_text_column + (off_t) r->cols col 623 src/viewer/ascii.c && col > 0) col 629 src/viewer/ascii.c *linewidth = col; col 636 src/viewer/ascii.c if ((off_t) col >= dpy_text_column col 637 src/viewer/ascii.c && (off_t) col + charwidth <= dpy_text_column + (off_t) r->cols) col 641 src/viewer/ascii.c widget_gotoyx (view, r->y + row, r->x + ((off_t) col - dpy_text_column)); col 660 src/viewer/ascii.c else if ((off_t) col < dpy_text_column && (off_t) col + charwidth > dpy_text_column) col 667 src/viewer/ascii.c i < (off_t) col + charwidth && i < dpy_text_column + (off_t) r->cols; i++) col 673 src/viewer/ascii.c else if ((off_t) col < dpy_text_column + (off_t) r->cols col 674 src/viewer/ascii.c && (off_t) col + charwidth > dpy_text_column + (off_t) r->cols) col 680 src/viewer/ascii.c for (i = col; i < dpy_text_column + (off_t) r->cols; i++) col 688 src/viewer/ascii.c col += charwidth; col 691 src/viewer/ascii.c if (!view->mode_flags.wrap && (off_t) col >= dpy_text_column + (off_t) r->cols col 150 src/viewer/hex.c int col = 0; col 161 src/viewer/hex.c for (i = 0; col < r->cols && hex_buff[i] != '\0'; col++, i++) col 249 src/viewer/hex.c view->cursor_col = col; col 273 src/viewer/hex.c widget_gotoyx (view, r->y + row, r->x + col); col 274 src/viewer/hex.c if (col < r->cols) col 277 src/viewer/hex.c col++; col 279 src/viewer/hex.c if (col < r->cols) col 282 src/viewer/hex.c col++; col 289 src/viewer/hex.c if (col < r->cols) col 292 src/viewer/hex.c col++; col 298 src/viewer/hex.c if (view->data_area.cols >= 80 && col < r->cols) col 301 src/viewer/hex.c col++; col 303 src/viewer/hex.c if (col < r->cols) col 306 src/viewer/hex.c col++; col 309 src/viewer/internal.h void mcview_moveto (WView *view, off_t, off_t col); col 424 src/viewer/mcviewer.c long line, col; col 427 src/viewer/mcviewer.c load_file_position (view->filename_vpath, &line, &col, &new_offset, &view->saved_bookmarks); col 340 src/viewer/move.c mcview_moveto (WView *view, off_t line, off_t col) col 344 src/viewer/move.c mcview_coord_to_offset (view, &offset, line, col); col 382 src/viewer/move.c int col = view->cursor_col; col 385 src/viewer/move.c col++; col 387 src/viewer/move.c widget_gotoyx (view, r->y + view->cursor_row, r->x + col);