Home
last modified time | relevance | path

Searched refs:screen (Results 1 – 25 of 189) sorted by relevance

12345678

/openbsd-src/gnu/llvm/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A DANSI.py29 from . import screen
38 screen = fsm.memory[0]
39 screen.write_ch(fsm.input_symbol)
53 screen = fsm.memory[0]
54 screen.cursor_back ()
59 screen = fsm.memory[0]
60 screen.cursor_back (count)
64 screen = fsm.memory[0]
65 screen.cursor_down ()
70 screen = fsm.memory[0]
[all …]
/openbsd-src/usr.bin/tmux/
H A Dformat-draw.c29 struct screen *s;
73 format_update_ranges(struct format_ranges *frs, struct screen *s, u_int offset, in format_update_ranges()
110 struct screen *s, struct format_ranges *frs, u_int offset, u_int start, in format_draw_put()
125 u_int ocx, u_int ocy, u_int offset, u_int width, struct screen *list, in format_draw_put_list()
126 struct screen *list_left, struct screen *list_right, int focus_start, in format_draw_put_list()
169 u_int ocy, struct screen *left, struct screen *centre, struct screen *right, in format_draw_none()
170 struct screen *abs_centre, struct format_ranges *frs) in format_draw_none()
228 u_int ocy, struct screen *left, struct screen *centre, struct screen *right, in format_draw_left()
229 struct screen *abs_centre, struct screen *list, struct screen *list_left, in format_draw_left()
230 struct screen *list_right, struct screen *after, int focus_start, in format_draw_left()
[all …]
H A Dwindow-clock.c27 static struct screen *window_clock_init(struct window_mode_entry *,
48 struct screen screen; member
153 static struct screen *
159 struct screen *s; in window_clock_init()
168 s = &data->screen; in window_clock_init()
183 screen_free(&data->screen); in window_clock_free()
191 struct screen *s = &data->screen; in window_clock_resize()
212 struct screen *s = &data->screen; in window_clock_draw_screen()
H A Dscreen.c1 /* $OpenBSD: screen.c,v 1.88 2024/11/15 09:01:16 nicm Exp $ */
28 /* Selected area in screen. */
51 static void screen_resize_y(struct screen *, u_int, int, u_int *);
52 static void screen_reflow(struct screen *, u_int, u_int *, u_int *, int);
56 screen_free_titles(struct screen *s) in screen_free_titles()
73 /* Create a new screen. */
75 screen_init(struct screen *s, u_int sx, u_int sy, u_int hlimit) in screen_init()
99 /* Reinitialise screen. */
101 screen_reinit(struct screen *s) in screen_reinit()
128 /* Reset hyperlinks of a screen
[all...]
H A Dscreen-write.c1 /* $OpenBSD: screen-write.c,v 1.232 2024/11/16 16:49:50 nicm Exp $ */
91 struct screen *s = ctx->s; in screen_write_set_cursor()
175 struct screen *s = ctx->s; in screen_write_initctx()
228 screen_write_make_list(struct screen *s) in screen_write_make_list()
239 screen_write_free_list(struct screen *s) in screen_write_free_list()
250 screen_write_init(struct screen_write_ctx *ctx, struct screen *s) in screen_write_init()
267 struct screen *s) in screen_write_start_pane()
270 s = wp->screen; in screen_write_start_pane()
283 screen_write_start_callback(struct screen_write_ctx *ctx, struct screen *s, in screen_write_start_callback()
299 screen_write_start(struct screen_write_ctx *ctx, struct screen *
[all...]
H A Dtmux.h85 #define TMUX_TERM "screen"
908 /* Virtual screen. */
911 struct screen {
951 struct screen *s;
1047 struct screen *(*init)(struct window_mode_entry *,
1072 struct screen *screen;
1161 struct screen *screen;
1162 struct screen bas
851 struct screen { global() struct
854 titlesscreen global() argument
861 cstylescreen global() argument
862 default_cstylescreen global() argument
879 selscreen global() argument
881 write_listscreen global() argument
891 hyperlinksscreen global() argument
1004 struct screen *screen; global() member
1089 struct screen *screen; global() member
1673 struct screen screen; global() member
[all...]
H A Dwindow-copy.c35 static struct screen *window_copy_init(struct window_mode_entry *,
37 static struct screen *window_copy_view_init(struct window_mode_entry *,
76 struct screen *, int, int);
216 * Copy mode's visible screen (the "screen" field) is filled from one of two
223 * "backing" field, and is copied into "screen" as needed (that is, when member
225 * directly at that pane's screen structure (&wp->base); when backed by a list
226 * of output-lines from a command, it points at a newly-allocated screen
230 struct screen screen;
[all...]
/openbsd-src/usr.bin/vi/docs/internals/
H A Dstructures6 structure per screen type. The first is a single global structure (GS)
10 screen structures, and they can only do this if they have a starting
11 point. The number of globals in nvi is dependent on the screen type, but
12 every screen type will have at least one global, __global_list, which
15 The GS structure contains linked lists of screen (SCR) structures.
18 The GS structure has a set of functions which update the screen and/or
19 return information about the screen from the underlying screen package.
30 for any routine that wishes to talk to the screen, the EXF structure is
38 "gp", the screen structure is "sp", and the file structure is "ep".
49 CL The curses screen private data structure. Everything to
[all …]
/openbsd-src/lib/libcurses/tinfo/
H A Duse_screen.c41 use_screen(SCREEN *screen, NCURSES_SCREEN_CB func, void *data) in NCURSES_EXPORT()
48 (void *) screen, in NCURSES_EXPORT()
58 set_term(screen); in NCURSES_EXPORT()
60 code = func(screen, data); in NCURSES_EXPORT()
/openbsd-src/gnu/llvm/lldb/utils/lui/
H A Dsandbox.py29 def __init__(self, screen, event_queue): argument
30 super(SandboxUI, self).__init__(screen, event_queue)
32 height, width = self.screen.getmaxyx()
66 def main(screen): argument
70 sandbox = SandboxUI(screen, event_queue)
H A Dcui.py174 def __init__(self, screen, queue): argument
176 self.screen = screen
181 c = self.screen.getch()
188 def __init__(self, screen, event_queue): argument
189 self.screen = screen
196 self.screen.bkgd(curses.color_pair(1))
197 self.screen.clear()
199 self.input_handler = InputHandler(self.screen, self.event_queue)
204 self.screen.refresh()
228 self.screen.noutrefresh()
H A Dlui.py84 def __init__(self, screen, event_queue, driver): argument
85 super(LLDBUI, self).__init__(screen, event_queue)
89 h, w = self.screen.getmaxyx()
128 def main(screen): argument
138 view = LLDBUI(screen, event_queue, driver)
/openbsd-src/usr.bin/vi/docs/tutorial/
H A Dvi.beginner7 UC Berkeley's screen oriented editor called vi (for VIsual). This tutorial
10 For best use of this tutorial, read all of a screen before performing any of
33 Determine what the cursor looks like on your screen. Whatever it is (a box,
35 in the upper left-hand corner of your screen under or on the S of Section.
40 screen, and a ^B leaves the cursor near the bottom of the screen? Try the two
74 the screen the string you are trying to read and type. It is suggested that
116 screen will not look exactly the same as it does right now, the 'z' command
117 will reposition the screen. (You may want to write the string down before
118 typing it: once you type {1G} it will no longer be on the screen.)
124 {z^M} command will repaint the screen putting the cursor at the top of the
[all …]
/openbsd-src/usr.bin/file/magdir/
H A Dterminfo6 # XXX - byte order for screen images?
9 0 short 0433 Curses screen image
10 0 short 0434 Curses screen image
/openbsd-src/usr.bin/mail/
H A Dcmd1.c47 static int screen; variable
62 screen = (n-1)/size; in headers()
63 if (screen < 0) in headers()
64 screen = 0; in headers()
65 mp = &message[screen * size]; in headers()
123 if (screen >= maxscreen) { in scroll()
127 screen++; in scroll()
131 if (screen <= 0) { in scroll()
135 screen--; in scroll()
/openbsd-src/games/hunt/
H A DREADME.protocol14 screen-drawing commands to the client. ie, the server does all the work.
172 The server only ever sends screen drawing commands to the client.
174 80x24 screen with the cursor at the top left (position y=0, x=0)
182 If the cursor goes past the rightmost column of the screen,
192 The client must move its cursor to the absolute screen
193 location y, x, where y=0 is the top of the screen and
194 x=0 is the left of the screen.
196 Refresh screen 242 (REFRESH)
200 This indicates to the client that a burst of screen
205 ensure that the user can see the current screen. (This
[all …]
/openbsd-src/usr.bin/less/
H A Dless.hlp23 ESC-) RightArrow * Left one half screen width (or _N positions).
24 ESC-( LeftArrow * Right one half screen width (or _N positions).
26 r ^R ^L Repaint screen.
27 R Repaint screen, discarding buffered input.
29 Default "window" is the screen height.
30 Default "half-window" is half of the screen height.
112 -a ........ --search-skip-screen
113 Search skips current screen.
120 -c ........ --clear-screen
125 Set screen colors. (MS-DOS only)
[all …]
/openbsd-src/usr.bin/vi/docs/
H A Dev26 ^B ^B Page up a screen.
28 ^D ^D Page down a half-screen.
30 ^F ^F Page down a screen.
36 ^L ^L Redraw the screen.
47 ^U ^U Page up a half-screen.
H A Dhelp35 ^L redraw screen
39 ^R redraw screen
43 ^W move to next screen
78 H move to count lines from screen top
81 L move to screen bottom
82 M move to screen middle
122 z reposition the screen
141 bg: background the current screen
152 fg: switch the current screen and a backgrounded screen
173 resize: grow or shrink the current screen
[all …]
H A DTODO16 VI: Change the screen scrolling to not eat user characters... i.e.
100 E_ADDSTR /* Add a string to the screen. */
108 E_DISCARD /* Discard a screen. */
109 E_EXADJUST /* Ex: screen adjustment routine. */
115 E_REFRESH /* Refresh the screen. */
117 E_SPLIT /* Split the screen. */
133 VI: Display a split vi screen for the :help command.
135 VI: When getting a key for a continue screen, we should always read from
H A Dchangelog17 + Fix bug where splitting in the middle of the screen could repaint
37 + Fix bug where splitting a screen resulting in a new screen at the
41 an ex command that trashed the screen.
62 + Display "files to edit" message for rewind, next and initial screen.
74 + Fix bug where screen update was incorrect if a character triggered
93 + Don't switch to the alternate xterm screen when entering the ex
95 + Implement the Fg command, so can foreground a background screen into
96 a split screen.
97 + Change the fg command to match screen names using the last component
141 + Fix leftright screen bug where the screen wasn't repainted when
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20020430-1.c74 Screen *screen; member
142 if (x_root == ((((w)->core.screen))->width) - 1 && in GetEventEntry()
157 move = ((((w)->core.screen))->width) - in GetEventEntry()
163 move = ((((w)->core.screen))->width) - in GetEventEntry()
188 XWarpPointer((((w)->core.screen)->display), 0L, 0L, 0, 0, 0, 0, warp, 0); in GetEventEntry()
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g77.f-torture/noncompile/
H A D19990826-4.f33 logical needit,screen,isub,loop,comd,burn,wrtres,fixedxy
45 data needit,screen,comd,isub
74 screen=.true.
257 if(screen)print 4,(itype(j),ixwin(j),iywin(j),iboxwin(j),
309 if (screen) call htype(line,skyval,.false.,fitr,ngr,ncon)
374 call setup ( numf,nc,screen,line,skyval,fitr,ngr,ncon,
478 call setup ( numf,nc,screen,line,skyval,fitr,ngr,ncon,
588 if ( .not.screen ) close(luout)
/openbsd-src/distrib/special/more/
H A Dmore.help5 <space> Display next k lines of text [current screen size]
6 z Display next k lines of text [current screen size]*
19 ctrl-L Redraw screen
/openbsd-src/games/atc/
H A Dextern.c61 C_SCREEN screen, *sp = &screen; variable

12345678