Home
last modified time | relevance | path

Searched refs:cursor_col (Results 1 – 25 of 193) sorted by relevance

12345678

/dports/misc/tudu/tudu-0.10.3/src/
H A Dtext.cc126 ++cursor_col; in edit()
286 if (cursor_col>0) in left()
289 --cursor_col; in left()
304 ++cursor_col; in right()
309 cursor_col = 0; in right()
331 cursor_col += cols; in down()
357 cursor_col -= cols; in up()
366 if (cursor_col > 0) in backspace()
370 --cursor_col; in backspace()
406 cursor_col = 0; in home()
[all …]
/dports/www/anyterm/anyterm-1.1.29/src/
H A DTerminal.cc93 screen.cursor_col = max(screen.cursor_col,0); in clip_cursor()
94 screen.cursor_col = min(screen.cursor_col,cols()-1); in clip_cursor()
153 screen.cursor_col = 0; in write_normal_char()
157 screen.cursor_col++; in write_normal_char()
163 screen.cursor_col = 0; in carriage_return()
179 screen.cursor_col--; in backspace()
200 screen.cursor_col = 0; in reset()
424 screen.cursor_col = 0; in csi_CNL()
433 screen.cursor_col = 0; in csi_CPL()
489 for (int i=screen.cursor_col; i<screen.cursor_col+n; ++i) { in csi_ICH()
[all …]
/dports/games/retroarch/RetroArch-1.9.7/wii/libogc/libogc/
H A Dconsole.c222 con->cursor_col = 0; in __console_clear()
302 con->cursor_col = 0; in __console_init_ex()
397 if(curr_con->cursor_col < 0) curr_con->cursor_col = 0; in __console_parse_escsequence()
540 con->cursor_col = 0; in __console_write()
543 con->cursor_col = 0; in __console_write()
546 con->cursor_col--; in __console_write()
547 if(con->cursor_col < 0) in __console_write()
549 con->cursor_col = 0; in __console_write()
556 if(con->cursor_col%TAB_SIZE) con->cursor_col += (con->cursor_col%TAB_SIZE); in __console_write()
561 con->cursor_col++; in __console_write()
[all …]
/dports/net/guacamole-server/guacamole-server-1.3.0/src/terminal/
H A Dterminal_handlers.c123 term->cursor_col = col; in guac_terminal_move_cursor()
208 term->cursor_col - 1); in guac_terminal_echo()
271 term->cursor_col = 0; in guac_terminal_echo()
283 term->cursor_col, in guac_terminal_echo()
291 term->cursor_col += width; in guac_terminal_echo()
648 term->cursor_col, term->cursor_col + amount - 1); in guac_terminal_csi()
662 term->cursor_col); in guac_terminal_csi()
677 term->cursor_col); in guac_terminal_csi()
692 term->cursor_col + amount); in guac_terminal_csi()
788 0, term->cursor_col); in guac_terminal_csi()
[all …]
/dports/devel/z88dk/z88dk/libsrc/_DEVELOPMENT/EXAMPLES/vgl/demo_standalone/
H A Dvtech.h343 LCD_CURSOR_COL_MODEL4000 = cursor_col; in cursor_update()
451 cursor_col = 0; in screen_put()
473 cursor_col++; in screen_put()
476 if (cursor_col >= screen_cols) { in screen_put()
482 cursor_col = 0; in screen_put()
501 cursor_col = 0; in screen_put_char()
523 cursor_col++; in screen_put_char()
527 if (cursor_col >= screen_cols) { in screen_put_char()
528 cursor_col = 0; in screen_put_char()
623 cursor_col = 0; in screen_clear()
[all …]
/dports/devel/z88dk/z88dk/libsrc/_DEVELOPMENT/target/vgl/_INFORMATION/
H A Dvtech.h328 LCD_CURSOR_COL_MODEL4000 = cursor_col; in cursor_update()
436 cursor_col = 0; in screen_put()
458 cursor_col++; in screen_put()
461 if (cursor_col >= screen_cols) { in screen_put()
467 cursor_col = 0; in screen_put()
486 cursor_col = 0; in screen_put_char()
508 cursor_col++; in screen_put_char()
512 if (cursor_col >= screen_cols) { in screen_put_char()
513 cursor_col = 0; in screen_put_char()
608 cursor_col = 0; in screen_clear()
[all …]
/dports/net/mosh/mosh-1.3.2/src/terminal/
H A Dterminalframebuffer.cc77 cursor_col( 0 ), cursor_row( 0 ), in DrawState()
129 combining_char_col = cursor_col; in new_grapheme()
137 if ( cursor_col < 0 ) cursor_col = 0; in snap_cursor_to_border()
138 if ( cursor_col >= width ) cursor_col = width - 1; in snap_cursor_to_border()
161 cursor_col += N; in move_col()
163 cursor_col = N; in move_col()
213 tabs[ cursor_col ] = true; in set_tab()
231 for ( int i = cursor_col - 1; i > 0; i-- ) { in get_next_tab()
281 : cursor_col( 0 ), cursor_row( 0 ), in SavedCursor()
289 save.cursor_col = cursor_col; in save_cursor()
[all …]
/dports/devel/py-urwid/urwid-2.1.2/docs/manual/
H A Dwcur1.py8 self.cursor_col = 0
23 col = min(self.cursor_col, maxcol - 1)
29 col = self.cursor_col - 1
31 col = self.cursor_col + 1
/dports/editors/neovim/neovim-0.6.1/src/nvim/
H A Dpopupmnu.c108 int cursor_col; in pum_display() local
131 cursor_col = cmd_startcol; in pum_display()
137 cursor_col = curwin->w_width - curwin->w_wcol - 1; in pum_display()
139 cursor_col = curwin->w_wcol; in pum_display()
144 cursor_col += curwin->w_grid.col_offset; in pum_display()
148 cursor_col += curwin->w_wincol; in pum_display()
282 if ((((cursor_col < Columns - p_pw) || (cursor_col < Columns - max_width)) in pum_display()
284 || (pum_rl && ((cursor_col > p_pw) || (cursor_col > max_width)))) { in pum_display()
286 pum_col = cursor_col; in pum_display()
306 } else if (((cursor_col > p_pw || cursor_col > max_width) && !pum_rl) in pum_display()
[all …]
/dports/databases/pspg/pspg-5.3.4/src/
H A Dpspg.c152 static int cursor_col = 0; variable
2425 cursor_col = 0; in main()
4346 cursor_col = 0; in main()
4619 cursor_col = 0; in main()
4644 if (cursor_col < 3) in main()
4645 cursor_col = 0; in main()
4761 cursor_col = 0; in main()
4877 if (cursor_col > 0) in main()
4878 cursor_col = 0; in main()
4881 cursor_col = 0; in main()
[all …]
/dports/games/frotz/frotz-73eec90ebb159ed687b74cbaf81e135c3e7e390b/src/dumb/
H A Ddoutput.c73 static int cursor_row = 0, cursor_col = 0; variable
422 if (++cursor_col == z_header.screen_cols) { in dumb_display_char()
424 cursor_col--; in dumb_display_char()
427 cursor_col = 0; in dumb_display_char()
610 cursor_row = row - 1; cursor_col = col - 1; in os_set_cursor()
722 cursor_col -= num_chars; in dumb_discard_old_input()
724 if (cursor_col < 0) in dumb_discard_old_input()
725 cursor_col = 0; in dumb_discard_old_input()
726 os_erase_area(cursor_row + 1, cursor_col + 1, in dumb_discard_old_input()
727 cursor_row + 1, cursor_col + num_chars, -1); in dumb_discard_old_input()
[all …]
/dports/mail/evolution/evolution-3.42.1/src/e-util/
H A De-table-selection-model.c99 gint cursor_col = -1; in model_changed_idle() local
109 cursor_col = e_selection_model_cursor_col (E_SELECTION_MODEL (etsm)); in model_changed_idle()
110 if (cursor_col == -1) { in model_changed_idle()
112 cursor_col = e_table_header_prioritized_column (etsm->eth); in model_changed_idle()
114 cursor_col = 0; in model_changed_idle()
116 e_selection_model_change_cursor (E_SELECTION_MODEL (etsm), cursor_row, cursor_col); in model_changed_idle()
124 e_selection_model_cursor_changed (E_SELECTION_MODEL (etsm), cursor_row, cursor_col); in model_changed_idle()
H A De-selection-model-array.c122 e_selection_model_cursor_changed (E_SELECTION_MODEL (esma), esma->cursor_row, esma->cursor_col); in e_selection_model_array_delete_rows()
140 e_selection_model_cursor_changed (E_SELECTION_MODEL (esma), esma->cursor_row, esma->cursor_col); in e_selection_model_array_insert_rows()
181 e_selection_model_cursor_changed (esm, esma->cursor_row, esma->cursor_col); in e_selection_model_array_move_row()
211 g_value_set_int (value, esma->cursor_col); in esma_get_property()
227 e_selection_model_do_something (esm, g_value_get_int (value), esma->cursor_col, 0); in esma_set_property()
263 esma->cursor_col = -1; in esma_clear()
293 esma->cursor_col = 0; in esma_select_all()
334 esma->cursor_col = col; in esma_change_cursor()
369 return esma->cursor_col; in esma_cursor_col()
516 esma->cursor_col = -1; in e_selection_model_array_init()
[all …]
H A De-table-item.c1374 gint cursor_col, cursor_row; in e_table_item_redraw_range() local
1381 "cursor_col", &cursor_col, in e_table_item_redraw_range()
1609 gint cursor_col; in eti_set_property() local
1666 "cursor_col", &cursor_col, in eti_set_property()
2046 "cursor_col", &cursor_col, in eti_draw()
2322 "cursor_col", &cursor_col, in eti_cursor_move_left()
2335 "cursor_col", &cursor_col, in eti_cursor_move_right()
3041 if (cursor_col == -1) in eti_event()
3492 gint cursor_col; in e_table_item_get_focused_column() local
3499 "cursor_col", &cursor_col, in e_table_item_get_focused_column()
[all …]
H A De-tree-selection-model.c53 gint cursor_col; member
142 etsm->priv->cursor_col = 0; in restore_cursor()
153 cursor_row, etsm->priv->cursor_col); in restore_cursor()
303 etsm->priv->cursor_col, 0); in tree_selection_model_set_property()
338 g_value_set_int (value, etsm->priv->cursor_col); in tree_selection_model_get_property()
481 get_cursor_row (etsm), etsm->priv->cursor_col); in tree_selection_model_select_all()
533 etsm->priv->cursor_col = col; in tree_selection_model_change_cursor()
547 return etsm->priv->cursor_col; in tree_selection_model_cursor_col()
683 esm_class->cursor_col = tree_selection_model_cursor_col; in e_tree_selection_model_class_init()
737 etsm->priv->cursor_col = -1; in e_tree_selection_model_init()
[all …]
/dports/sysutils/u-boot-olinuxino-lime2-emmc/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-olinuxino-lime2/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-olinuxino-lime/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-olimex-a20-som-evb/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-wandboard/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/roms/u-boot/arch/x86/lib/
H A Dbios_interrupts.c25 static u8 cursor_row, cursor_col; in int10_handler() local
34 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
38 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
44 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-cubox-hummingboard/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-firefly-rk3399/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-a13-olinuxino/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()
/dports/sysutils/u-boot-sopine/u-boot-2021.07/arch/x86/lib/
H A Dbios_interrupts.c26 static u8 cursor_row, cursor_col; in int10_handler() local
35 cursor_col >= (M.x86.R_EDX & 0xff)) { in int10_handler()
39 cursor_col = M.x86.R_EDX & 0xff; in int10_handler()
45 M.x86.R_EDX = (cursor_row << 8) | cursor_col; in int10_handler()

12345678