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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeMacSubWindow.m 39 NSWindow *win = (NSWindow *)p_window;
40 if (!win) {
45 NSRect content_rect = [win contentRectForFrameRect:[win frame]];
51 [[win contentView] addSubview:glView];
52 [win makeKeyAndOrderFront:nil];
58 void destroySubWindow(EGLNativeDisplayType dis,EGLNativeWindowType win){
59 if(win){
60 NSView *glView = (NSView *)win;
NativeLinuxSubWindow.cpp 39 Window win = XCreateWindow(*display_out,p_window,x,y, width,height,0,CopyFromParent,CopyFromParent,CopyFromParent,CWEventMask,&wa); local
40 XMapWindow(*display_out,win);
42 XIfEvent(*display_out, &e, WaitForMapNotify, (char *)win);
43 return win;
46 void destroySubWindow(EGLNativeDisplayType dis,EGLNativeWindowType win){
47 XDestroyWindow(dis, win);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglWindowSurface.cpp 21 bool EglWindowSurface::alreadyAssociatedWithConfig(EGLNativeWindowType win) {
22 return s_associatedWins.find(win) != s_associatedWins.end();
27 EGLNativeWindowType win,
31 m_win(win)
33 s_associatedWins.insert(win);
34 m_native = EglOS::createWindowSurface(win);
EglWindowSurface.h 28 EglWindowSurface(EglDisplay *dpy, EGLNativeWindowType win,EglConfig* config,unsigned width,unsigned int height);
32 static bool alreadyAssociatedWithConfig(EGLNativeWindowType win);
  /external/chromium/chrome/browser/policy/
configuration_policy_loader_win.h 10 #include "base/win/object_watcher.h"
19 public base::win::ObjectWatcher::Delegate {
43 base::win::ObjectWatcher user_policy_watcher_;
44 base::win::ObjectWatcher machine_policy_watcher_;
  /external/webkit/Source/WebCore/platform/wx/
ScrollViewWx.cpp 59 void bindEvents(wxWindow* win)
62 win->Connect(wxEVT_SCROLLWIN_TOP, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
63 win->Connect(wxEVT_SCROLLWIN_BOTTOM, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
64 win->Connect(wxEVT_SCROLLWIN_LINEUP, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
65 win->Connect(wxEVT_SCROLLWIN_LINEDOWN, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
66 win->Connect(wxEVT_SCROLLWIN_PAGEUP, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
67 win->Connect(wxEVT_SCROLLWIN_PAGEDOWN, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
68 win->Connect(wxEVT_SCROLLWIN_THUMBTRACK, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
69 win->Connect(wxEVT_SCROLLWIN_THUMBRELEASE, wxScrollWinEventHandler(ScrollViewPrivate::OnScrollWinEvents), NULL, this);
133 void ScrollView::setPlatformWidget(wxWindow* win)
144 wxWindow* win = platformWidget(); local
154 wxWindow* win = platformWidget(); local
181 wxWindow* win = platformWidget(); local
224 wxWindow* win = platformWidget(); local
234 wxWindow* win = platformWidget(); local
    [all...]
  /external/chromium/net/base/
network_change_notifier_win.h 13 #include "base/win/object_watcher.h"
19 public base::win::ObjectWatcher::Delegate {
38 base::win::ObjectWatcher addr_watcher_;
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11modes_c.h 39 extern void X11_WaitMapped(_THIS, Window win);
40 extern void X11_WaitUnmapped(_THIS, Window win);
  /frameworks/base/services/java/com/android/server/wm/
AppWindowToken.java 116 WindowState win = allAppWindows.get(i); local
117 if (win == startingWindow && clientHidden) {
123 "Setting visibility of " + win + ": " + (!clientHidden));
124 win.mClient.dispatchAppVisibility(!clientHidden);
144 WindowState win = allAppWindows.get(i); local
145 if (win == startingWindow || win.mAppFreezing
146 || win.mViewVisibility != View.VISIBLE
147 || win.mAttrs.type == TYPE_APPLICATION_STARTING
148 || win.mDestroying)
217 WindowState win = windows.get(j); local
229 WindowState win = allAppWindows.get(i); local
    [all...]
  /sdk/emulator/opengl/tests/ut_renderer/
NativeWindowing.h 25 virtual int destroyNativeWindow(NativeDisplayType dpy, NativeWindowType win) = 0;
X11Windowing.h 24 int destroyNativeWindow(NativeDisplayType dpy, NativeWindowType win);
X11Windowing.cpp 38 get_window_pos( Display *disp, Window win, int *px, int *py )
42 XTranslateCoordinates( disp, win, DefaultRootWindow(disp), 0, 0, px, py, &child );
47 set_window_pos(Display *disp, Window win, int x, int y)
67 XMoveWindow(disp, win, x + xAdjust, y + yAdjust);
69 get_window_pos(disp, win, &xNew, &yNew);
75 XMoveWindow(disp, win, x + xAdjust, y + yAdjust );
110 Window win = XCreateWindow( dpy, local
116 XMapWindow(dpy, win);
118 set_window_pos(dpy, win, X11_wmXPos, X11_wmYPos);
119 return NativeWindowType(win);
125 Window win = (Window)_win; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
curses.h     [all...]
ncurses.h     [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
curses.h     [all...]
ncurses.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
curses.h     [all...]
ncurses.h     [all...]
  /external/chromium/base/
sys_info_win.cc 13 #include "base/win/windows_version.h"
19 return win::OSInfo::GetInstance()->processors();
56 win::OSInfo* os_info = win::OSInfo::GetInstance();
57 win::OSInfo::VersionNumber version_number = os_info->version_number();
60 win::OSInfo::ServicePack service_pack = os_info->service_pack();
95 return win::OSInfo::GetInstance()->allocation_granularity();
102 win::OSInfo* os_info = win::OSInfo::GetInstance();
  /external/chromium/base/win/
wrapped_window_proc.cc 5 #include "base/win/wrapped_window_proc.h"
11 base::win::WinProcExceptionFilter s_exception_filter = NULL;
16 namespace win { namespace in namespace:base
31 } // namespace win
  /external/sonivox/jet_tools/JetCreator/
JetStatusEvent.py 27 def EVT_JET_STATUS(win, func):
28 win.Connect(-1, -1, EVT_JET_STATUS_ID, func)
  /sdk/emulator/opengl/tests/translator_tests/MacCommon/
setup_gl.m 29 NSWindow *win = (NSWindow *)nsWindowPtr;
30 [[win contentView] addSubview:glView];
31 [win makeKeyAndOrderFront:nil];
  /external/opencv/cv/src/
cvcornersubpix.cpp 45 int count, CvSize win, CvSize zeroZone,
63 int win_w = win.width * 2 + 1, win_h = win.height * 2 + 1;
86 if( win.width <= 0 || win.height <= 0 )
132 coeff = 1. / (win.width * win.width);
135 for( i = -win.width, k = 0; i <= win.width; i++, k++ )
140 if( win.width == win.height
    [all...]

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>