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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
087-if-comments.c 4 win
022-define-func-arg-with-parens.c 2 foo(argument(including parens)for the win)
  /external/syslinux/gpxe/src/hci/mucurses/
clear.c 16 * @v *win subject window
19 int wclrtobot ( WINDOW *win ) {
22 _store_curs_pos( win, &pos );
24 _wputc( win, ' ', WRAP );
25 } while ( win->curs_y + win->curs_x );
26 _restore_curs_pos( win, &pos );
34 * @v *win subject window
37 int wclrtoeol ( WINDOW *win ) {
40 _store_curs_pos( win, &pos )
    [all...]
edging.c 15 * @v *win window to be bordered
20 int box ( WINDOW *win, chtype verch, chtype horch ) {
21 chtype corner = '+' | win->attrs; /* default corner character */
22 return wborder( win, verch, verch, horch, horch,
30 * @v *win window to be bordered
41 int wborder ( WINDOW *win, chtype ls, chtype rs,
46 _store_curs_pos( win, &pos );
47 wmove(win,0,0);
49 _wputch(win,tl,WRAP);
50 while ( ( win->width - 1 ) - win->curs_x )
    [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;
37 * @v *win window in which to update position
39 static void _wupdcurs ( WINDOW *win ) {
40 win->scr->movetoyx ( win->scr, win->ori_y + win->curs_y
    [all...]
winattrs.c 14 * @v *win subject window
17 inline chtype getbkgd ( WINDOW *win ) {
18 return win->attrs;
24 * @v win subject window
28 int wattroff ( WINDOW *win, int attrs ) {
29 win->attrs &= ~attrs;
36 * @v win subject window
40 int wattron ( WINDOW *win, int attrs ) {
41 win->attrs |= attrs;
48 * @v win subject windo
    [all...]
cursor.h 19 * @v *win window on which to operate
22 static inline void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
23 wmove ( win, pos->y, pos->x );
29 * @v *win window on which to operate
32 static inline void _store_curs_pos ( WINDOW *win, struct cursor_pos *pos ) {
33 pos->y = win->curs_y;
34 pos->x = win->curs_x;
kb.c 22 static int _wgetc ( WINDOW *win ) {
25 if ( win == NULL )
29 while ( ! win->scr->peek( win->scr ) ) {
39 c = win->scr->getc( win->scr );
42 _wputch( win, (chtype) ( c | win->attrs ), WRAP );
50 * @v *win window in which to echo input
53 int wgetch ( WINDOW *win ) {
    [all...]
print_nadv.c 14 * @v *win window to be rendered in
19 int waddchnstr ( WINDOW *win, const chtype *chstr, int n ) {
22 _store_curs_pos( win, &pos );
23 _wputchstr( win, chstr, NOWRAP, n );
24 _restore_curs_pos( win, &pos );
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 15 * @v *win pointer to window being deleted
18 int delwin ( WINDOW *win ) {
19 if ( win == NULL )
26 wmove( win, 0, 0 );
29 _wputch( win, killch, WRAP );
30 } while ( win->curs_x + win->curs_y );
32 free( win );
94 * @v *win window to move
99 int mvwin ( WINDOW *win, int y, int x )
122 WINDOW *win; local
    [all...]
print.c 19 * @v *win window to be rendered in
23 int waddch ( WINDOW *win, const chtype ch ) {
24 _wputch( win, ch, WRAP );
31 * @v *win window to be rendered in
36 int waddnstr ( WINDOW *win, const char *str, int n ) {
37 _wputstr( win, str, WRAP, n );
43 WINDOW *win; member in struct:printw_context
50 _wputch( wctx->win, c | wctx->win->attrs, WRAP );
56 * @v *win subject windo
    [all...]
  /external/clang/test/Preprocessor/
macro_arg_slocentry_merge.h 5 #define WINDOW win
7 extern void f P_((WINDOW win));
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreateWindowSurface.java 1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
6 Object win,
14 Object win,
21 Object win,
26 if (win instanceof SurfaceView) {
27 SurfaceView surfaceView = (SurfaceView)win;
29 } else if (win instanceof SurfaceHolder) {
30 SurfaceHolder holder = (SurfaceHolder)win;
32 } else if (win instanceof Surface) {
33 sur = (Surface) win;
    [all...]
  /hardware/libhardware/tests/hwc/
cnativewindow.c 125 CNativeWindow *win = from_base(base); local
126 if (win->fb && win->fb->setSwapInterval)
127 return win->fb->setSwapInterval(win->fb, interval);
132 CNativeWindow *win = from_base(base); local
135 pthread_mutex_lock(&win->lock);
137 while ((cnb = get_front(&win->free_buffer_queue)) == 0) {
138 pthread_cond_wait(&win->cvar, &win->lock)
231 CNativeWindow *win = from_base(base); local
253 CNativeWindow *win = from_base(base); local
281 CNativeWindow *win = from_base_const(base); local
314 CNativeWindow *win = from_base(base); local
560 CNativeWindow *win; local
    [all...]
  /external/skia/tools/viewer/sk_app/unix/
main_unix.cpp 17 void finishWindow(sk_app::Window_unix* win) {
18 win->finishResize();
19 win->finishPaint();
56 sk_app::Window_unix* win = sk_app::Window_unix::gWindowMap.find(event.xany.window); local
57 if (!win) {
64 win->markPendingPaint();
65 pendingWindows.add(win);
68 win->markPendingResize(event.xconfigurerequest.width,
70 pendingWindows.add(win);
73 if (win->handleEvent(event))
    [all...]
  /external/libchrome/base/win/
windows_version_unittest.cc 5 #include "base/win/windows_version.h"
10 namespace win { namespace in namespace:base
21 } // namespace win
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
textpad.py 6 def rectangle(win, uly, ulx, lry, lrx):
10 win.vline(uly+1, ulx, curses.ACS_VLINE, lry - uly - 1)
11 win.hline(uly, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
12 win.hline(lry, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
13 win.vline(uly+1, lrx, curses.ACS_VLINE, lry - uly - 1)
14 win.addch(uly, ulx, curses.ACS_ULCORNER)
15 win.addch(uly, lrx, curses.ACS_URCORNER)
16 win.addch(lry, lrx, curses.ACS_LRCORNER)
17 win.addch(lry, ulx, curses.ACS_LLCORNER)
43 def __init__(self, win, insert_mode=False)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
textpad.py 6 def rectangle(win, uly, ulx, lry, lrx):
10 win.vline(uly+1, ulx, curses.ACS_VLINE, lry - uly - 1)
11 win.hline(uly, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
12 win.hline(lry, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
13 win.vline(uly+1, lrx, curses.ACS_VLINE, lry - uly - 1)
14 win.addch(uly, ulx, curses.ACS_ULCORNER)
15 win.addch(uly, lrx, curses.ACS_URCORNER)
16 win.addch(lry, lrx, curses.ACS_LRCORNER)
17 win.addch(lry, ulx, curses.ACS_LLCORNER)
43 def __init__(self, win, insert_mode=False)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
textpad.py 6 def rectangle(win, uly, ulx, lry, lrx):
10 win.vline(uly+1, ulx, curses.ACS_VLINE, lry - uly - 1)
11 win.hline(uly, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
12 win.hline(lry, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
13 win.vline(uly+1, lrx, curses.ACS_VLINE, lry - uly - 1)
14 win.addch(uly, ulx, curses.ACS_ULCORNER)
15 win.addch(uly, lrx, curses.ACS_URCORNER)
16 win.addch(lry, lrx, curses.ACS_LRCORNER)
17 win.addch(lry, ulx, curses.ACS_LLCORNER)
43 def __init__(self, win, insert_mode=False)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
textpad.py 6 def rectangle(win, uly, ulx, lry, lrx):
10 win.vline(uly+1, ulx, curses.ACS_VLINE, lry - uly - 1)
11 win.hline(uly, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
12 win.hline(lry, ulx+1, curses.ACS_HLINE, lrx - ulx - 1)
13 win.vline(uly+1, lrx, curses.ACS_VLINE, lry - uly - 1)
14 win.addch(uly, ulx, curses.ACS_ULCORNER)
15 win.addch(uly, lrx, curses.ACS_URCORNER)
16 win.addch(lry, lrx, curses.ACS_LRCORNER)
17 win.addch(lry, ulx, curses.ACS_LLCORNER)
43 def __init__(self, win, insert_mode=False)
    [all...]
  /frameworks/native/opengl/libs/EGL/
egl_object.cpp 59 EGLNativeWindowType win, EGLSurface surface,
61 egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx),
64 if (win) {
65 win->incStrong(this);
70 if (win != NULL) {
72 win->decStrong(this);
77 if (win != NULL && connected) {
78 native_window_set_buffers_format(win, 0);
79 if (native_window_api_disconnect(win, NATIVE_WINDOW_API_EGL))
    [all...]
  /external/syslinux/gpxe/src/include/
curses.h 647 static inline int mvwaddch ( WINDOW *win, int y, int x, const chtype ch ) {
648 return ( wmove( win, y, x ) == OK
649 ? waddch ( win, ch ) : ERR );
652 static inline int mvwaddchnstr ( WINDOW *win, int y, int x, const chtype *chstr, int n ) {
653 return ( wmove ( win, y, x ) == OK
654 ? waddchnstr ( win, chstr, n ) : ERR );
657 static inline int mvwaddchstr ( WINDOW *win, int y, int x, const chtype *chstr ) {
658 return ( wmove ( win, y, x ) == OK
659 ? waddchnstr ( win, chstr, -1 ) : ERR );
662 static inline int mvwaddnstr ( WINDOW *win, int y, int x, const char *str, int n )
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
curses.h     [all...]
ncurses.h     [all...]

Completed in 1078 milliseconds

1 2 3 4 5 6 7 8 91011>>