HomeSort by relevance Sort by last modified time
    Searched refs:WINDOW (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/clang/test/Preprocessor/
macro_arg_slocentry_merge.h 5 #define WINDOW win
7 extern void f P_((WINDOW win));
  /external/syslinux/gpxe/src/hci/mucurses/
mucurses.h 17 extern void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
18 extern void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
19 extern void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
20 extern void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
21 extern void _wcursback ( WINDOW *win ) __nonnull;
windows.c 13 * Delete a window
15 * @v *win pointer to window being deleted
18 int delwin ( WINDOW *win ) {
22 /* I think we should blank the region covered by the window -
40 * Create a new derived window
42 * @v parent parent window
43 * @v nlines window height
44 * @v ncols window width
45 * @v begin_y window y origin (relative to parent)
46 * @v begin_x window x origin (relative to parent
    [all...]
winattrs.c 5 * MuCurses window attribute functions
12 * Get the background rendition attributes for a window
14 * @v *win subject window
17 inline chtype getbkgd ( WINDOW *win ) {
22 * Turn off attributes in a window
24 * @v win subject window
28 int wattroff ( WINDOW *win, int attrs ) {
34 * Turn on attributes in a window
36 * @v win subject window
40 int wattron ( WINDOW *win, int attrs )
    [all...]
mucurses.c 13 static void _wupdcurs ( WINDOW *win ) __nonnull;
14 void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
15 void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
16 void _wcursback ( WINDOW *win ) __nonnull;
17 void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
18 void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
19 int wmove ( WINDOW *win, int y, int x ) __nonnull;
21 WINDOW _stdscr = {
37 * @v *win window in which to update position
39 static void _wupdcurs ( WINDOW *win )
    [all...]
cursor.h 19 * @v *win window on which to operate
22 static inline void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
29 * @v *win window on which to operate
32 static inline void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
clear.c 14 * Clear a window to the bottom from current cursor position
16 * @v *win subject window
19 int wclrtobot ( WINDOW *win ) {
32 * Clear a window to the end of the current line
34 * @v *win subject window
37 int wclrtoeol ( WINDOW *win ) {
50 * Delete character under the cursor in a window
52 * @v *win subject window
55 int wdelch ( WINDOW *win ) {
63 * Delete line under a window's curso
    [all...]
print.c 16 * Add a single-byte character and rendition to a window and advance
19 * @v *win window to be rendered in
23 int waddch ( WINDOW *win, const chtype ch ) {
29 * Add string of single-byte characters to a window
31 * @v *win window to be rendered in
36 int waddnstr ( WINDOW *win, const char *str, int n ) {
43 WINDOW *win;
54 * Print formatted output in a window
56 * @v *win subject window
61 int vw_printw ( WINDOW *win, const char *fmt, va_list varglist )
    [all...]
print_nadv.c 12 * Add string of single-byte characters and renditions to a window
14 * @v *win window to be rendered in
19 int waddchnstr ( WINDOW *win, const chtype *chstr, int n ) {
edging.c 13 * window
15 * @v *win window to be bordered
20 int box ( WINDOW *win, chtype verch, chtype horch ) {
28 * window
30 * @v *win window to be bordered
41 int wborder ( WINDOW *win, chtype ls, chtype rs,
73 * Create a horizontal line in a window
75 * @v *win subject window
80 int whline ( WINDOW *win, chtype ch, int n ) {
93 * Create a vertical line in a window
    [all...]
wininit.c 17 WINDOW *initscr ( void ) {
kb.c 22 static int _wgetc ( WINDOW *win ) {
48 * Pop a character from the FIFO into a window
50 * @v *win window in which to echo input
53 int wgetch ( WINDOW *win ) {
79 * Read at most n characters from the FIFO into a window
81 * @v *win window in which to echo input
86 int wgetnstr ( WINDOW *win, char *str, int n ) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
panel.h 46 WINDOW *win;
56 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
63 extern NCURSES_EXPORT(PANEL*) new_panel (WINDOW *);
69 extern NCURSES_EXPORT(int) replace_panel (PANEL *,WINDOW *);
curses.h 100 * Definition used to make WINDOW and similar structs opaque.
114 * The internal type used for window dimensions.
301 #define _SUBWIN 0x01 /* is this a sub-window? */
302 #define _ENDLINE 0x02 /* is the window flush right? */
303 #define _FULLWIN 0x04 /* is the window full-screen? */
305 #define _ISPAD 0x10 /* is this window a pad? */
322 typedef struct _win_st WINDOW;
375 /* window location and size */
376 NCURSES_SIZE_T _maxy, _maxx; /* maximums of x and y, NOT window size */
379 short _flags; /* window state flags *
    [all...]
ncurses.h 100 * Definition used to make WINDOW and similar structs opaque.
114 * The internal type used for window dimensions.
301 #define _SUBWIN 0x01 /* is this a sub-window? */
302 #define _ENDLINE 0x02 /* is the window flush right? */
303 #define _FULLWIN 0x04 /* is the window full-screen? */
305 #define _ISPAD 0x10 /* is this window a pad? */
322 typedef struct _win_st WINDOW;
375 /* window location and size */
376 NCURSES_SIZE_T _maxy, _maxx; /* maximums of x and y, NOT window size */
379 short _flags; /* window state flags *
    [all...]
cursesw.h 115 inline int UNDEF(box)(WINDOW *win, int v, int h) { return box(win, v, h); }
134 inline int UNDEF(clearok)(WINDOW* win, bool bf) { return clearok(win, bf); }
138 extern "C" NCURSES_IMPEXP int NCURSES_API clearok(WINDOW*, bool);
196 inline int UNDEF(flushok)(WINDOW* _win, bool _bf) {
205 inline int UNDEF(getattrs)(WINDOW *win) { return getattrs(win); }
211 inline void UNDEF(getbegyx)(WINDOW* win, int& y, int& x) { getbegyx(win, y, x); }
217 inline chtype UNDEF(getbkgd)(const WINDOW *win) { return getbkgd(win); }
229 inline void UNDEF(getmaxyx)(WINDOW* win, int& y, int& x) { getmaxyx(win, y, x); }
241 inline void UNDEF(getparyx)(WINDOW* win, int& y, int& x) { getparyx(win, y, x); }
253 inline void UNDEF(getyx)(const WINDOW* win, int& y, int& x)
    [all...]
menu.h 108 WINDOW *win; /* Window containing menu */
109 WINDOW *sub; /* Subwindow for menu display */
110 WINDOW *userwin; /* User's window */
111 WINDOW *usersub; /* User's subwindow */
189 extern NCURSES_EXPORT(WINDOW *) menu_sub (const MENU *);
190 extern NCURSES_EXPORT(WINDOW *) menu_win (const MENU *);
235 extern NCURSES_EXPORT(int) set_menu_sub (MENU *,WINDOW *);
238 extern NCURSES_EXPORT(int) set_menu_win (MENU *,WINDOW *);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
panel.h 46 WINDOW *win;
56 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
63 extern NCURSES_EXPORT(PANEL*) new_panel (WINDOW *);
69 extern NCURSES_EXPORT(int) replace_panel (PANEL *,WINDOW *);
curses.h 100 * Definition used to make WINDOW and similar structs opaque.
120 * The internal type used for window dimensions.
320 #define _SUBWIN 0x01 /* is this a sub-window? */
321 #define _ENDLINE 0x02 /* is the window flush right? */
322 #define _FULLWIN 0x04 /* is the window full-screen? */
324 #define _ISPAD 0x10 /* is this window a pad? */
341 typedef struct _win_st WINDOW;
394 /* window location and size */
395 NCURSES_SIZE_T _maxy, _maxx; /* maximums of x and y, NOT window size */
398 short _flags; /* window state flags *
    [all...]
ncurses.h 100 * Definition used to make WINDOW and similar structs opaque.
120 * The internal type used for window dimensions.
320 #define _SUBWIN 0x01 /* is this a sub-window? */
321 #define _ENDLINE 0x02 /* is the window flush right? */
322 #define _FULLWIN 0x04 /* is the window full-screen? */
324 #define _ISPAD 0x10 /* is this window a pad? */
341 typedef struct _win_st WINDOW;
394 /* window location and size */
395 NCURSES_SIZE_T _maxy, _maxx; /* maximums of x and y, NOT window size */
398 short _flags; /* window state flags *
    [all...]
cursesw.h 115 inline int UNDEF(box)(WINDOW *win, int v, int h) { return box(win, v, h); }
134 inline int UNDEF(clearok)(WINDOW* win, bool bf) { return clearok(win, bf); }
138 extern "C" NCURSES_IMPEXP int NCURSES_API clearok(WINDOW*, bool);
196 inline int UNDEF(flushok)(WINDOW* _win, bool _bf) {
205 inline int UNDEF(getattrs)(WINDOW *win) { return getattrs(win); }
211 inline void UNDEF(getbegyx)(WINDOW* win, int& y, int& x) { getbegyx(win, y, x); }
217 inline chtype UNDEF(getbkgd)(const WINDOW *win) { return getbkgd(win); }
229 inline void UNDEF(getmaxyx)(WINDOW* win, int& y, int& x) { getmaxyx(win, y, x); }
241 inline void UNDEF(getparyx)(WINDOW* win, int& y, int& x) { getparyx(win, y, x); }
253 inline void UNDEF(getyx)(const WINDOW* win, int& y, int& x)
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
editbox.h 19 /** Containing window */
20 WINDOW *win;
40 WINDOW *win, unsigned int row, unsigned int col,
  /external/webrtc/talk/media/base/
screencastid.h 38 #include "webrtc/base/window.h"
46 // Used for identifying a window or desktop to be screencast.
49 enum Type { INVALID, WINDOW, DESKTOP };
54 : type_(WINDOW), window_(id) {
61 const rtc::WindowId& window() const { return window_; } function in class:cricket::ScreencastId
71 } else if (type_ == WINDOW) {
77 bool IsWindow() const { return type_ == WINDOW; }
85 } else if (type_ == WINDOW) {
86 return window_.Equals(other.window());
  /external/syslinux/gpxe/src/include/
curses.h 73 /** Curses Window struct */
75 /** screen with which window associates */
77 /** window attributes */
79 /** window origin coordinates */
81 /** window cursor position */
83 /** window dimensions */
85 /** parent window */
91 } WINDOW;
93 extern WINDOW _stdscr;
218 extern int box ( WINDOW *, chtype, chtype ) __nonnull
    [all...]
  /external/toybox/kconfig/lxdialog/
dialog.h 187 int on_key_esc(WINDOW *win);
193 void attr_clear(WINDOW * win, int height, int width, chtype attr);
195 void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x);
196 void print_button(WINDOW * win, const char *label, int y, int x, int selected);
197 void print_title(WINDOW *dialog, const char *title, int width);
198 void draw_box(WINDOW * win, int y, int x, int height, int width, chtype box,
200 void draw_shadow(WINDOW * win, int y, int x, int height, int width);

Completed in 526 milliseconds

1 2 3