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

1 2 3 4 5 6 7 8 9

  /frameworks/base/native/android/
native_window_jni.cpp 31 sp<ANativeWindow> win = android_view_Surface_getNativeWindow(env, surface); local
32 if (win != NULL) {
33 win->incStrong((void*)ANativeWindow_fromSurface);
35 return win.get();
  /external/libchrome/base/process/
memory.h 52 namespace win { namespace in namespace:base
62 } // namespace win
kill.h 22 namespace win { namespace in namespace:base
24 // See definition in sandbox/win/src/sandbox_types.h
27 } // namespace win
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
panel.h 46 WINDOW *win; member in struct:panel
  /cts/tests/tests/graphics/jni/
android_graphics_cts_ASurfaceTextureTest.cpp 53 ANativeWindow* win = ASurfaceTexture_acquireANativeWindow(ast); local
54 ASSERT(win, "ASurfaceTexture_acquireANativeWindow returned nullptr")
61 int err = ANativeWindow_lock(win, &outBuffer, &bounds);
67 ANativeWindow_unlockAndPost(win);
73 ANativeWindow_release(win);
  /external/syslinux/gpxe/src/hci/mucurses/
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...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RotationAnimation.java 78 Window win = getWindow(); local
79 WindowManager.LayoutParams winParams = win.getAttributes();
85 win.setAttributes(winParams);
89 Window win = getWindow(); local
90 WindowManager.LayoutParams winParams = win.getAttributes();
92 win.setAttributes(winParams);
  /external/mesa3d/src/mesa/swrast/
s_feedback.c 38 GLfloat win[4]; local
42 win[0] = v->attrib[VARYING_SLOT_POS][0];
43 win[1] = v->attrib[VARYING_SLOT_POS][1];
44 win[2] = v->attrib[VARYING_SLOT_POS][2] / ctx->DrawBuffer->_DepthMaxF;
45 win[3] = 1.0F / v->attrib[VARYING_SLOT_POS][3];
47 _mesa_feedback_vertex(ctx, win, color, vtc);
  /external/skia/src/jumper/
build_stages.py 36 win = ['-DWIN', '-mno-red-zone'] variable
41 subprocess.check_call(clang + cflags + sse2 + win +
47 subprocess.check_call(clang + cflags + sse2 + win + x86 +
54 subprocess.check_call(clang + cflags + sse2 + win +
60 subprocess.check_call(clang + cflags + sse2 + win + x86 +
68 subprocess.check_call(clang + cflags + sse41 + win +
75 subprocess.check_call(clang + cflags + sse41 + win +
83 subprocess.check_call(clang + cflags + avx + win +
91 subprocess.check_call(clang + cflags + hsw + win +
98 subprocess.check_call(clang + cflags + hsw + win
    [all...]
  /external/skia/tools/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/skqp/src/jumper/
build_stages.py 36 win = ['-DWIN', '-mno-red-zone'] variable
41 subprocess.check_call(clang + cflags + sse2 + win +
47 subprocess.check_call(clang + cflags + sse2 + win + x86 +
54 subprocess.check_call(clang + cflags + sse2 + win +
60 subprocess.check_call(clang + cflags + sse2 + win + x86 +
68 subprocess.check_call(clang + cflags + sse41 + win +
75 subprocess.check_call(clang + cflags + sse41 + win +
83 subprocess.check_call(clang + cflags + avx + win +
91 subprocess.check_call(clang + cflags + hsw + win +
98 subprocess.check_call(clang + cflags + hsw + win
    [all...]
  /external/skqp/tools/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/syslinux/gpxe/src/include/gpxe/
editbox.h 20 WINDOW *win; member in struct:edit_box
40 WINDOW *win, unsigned int row, unsigned int col,
  /hardware/intel/common/libva/test/basic/
test.c 66 Window win = XCreateSimpleWindow(dpy, RootWindow(dpy, 0), 0, 0, 720, 480, 0, 0, WhitePixel(dpy, 0)); local
67 printf("Window = %08x\n", win);
68 XMapWindow(dpy, win);
71 vaPutSurface(va_dpy, surfaces[0], win, 0, 0, 720, 480, 0, 0, 720, 480, 0);
  /hardware/intel/common/libva/test/common/
va_display_x11.c 62 Window win, rootwin; local
79 win = XCreateSimpleWindow(
85 if (!win)
87 x11_window = win;
  /prebuilts/go/darwin-x86/doc/codewalk/
pig.go 13 win = 100 // The winning score in a game of Pig
62 for s.player+s.thisTurn < win {
111 strategies := make([]strategy, win)
12 win = 100 \/\/ The winning score in a game of Pig const
  /prebuilts/go/linux-x86/doc/codewalk/
pig.go 13 win = 100 // The winning score in a game of Pig
62 for s.player+s.thisTurn < win {
111 strategies := make([]strategy, win)
12 win = 100 \/\/ The winning score in a game of Pig const
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
EclipseUiHelper.java 49 IWorkbenchWindow win = PlatformUI.getWorkbench().getActiveWorkbenchWindow(); local
50 if (win != null) {
51 IWorkbenchPage page = win.getActivePage();
  /external/webrtc/webrtc/modules/desktop_capture/win/
scoped_gdi_object.h 20 namespace win { namespace in namespace:webrtc
92 } // namespace win
  /hardware/intel/common/libva/test/putsurface/
putsurface_x11.c 75 Window root, win; local
83 win = (Window)drawable_thread0;
89 XSetNormalHints(x11_display, win, &sizehints);
90 XSetStandardProperties(x11_display, win, "Thread 0", "Thread 0",
93 XMapWindow(x11_display, win);
95 context_thread0 = XCreateGC(x11_display, win, 0, 0);
96 XSelectInput(x11_display, win, KeyPressMask | StructureNotifyMask);
111 win = (Window)drawable_thread1;
117 XSetNormalHints(x11_display, win, &sizehints);
118 XSetStandardProperties(x11_display, win, "Thread 1", "Thread 1"
139 Window win = (Window)drawable; local
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
RemoteAnimationControllerTest.java 87 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); local
88 sWm.mOpeningApps.add(win.mAppToken);
90 final AnimationAdapter adapter = mController.createAnimationAdapter(win.mAppToken,
104 assertEquals(win.mAppToken.getPrefixOrderIndex(), app.prefixOrderIndex);
105 assertEquals(win.mAppToken.getTask().mTaskId, app.taskId);
107 assertEquals(win.mWinAnimator.mLastClipRect, app.clipRect);
122 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); local
123 final AnimationAdapter adapter = mController.createAnimationAdapter(win.mAppToken,
134 final WindowState win = createWindow(null /* parent */, TYPE_BASE_APPLICATION, "testWin"); local
135 final AnimationAdapter adapter = mController.createAnimationAdapter(win.mAppToken
151 final WindowState win = createWindow(null \/* parent *\/, TYPE_BASE_APPLICATION, "testWin"); local
181 final WindowState win = createWindow(null \/* parent *\/, TYPE_BASE_APPLICATION, "testWin"); local
210 final WindowState win = createWindow(null \/* parent *\/, TYPE_BASE_APPLICATION, "testWin"); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
py_curses.h 78 WINDOW *win; member in struct:__anon4352
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
py_curses.h 78 WINDOW *win; member in struct:__anon4658
  /external/mesa3d/src/gallium/targets/graw-xlib/
graw_xlib.c 56 Window win = 0; local
114 win = XCreateWindow( graw.display, root, x, y, width, height,
128 XSetNormalHints(graw.display, win, &sizehints);
129 XSetStandardProperties(graw.display, win, name, name,
133 XMapWindow(graw.display, win);
137 if (e.type == MapNotify && e.xmap.window == win) {
143 xlib_handle->drawable = (Drawable)win;
162 if (win)
163 XDestroyWindow(graw.display, win);

Completed in 975 milliseconds

1 2 3 4 5 6 7 8 9