Searched defs:win (Results 1 - 25 of 104) sorted by relevance

12345

/external/libchrome/base/win/
H A Dwindows_version_unittest.cc5 #include "base/win/windows_version.h"
10 namespace win { namespace in namespace:base
21 } // namespace win
H A Dscoped_select_object.h14 namespace win { namespace in namespace:base
40 } // namespace win
H A Dscoped_co_mem.h14 namespace win { namespace in namespace:base
18 // base::win::ScopedCoMem<ITEMIDLIST> file_item;
65 } // namespace win
H A Dscoped_com_initializer.h15 namespace win { namespace in namespace:base
76 } // namespace win
H A Dscoped_gdi_object.h13 namespace win { namespace in namespace:base
42 } // namespace win
H A Dscoped_hglobal.h14 namespace win { namespace in namespace:base
50 } // namespace win
H A Dscoped_propvariant.h14 namespace win { namespace in namespace:base
55 } // namespace win
H A Dscoped_handle_test_dll.cc9 #include "base/win/base_features.h"
10 #include "base/win/current_module.h"
11 #include "base/win/scoped_handle.h"
14 namespace win { namespace in namespace:base
124 } // win
H A Dscoped_hdc.h12 #include "base/win/scoped_handle.h"
15 namespace win { namespace in namespace:base
73 } // namespace win
/external/syslinux/gpxe/src/hci/mucurses/
H A Dprint_nadv.c14 * @v *win window to be rendered in
19 int waddchnstr ( WINDOW *win, const chtype *chstr, int n ) { argument
22 _store_curs_pos( win, &pos );
23 _wputchstr( win, chstr, NOWRAP, n );
24 _restore_curs_pos( win, &pos );
H A Dcursor.h19 * @v *win window on which to operate
22 static inline void _restore_curs_pos ( WINDOW *win, struct cursor_pos *pos ) { argument
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 ) { argument
33 pos->y = win->curs_y;
34 pos->x = win->curs_x;
H A Dedging.c15 * @v *win window to be bordered
20 int box ( WINDOW *win, chtype verch, chtype horch ) { argument
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, argument
46 _store_curs_pos( win, &pos );
47 wmove(win,0,0);
49 _wputch(win,tl,WRAP);
50 while ( ( win
80 whline( WINDOW *win, chtype ch, int n ) argument
100 wvline( WINDOW *win, chtype ch, int n ) argument
[all...]
H A Dkb.c22 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 ) {
86 wgetnstr( WINDOW *win, char *str, int n ) argument
[all...]
H A Dmucurses.c13 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
51 _wputch( WINDOW *win, chtype ch, int wrap ) argument
78 _wputc( WINDOW *win, char c, int wrap ) argument
108 _wputchstr( WINDOW *win, const chtype *chstr, int wrap, int n ) argument
122 _wputstr( WINDOW *win, const char *str, int wrap, int n ) argument
136 wmove( WINDOW *win, int y, int x ) argument
[all...]
H A Dprint.c19 * @v *win window to be rendered in
23 int waddch ( WINDOW *win, const chtype ch ) { argument
24 _wputch( win, ch, WRAP );
31 * @v *win window to be rendered in
36 int waddnstr ( WINDOW *win, const char *str, int n ) { argument
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 subjec
61 vw_printw( WINDOW *win, const char *fmt, va_list varglist ) argument
78 wprintw( WINDOW *win, const char *fmt, ... ) argument
[all...]
H A Dwinattrs.c14 * @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 ) { argument
29 win->attrs &= ~attrs;
36 * @v win subject window
40 int wattron ( WINDOW *win, int attrs ) { argument
41 win->attrs |= attrs;
48 * @v win subjec
52 wattrset( WINDOW *win, int attrs ) argument
66 wattr_get( WINDOW *win, attr_t *attrs, short *pair, void *opts __unused ) argument
81 wattr_off( WINDOW *win, attr_t attrs, void *opts __unused ) argument
95 wattr_on( WINDOW *win, attr_t attrs, void *opts __unused ) argument
110 wattr_set( WINDOW *win, attr_t attrs, short cpair, void *opts __unused ) argument
124 wcolour_set( WINDOW *win, short colour_pair_number, void *opts __unused ) argument
[all...]
H A Dwindows.c15 * @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, in argument
122 WINDOW *win; local
[all...]
/external/mesa3d/src/mesa/main/
H A Dfeedback.h41 const GLfloat win[4],
69 const GLfloat win[4],
68 _mesa_feedback_vertex( struct gl_context *ctx, const GLfloat win[4], const GLfloat color[4], const GLfloat texcoord[4] ) argument
/external/skia/tools/viewer/sk_app/unix/
H A Dmain_unix.cpp17 void finishWindow(sk_app::Window_unix* win) { argument
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
[all...]
/external/syslinux/gpxe/src/hci/mucurses/widgets/
H A Deditbox.c39 * @v win Containing window
46 WINDOW *win, unsigned int row, unsigned int col,
52 box->win = ( win ? win : stdscr );
99 if ( ! box->win )
100 box->win = stdscr;
101 mvwprintw ( box->win, box->row, box->col, "%s", buf );
102 wmove ( box->win, box->row, ( box->col + cursor_offset ) );
45 init_editbox( struct edit_box *box, char *buf, size_t len, WINDOW *win, unsigned int row, unsigned int col, unsigned int width, unsigned int flags ) argument
/external/syslinux/gpxe/src/include/gpxe/
H A Deditbox.h20 WINDOW *win; member in struct:edit_box
40 WINDOW *win, unsigned int row, unsigned int col,
/external/mesa3d/src/mesa/swrast/
H A Ds_feedback.c39 GLfloat win[4]; local
43 win[0] = v->attrib[FRAG_ATTRIB_WPOS][0];
44 win[1] = v->attrib[FRAG_ATTRIB_WPOS][1];
45 win[2] = v->attrib[FRAG_ATTRIB_WPOS][2] / ctx->DrawBuffer->_DepthMaxF;
46 win[3] = 1.0F / v->attrib[FRAG_ATTRIB_WPOS][3];
48 _mesa_feedback_vertex(ctx, win, color, vtc);
/external/skia/experimental/SkV8Example/
H A DGlobal.h50 void setWindow(SkOSWindow* win) { argument
51 fWindow = win;
/external/webrtc/webrtc/common_audio/signal_processing/
H A Dilbc_specific_functions.c25 const int16_t *win,
32 const int16_t *winptr = win;
40 const int16_t *win, size_t vector_length,
46 const int16_t *winptr = win;
24 WebRtcSpl_ReverseOrderMultArrayElements(int16_t *out, const int16_t *in, const int16_t *win, size_t vector_length, int16_t right_shifts) argument
39 WebRtcSpl_ElementwiseVectorMult(int16_t *out, const int16_t *in, const int16_t *win, size_t vector_length, int16_t right_shifts) argument
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dscoped_gdi_object.h20 namespace win { namespace in namespace:webrtc
92 } // namespace win

Completed in 309 milliseconds

12345