| /third_party/glfw/src/ |
| D | null_window.c | 33 static void applySizeLimits(_GLFWwindow* window, int* width, int* height) in applySizeLimits() 52 static void fitToMonitor(_GLFWwindow* window) in fitToMonitor() 63 static void acquireMonitor(_GLFWwindow* window) in acquireMonitor() 68 static void releaseMonitor(_GLFWwindow* window) in releaseMonitor() 76 static int createNativeWindow(_GLFWwindow* window, in createNativeWindow() 114 GLFWbool _glfwCreateWindowNull(_GLFWwindow* window, in _glfwCreateWindowNull() 169 void _glfwDestroyWindowNull(_GLFWwindow* window) in _glfwDestroyWindowNull() 181 void _glfwSetWindowTitleNull(_GLFWwindow* window, const char* title) in _glfwSetWindowTitleNull() 185 void _glfwSetWindowIconNull(_GLFWwindow* window, int count, const GLFWimage* images) in _glfwSetWindowIconNull() 189 void _glfwSetWindowMonitorNull(_GLFWwindow* window, in _glfwSetWindowMonitorNull() [all …]
|
| D | window.c | 43 void _glfwInputWindowFocus(_GLFWwindow* window, GLFWbool focused) in _glfwInputWindowFocus() 75 void _glfwInputWindowPos(_GLFWwindow* window, int x, int y) in _glfwInputWindowPos() 86 void _glfwInputWindowSize(_GLFWwindow* window, int width, int height) in _glfwInputWindowSize() 98 void _glfwInputWindowIconify(_GLFWwindow* window, GLFWbool iconified) in _glfwInputWindowIconify() 109 void _glfwInputWindowMaximize(_GLFWwindow* window, GLFWbool maximized) in _glfwInputWindowMaximize() 121 void _glfwInputFramebufferSize(_GLFWwindow* window, int width, int height) in _glfwInputFramebufferSize() 134 void _glfwInputWindowContentScale(_GLFWwindow* window, float xscale, float yscale) in _glfwInputWindowContentScale() 148 void _glfwInputWindowDamage(_GLFWwindow* window) in _glfwInputWindowDamage() 158 void _glfwInputWindowCloseRequest(_GLFWwindow* window) in _glfwInputWindowCloseRequest() 170 void _glfwInputWindowMonitor(_GLFWwindow* window, _GLFWmonitor* monitor) in _glfwInputWindowMonitor() [all …]
|
| D | win32_window.c | 41 static DWORD getWindowStyle(const _GLFWwindow* window) in getWindowStyle() 67 static DWORD getWindowExStyle(const _GLFWwindow* window) in getWindowExStyle() 190 static void applyAspectRatio(_GLFWwindow* window, int edge, RECT* area) in applyAspectRatio() 225 static void updateCursorImage(_GLFWwindow* window) in updateCursorImage() 246 static void captureCursor(_GLFWwindow* window) in captureCursor() 266 static void enableRawMouseMotion(_GLFWwindow* window) in enableRawMouseMotion() 279 static void disableRawMouseMotion(_GLFWwindow* window) in disableRawMouseMotion() 292 static void disableCursor(_GLFWwindow* window) in disableCursor() 308 static void enableCursor(_GLFWwindow* window) in enableCursor() 323 static GLFWbool cursorInContentArea(_GLFWwindow* window) in cursorInContentArea() [all …]
|
| D | wl_window.c | 196 static void createFallbackEdge(_GLFWwindow* window, in createFallbackEdge() 221 static void createFallbackDecorations(_GLFWwindow* window) in createFallbackDecorations() 268 static void destroyFallbackDecorations(_GLFWwindow* window) in destroyFallbackDecorations() 282 _GLFWwindow* window = userData; in xdgDecorationHandleConfigure() local 301 static void setContentAreaOpaque(_GLFWwindow* window) in setContentAreaOpaque() 314 static void resizeFramebuffer(_GLFWwindow* window) in resizeFramebuffer() 341 static GLFWbool resizeWindow(_GLFWwindow* window, int width, int height) in resizeWindow() 391 void _glfwUpdateBufferScaleFromOutputsWayland(_GLFWwindow* window) in _glfwUpdateBufferScaleFromOutputsWayland() 432 _GLFWwindow* window = userData; in surfaceHandleEnter() local 459 _GLFWwindow* window = userData; in surfaceHandleLeave() local [all …]
|
| D | x11_window.c | 139 static GLFWbool waitForVisibilityNotify(_GLFWwindow* window) in waitForVisibilityNotify() 158 static int getWindowState(_GLFWwindow* window) in getWindowState() 196 _GLFWwindow* window = (_GLFWwindow*) pointer; in isFrameExtentsEvent() local 249 static void sendEventToWM(_GLFWwindow* window, Atom type, in sendEventToWM() 270 static void updateNormalHints(_GLFWwindow* window, int width, int height) in updateNormalHints() 321 static void updateWindowMode(_GLFWwindow* window) in updateWindowMode() 457 static void updateCursorImage(_GLFWwindow* window) in updateCursorImage() 479 static void captureCursor(_GLFWwindow* window) in captureCursor() 498 static void enableRawMouseMotion(_GLFWwindow* window) in enableRawMouseMotion() 515 static void disableRawMouseMotion(_GLFWwindow* window) in disableRawMouseMotion() [all …]
|
| D | input.c | 272 void _glfwInputKey(_GLFWwindow* window, int key, int scancode, int action, int mods) in _glfwInputKey() 309 void _glfwInputChar(_GLFWwindow* window, uint32_t codepoint, int mods, GLFWbool plain) in _glfwInputChar() 333 void _glfwInputScroll(_GLFWwindow* window, double xoffset, double yoffset) in _glfwInputScroll() 347 void _glfwInputMouseClick(_GLFWwindow* window, int button, int action, int mods) in _glfwInputMouseClick() 375 void _glfwInputCursorPos(_GLFWwindow* window, double xpos, double ypos) in _glfwInputCursorPos() 395 void _glfwInputCursorEnter(_GLFWwindow* window, GLFWbool entered) in _glfwInputCursorEnter() 406 void _glfwInputDrop(_GLFWwindow* window, int count, const char** paths) in _glfwInputDrop() 549 void _glfwCenterCursorInContentArea(_GLFWwindow* window) in _glfwCenterCursorInContentArea() 566 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetInputMode() local 593 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwSetInputMode() local [all …]
|
| D | glx_context.c | 148 static GLXContext createLegacyContextGLX(_GLFWwindow* window, in createLegacyContextGLX() 159 static void makeContextCurrentGLX(_GLFWwindow* window) in makeContextCurrentGLX() 185 static void swapBuffersGLX(_GLFWwindow* window) in swapBuffersGLX() 192 _GLFWwindow* window = _glfwPlatformGetTls(&_glfw.contextSlot); in swapIntervalGLX() local 236 static void destroyContextGLX(_GLFWwindow* window) in destroyContextGLX() 452 GLFWbool _glfwCreateContextGLX(_GLFWwindow* window, in _glfwCreateContextGLX() 688 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetGLXContext() local 710 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetGLXWindow() local
|
| D | osmesa_context.c | 34 static void makeContextCurrentOSMesa(_GLFWwindow* window) in makeContextCurrentOSMesa() 73 static void destroyContextOSMesa(_GLFWwindow* window) in destroyContextOSMesa() 89 static void swapBuffersOSMesa(_GLFWwindow* window) in swapBuffersOSMesa() 197 GLFWbool _glfwCreateContextOSMesa(_GLFWwindow* window, in _glfwCreateContextOSMesa() 302 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetOSMesaColorBuffer() local 342 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetOSMesaDepthBuffer() local 376 _GLFWwindow* window = (_GLFWwindow*) handle; in glfwGetOSMesaContext() local
|
| /third_party/mesa3d/src/android_stub/ |
| D | nativewindow_stub.cpp | 41 ANativeWindow_acquire(ANativeWindow *window) in ANativeWindow_acquire() 46 ANativeWindow_release(ANativeWindow *window) in ANativeWindow_release() 51 ANativeWindow_getFormat(ANativeWindow *window) in ANativeWindow_getFormat() 57 ANativeWindow_setSwapInterval(ANativeWindow *window, int interval) in ANativeWindow_setSwapInterval() 63 ANativeWindow_query(const ANativeWindow *window, in ANativeWindow_query() 71 ANativeWindow_dequeueBuffer(ANativeWindow *window, in ANativeWindow_dequeueBuffer() 79 ANativeWindow_queueBuffer(ANativeWindow *window, in ANativeWindow_queueBuffer() 86 int ANativeWindow_cancelBuffer(ANativeWindow* window, in ANativeWindow_cancelBuffer() 93 ANativeWindow_setUsage(ANativeWindow *window, uint64_t usage) in ANativeWindow_setUsage() 99 ANativeWindow_setSharedBufferMode(ANativeWindow *window, in ANativeWindow_setSharedBufferMode()
|
| /third_party/typescript/tests/cases/conformance/controlFlow/ |
| D | controlFlowBindingElement.ts | 49 window: Window; property 53 let window = {} as Window; variable 64 window: Window; property 68 let window = {} as Window; variable 79 window: Window; property 83 let window = {} as Window; variable
|
| /third_party/glfw/tests/ |
| D | events.c | 52 GLFWwindow* window; member 290 static void window_pos_callback(GLFWwindow* window, int x, int y) in window_pos_callback() 297 static void window_size_callback(GLFWwindow* window, int width, int height) in window_size_callback() 304 static void framebuffer_size_callback(GLFWwindow* window, int width, int height) in framebuffer_size_callback() 311 static void window_content_scale_callback(GLFWwindow* window, float xscale, float yscale) in window_content_scale_callback() 318 static void window_close_callback(GLFWwindow* window) in window_close_callback() 333 static void window_refresh_callback(GLFWwindow* window) in window_refresh_callback() 344 static void window_focus_callback(GLFWwindow* window, int focused) in window_focus_callback() 352 static void window_iconify_callback(GLFWwindow* window, int iconified) in window_iconify_callback() 360 static void window_maximize_callback(GLFWwindow* window, int maximized) in window_maximize_callback() [all …]
|
| D | iconify.c | 57 static void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods) in key_callback() 124 static void window_size_callback(GLFWwindow* window, int width, int height) in window_size_callback() 129 static void framebuffer_size_callback(GLFWwindow* window, int width, int height) in framebuffer_size_callback() 134 static void window_focus_callback(GLFWwindow* window, int focused) in window_focus_callback() 141 static void window_iconify_callback(GLFWwindow* window, int iconified) in window_iconify_callback() 148 static void window_maximize_callback(GLFWwindow* window, int maximized) in window_maximize_callback() 155 static void window_refresh_callback(GLFWwindow* window) in window_refresh_callback() 168 GLFWwindow* window; in create_window() local
|
| /third_party/mesa3d/src/egl/drivers/dri2/ |
| D | platform_android.h | 45 ANativeWindow_acquire(struct ANativeWindow *window) in ANativeWindow_acquire() 51 ANativeWindow_release(struct ANativeWindow *window) in ANativeWindow_release() 57 ANativeWindow_getFormat(struct ANativeWindow *window) in ANativeWindow_getFormat() 65 ANativeWindow_dequeueBuffer(struct ANativeWindow *window, in ANativeWindow_dequeueBuffer() 73 ANativeWindow_queueBuffer(struct ANativeWindow *window, in ANativeWindow_queueBuffer() 81 ANativeWindow_cancelBuffer(struct ANativeWindow *window, in ANativeWindow_cancelBuffer() 89 ANativeWindow_setUsage(struct ANativeWindow *window, uint64_t usage) in ANativeWindow_setUsage() 95 ANativeWindow_setSharedBufferMode(struct ANativeWindow *window, in ANativeWindow_setSharedBufferMode() 102 ANativeWindow_setSwapInterval(struct ANativeWindow *window, int interval) in ANativeWindow_setSwapInterval() 108 ANativeWindow_query(const struct ANativeWindow *window, in ANativeWindow_query()
|
| D | platform_ohos.h | 45 ANativeWindow_acquire(struct ANativeWindow *window) in ANativeWindow_acquire() 51 ANativeWindow_release(struct ANativeWindow *window) in ANativeWindow_release() 57 ANativeWindow_getFormat(struct ANativeWindow *window) in ANativeWindow_getFormat() 65 ANativeWindow_dequeueBuffer(struct ANativeWindow *window, in ANativeWindow_dequeueBuffer() 73 ANativeWindow_queueBuffer(struct ANativeWindow *window, in ANativeWindow_queueBuffer() 84 ANativeWindow_cancelBuffer(struct ANativeWindow *window, in ANativeWindow_cancelBuffer() 92 ANativeWindow_setUsage(struct ANativeWindow *window, uint64_t usage) in ANativeWindow_setUsage()
|
| /third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
| D | PbufferTest.cpp | 58 EGLWindow *window = getEGLWindow(); in testSetUp() local 100 EGLWindow *window = getEGLWindow(); in testTearDown() local 107 EGLWindow *window = getEGLWindow(); in recreatePbufferInSrgbColorspace() local 147 EGLWindow *window = getEGLWindow(); in TEST_P() local 182 EGLWindow *window = getEGLWindow(); in TEST_P() local 234 EGLWindow *window = getEGLWindow(); in TEST_P() local 306 EGLWindow *window = getEGLWindow(); in TEST_P() local 414 EGLWindow *window = getEGLWindow(); in TEST_P() local 438 EGLWindow *window = getEGLWindow(); in TEST_P() local
|
| D | PixmapTest.cpp | 42 EGLWindow *window = getEGLWindow(); in testSetUp() local 95 EGLWindow *window = getEGLWindow(); in testTearDown() local 118 EGLWindow *window = getEGLWindow(); in TEST_P() local 158 EGLWindow *window = getEGLWindow(); in TEST_P() local 213 EGLWindow *window = getEGLWindow(); in TEST_P() local
|
| /third_party/skia/third_party/externals/angle2/samples/multi_window/ |
| D | MultiWindow.cpp | 59 window window; in initialize() local 81 for (auto &window : mWindows) in initialize() local 100 for (auto &window : mWindows) in step() local 116 OSWindow *window = windowRecord.osWindow; in draw() local 133 OSWindow *window = windowRecord.osWindow; in draw() local 185 struct window struct in MultiWindowSample 187 OSWindow *osWindow; 188 EGLSurface surface;
|
| /third_party/lzma/CPP/7zip/UI/Explorer/ |
| D | MyMessages.cpp | 14 void ShowErrorMessage(HWND window, LPCWSTR message) in ShowErrorMessage() 19 void ShowErrorMessageHwndRes(HWND window, UINT resID) in ShowErrorMessageHwndRes() 32 static void ShowErrorMessageDWORD(HWND window, DWORD errorCode) in ShowErrorMessageDWORD() 37 void ShowLastErrorMessage(HWND window) in ShowLastErrorMessage()
|
| /third_party/mesa3d/src/intel/tools/ |
| D | aubinator_viewer.cpp | 232 struct window { struct 233 struct list_head link; /* link in the global list of windows */ argument 234 struct list_head parent_link; /* link in parent window list of children */ argument 236 struct list_head children_windows; /* list of children windows */ argument 244 void (*display)(struct window*); argument 245 void (*destroy)(struct window*); argument 356 struct shader_window *window = (struct shader_window *) win; in display_shader_window() local 371 struct shader_window *window = (struct shader_window *) win; in destroy_shader_window() local 380 struct shader_window *window = xtzalloc(*window); in new_shader_window() local 414 struct urb_window *window = (struct urb_window *) win; in display_urb_window() local [all …]
|
| /third_party/mesa3d/src/imgui/ |
| D | imgui.cpp | 2192 ImGuiWindow* window = ImGui::GetCurrentWindow(); in SetCursorPosYAndSetupDummyPrevLine() local 2288 ImGuiWindow* window = g.CurrentWindow; in RenderText() local 2314 ImGuiWindow* window = g.CurrentWindow; in RenderTextWrapped() local 2366 ImGuiWindow* window = g.CurrentWindow; in RenderTextClipped() local 2376 ImGuiWindow* window = g.CurrentWindow; in RenderFrame() local 2389 ImGuiWindow* window = g.CurrentWindow; in RenderFrameBorder() local 2436 ImGuiWindow* window = g.CurrentWindow; in RenderBullet() local 2443 ImGuiWindow* window = g.CurrentWindow; in RenderCheckMark() local 2465 ImGuiWindow* window = g.CurrentWindow; in RenderNavHighlight() local 2604 static void SetCurrentWindow(ImGuiWindow* window) in SetCurrentWindow() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/src/Main/ |
| D | FrameBufferAndroid.cpp | 29 inline int dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer) in dequeueBuffer() 39 inline int queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) in queueBuffer() 44 inline int cancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) in cancelBuffer() 50 FrameBufferAndroid::FrameBufferAndroid(ANativeWindow* window, int width, int height) in FrameBufferAndroid() 193 sw::FrameBuffer *createFrameBuffer(void *display, ANativeWindow* window, int width, int height) in createFrameBuffer()
|
| /third_party/vk-gl-cts/framework/platform/android/ |
| D | tcuAndroidWindow.cpp | 35 Window::Window (ANativeWindow* window) in Window() 129 Window* const window = *winIter; in ~WindowRegistry() local 141 void WindowRegistry::addWindow (ANativeWindow* window) in addWindow() 151 Window* const window = m_windows[ndx]; in destroyWindow() local 175 Window* const window = m_windows[ndx]; in tryAcquireWindow() local 188 Window* const window = m_windows[ndx]; in garbageCollect() local
|
| D | tcuAndroidNativeActivity.cpp | 64 static void onNativeWindowCreatedCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowCreatedCallback() 69 static void onNativeWindowResizedCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowResizedCallback() 74 static void onNativeWindowRedrawNeededCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowRedrawNeededCallback() 79 static void onNativeWindowDestroyedCallback (ANativeActivity* activity, ANativeWindow* window) in onNativeWindowDestroyedCallback() 173 void NativeActivity::onNativeWindowCreated (ANativeWindow* window) in onNativeWindowCreated() 178 void NativeActivity::onNativeWindowResized (ANativeWindow* window) in onNativeWindowResized() 183 void NativeActivity::onNativeWindowRedrawNeeded (ANativeWindow* window) in onNativeWindowRedrawNeeded() 188 void NativeActivity::onNativeWindowDestroyed (ANativeWindow* window) in onNativeWindowDestroyed()
|
| /third_party/mesa3d/include/android_stub/system/ |
| D | window.h | 642 struct ANativeWindow* window, int usage) in native_window_set_usage() 680 struct ANativeWindow* window, in native_window_set_crop() 701 struct ANativeWindow* window, in native_window_set_post_transform_crop() 719 struct ANativeWindow* window, in native_window_set_active_rect() 730 struct ANativeWindow* window, in native_window_set_buffer_count() 750 struct ANativeWindow* window, in native_window_set_buffers_geometry() 771 struct ANativeWindow* window, in native_window_set_buffers_dimensions() 796 struct ANativeWindow* window, in native_window_set_buffers_user_dimensions() 810 struct ANativeWindow* window, in native_window_set_buffers_format() 829 struct ANativeWindow* window, in native_window_set_buffers_data_space() [all …]
|
| /third_party/libinput/tools/ |
| D | libinput-debug-gui.c | 96 struct window { struct 105 int width, height; /* of window */ argument 108 struct point pointer; 109 struct point unaccelerated; 113 size_t ndeltas; 114 struct point deltas[64]; 117 struct point abs; 120 struct { 127 } lock_pointer; 130 struct { [all …]
|