Home
last modified time | relevance | path

Searched refs:Window (Results 1 – 25 of 637) sorted by relevance

12345678910>>...26

/third_party/skia/tools/sk_app/
DWindow.cpp16 Window::Window() {} in Window() function in sk_app::Window
18 Window::~Window() {} in ~Window()
20 void Window::detach() { fWindowContext = nullptr; } in detach()
22 void Window::visitLayers(std::function<void(Layer*)> visitor) { in visitLayers()
30 bool Window::signalLayers(std::function<bool(Layer*)> visitor) { in signalLayers()
39 void Window::onBackendCreated() { in onBackendCreated()
43 bool Window::onChar(SkUnichar c, skui::ModifierKey modifiers) { in onChar()
47 bool Window::onKey(skui::Key key, skui::InputState state, skui::ModifierKey modifiers) { in onKey()
51 bool Window::onMouse(int x, int y, skui::InputState state, skui::ModifierKey modifiers) { in onMouse()
55 bool Window::onMouseWheel(float delta, skui::ModifierKey modifiers) { in onMouseWheel()
[all …]
/third_party/flutter/skia/tools/sk_app/
DWindow.cpp16 Window::Window() {} in Window() function in sk_app::Window
18 Window::~Window() {} in ~Window()
20 void Window::detach() { fWindowContext = nullptr; } in detach()
22 void Window::visitLayers(std::function<void(Layer*)> visitor) { in visitLayers()
30 bool Window::signalLayers(std::function<bool(Layer*)> visitor) { in signalLayers()
39 void Window::onBackendCreated() { in onBackendCreated()
43 bool Window::onChar(SkUnichar c, ModifierKey modifiers) { in onChar()
47 bool Window::onKey(Key key, InputState state, ModifierKey modifiers) { in onKey()
51 bool Window::onMouse(int x, int y, InputState state, ModifierKey modifiers) { in onMouse()
55 bool Window::onMouseWheel(float delta, ModifierKey modifiers) { in onMouseWheel()
[all …]
/third_party/typescript/tests/baselines/reference/
DdeclFileTypeAnnotationVisibilityErrorTypeAlias.js2 interface Window {
7 type W = Window | string;
9 export class Window { }
15 export type W = Window | string;
17 export class Window { }
48 var Window = /** @class */ (function () { class
49 function Window() { class in anonymousFunctionb1cb2bab0100.anonymousFunctionb1cb2bab0200.Window
51 return Window;
53 N.Window = Window;
60 var Window = /** @class */ (function () { class
[all …]
DdeclFileTypeAnnotationTypeAlias.js21 interface Window {
26 export type W = Window | string;
28 export class Window { }
55 var Window = /** @class */ (function () { class
56 function Window() { class in anonymousFunction8d9f95f90700.anonymousFunction8d9f95f90800.Window
58 return Window;
60 N.Window = Window;
79 interface Window {
83 type W = Window | string;
85 class Window { class
DdeclFileTypeAnnotationVisibilityErrorTypeAlias.symbols2 interface Window {
3 >Window : Symbol(Window, Decl(lib.dom.d.ts, --, --), Decl(lib.dom.d.ts, --, --), Decl(declFileTypeA…
6 >someMethod : Symbol(Window.someMethod, Decl(declFileTypeAnnotationVisibilityErrorTypeAlias.ts, 0, …
12 type W = Window | string;
14 >Window : Symbol(Window, Decl(lib.dom.d.ts, --, --), Decl(lib.dom.d.ts, --, --), Decl(declFileTypeA…
19 export class Window { }
20 >Window : Symbol(Window, Decl(declFileTypeAnnotationVisibilityErrorTypeAlias.ts, 6, 21))
31 export type W = Window | string;
33 >Window : Symbol(Window, Decl(lib.dom.d.ts, --, --), Decl(lib.dom.d.ts, --, --), Decl(declFileTypeA…
38 export class Window { }
[all …]
DglobalThisVarDeclaration.types29 >self : Window & typeof globalThis
34 >self : Window & typeof globalThis
39 >window : Window & typeof globalThis
44 >window : Window & typeof globalThis
49 >top : Window
54 >top : Window
85 >self : Window & typeof globalThis
90 >self : Window & typeof globalThis
95 >window : Window & typeof globalThis
100 >window : Window & typeof globalThis
[all …]
DsourceMap-StringLiteralWithNewLine.symbols5 interface Window {
6 >Window : Symbol(Window, Decl(sourceMap-StringLiteralWithNewLine.ts, 1, 1))
9 >document : Symbol(Window.document, Decl(sourceMap-StringLiteralWithNewLine.ts, 2, 18))
12 declare var window: Window;
14 >Window : Symbol(Window, Decl(sourceMap-StringLiteralWithNewLine.ts, 1, 1))
28 >window.document : Symbol(Window.document, Decl(sourceMap-StringLiteralWithNewLine.ts, 2, 18))
30 >document : Symbol(Window.document, Decl(sourceMap-StringLiteralWithNewLine.ts, 2, 18))
DdeclFileTypeAnnotationVisibilityErrorTypeAlias.types2 interface Window {
10 type W = Window | string;
16 export class Window { }
17 >Window : Window
27 export type W = Window | string;
33 export class Window { }
34 >Window : Window
/third_party/flutter/skia/tools/sk_app/ios/
DWindow_ios.cpp18 Window* Window::CreateNativeWindow(void*) { in CreateNativeWindow()
99 static Window::Key get_key(const SDL_Keysym& keysym) { in get_key()
102 Window::Key fKey; in get_key()
104 { SDLK_BACKSPACE, Window::Key::kBack }, in get_key()
105 { SDLK_CLEAR, Window::Key::kBack }, in get_key()
106 { SDLK_RETURN, Window::Key::kOK }, in get_key()
107 { SDLK_UP, Window::Key::kUp }, in get_key()
108 { SDLK_DOWN, Window::Key::kDown }, in get_key()
109 { SDLK_LEFT, Window::Key::kLeft }, in get_key()
110 { SDLK_RIGHT, Window::Key::kRight }, in get_key()
[all …]
/third_party/boost/libs/intrusive/example/
Ddoc_window.cpp18 class Window : public list_base_hook<> class
22 typedef list<Window> win_list;
28 Window() { all_windows.push_back(*this); } in Window() function in Window
30 virtual ~Window() { all_windows.erase(win_list::s_iterator_to(*this)); } in ~Window()
36 Window::win_list Window::all_windows;
39 class FrameWindow : public Window
42 class EditWindow : public Window
45 class CanvasWindow : public Window
51 for(Window::win_list::iterator i(Window::all_windows.begin()) in paint_all_windows()
52 , e(Window::all_windows.end()) in paint_all_windows()
[all …]
/third_party/vk-gl-cts/framework/platform/android/
DtcuAndroidWindow.cpp35 Window::Window (ANativeWindow* window) in Window() function in tcu::Android::Window
41 Window::~Window (void) in ~Window()
45 void Window::setBuffersGeometry (int width, int height, int32_t format) in setBuffersGeometry()
50 IVec2 Window::getSize (void) const in getSize()
57 bool Window::tryAcquire (void) in tryAcquire()
70 void Window::release (void) in release()
87 void Window::markForDestroy (void) in markForDestroy()
99 bool Window::isPendingDestroy (void) const in isPendingDestroy()
105 bool Window::tryAcquireForDestroy (bool onlyMarked) in tryAcquireForDestroy()
127 …for (vector<Window*>::const_iterator winIter = m_windows.begin(); winIter != m_windows.end(); winI… in ~WindowRegistry()
[all …]
DtcuAndroidWindow.hpp42 class Window class
56 Window (ANativeWindow* window);
57 ~Window (void);
73 Window (const Window& other);
74 Window& operator= (const Window& other);
90 Window* tryAcquireWindow (void);
95 std::vector<Window*> m_windows;
/third_party/flutter/skia/tools/sk_app/unix/
DWindow_unix.cpp33 Window* Window::CreateNativeWindow(void* platformData) { in CreateNativeWindow()
193 static Window::Key get_key(KeySym keysym) { in get_key()
196 Window::Key fKey; in get_key()
198 { XK_BackSpace, Window::Key::kBack }, in get_key()
199 { XK_Clear, Window::Key::kBack }, in get_key()
200 { XK_Return, Window::Key::kOK }, in get_key()
201 { XK_Up, Window::Key::kUp }, in get_key()
202 { XK_Down, Window::Key::kDown }, in get_key()
203 { XK_Left, Window::Key::kLeft }, in get_key()
204 { XK_Right, Window::Key::kRight }, in get_key()
[all …]
/third_party/flutter/skia/tools/sk_app/win/
DWindow_win.cpp32 Window* Window::CreateNativeWindow(void* platformData) { in CreateNativeWindow()
126 static Window::Key get_key(WPARAM vk) { in get_key()
129 Window::Key fKey; in get_key()
131 { VK_BACK, Window::Key::kBack }, in get_key()
132 { VK_CLEAR, Window::Key::kBack }, in get_key()
133 { VK_RETURN, Window::Key::kOK }, in get_key()
134 { VK_UP, Window::Key::kUp }, in get_key()
135 { VK_DOWN, Window::Key::kDown }, in get_key()
136 { VK_LEFT, Window::Key::kLeft }, in get_key()
137 { VK_RIGHT, Window::Key::kRight }, in get_key()
[all …]
/third_party/flutter/skia/tools/sk_app/mac/
DWindow_mac.mm27 using sk_app::Window;
33 Window* Window::CreateNativeWindow(void*) {
191 static Window::Key get_key(unsigned short vk) {
196 Window::Key fKey;
198 { 0x33, Window::Key::kBack },
199 { 0x24, Window::Key::kOK },
200 { 0x7E, Window::Key::kUp },
201 { 0x7D, Window::Key::kDown },
202 { 0x7B, Window::Key::kLeft },
203 { 0x7C, Window::Key::kRight },
[all …]
/third_party/flutter/skia/tools/viewer/
DImGuiLayer.cpp31 io.KeyMap[ImGuiKey_Tab] = (int)Window::Key::kTab; in ImGuiLayer()
32 io.KeyMap[ImGuiKey_LeftArrow] = (int)Window::Key::kLeft; in ImGuiLayer()
33 io.KeyMap[ImGuiKey_RightArrow] = (int)Window::Key::kRight; in ImGuiLayer()
34 io.KeyMap[ImGuiKey_UpArrow] = (int)Window::Key::kUp; in ImGuiLayer()
35 io.KeyMap[ImGuiKey_DownArrow] = (int)Window::Key::kDown; in ImGuiLayer()
36 io.KeyMap[ImGuiKey_PageUp] = (int)Window::Key::kPageUp; in ImGuiLayer()
37 io.KeyMap[ImGuiKey_PageDown] = (int)Window::Key::kPageDown; in ImGuiLayer()
38 io.KeyMap[ImGuiKey_Home] = (int)Window::Key::kHome; in ImGuiLayer()
39 io.KeyMap[ImGuiKey_End] = (int)Window::Key::kEnd; in ImGuiLayer()
40 io.KeyMap[ImGuiKey_Delete] = (int)Window::Key::kDelete; in ImGuiLayer()
[all …]
/third_party/flutter/engine/flutter/lib/ui/window/
Dwindow.cc11 Window::Window(WindowClient* client) : client_(client) {} in Window() function in flutter::Window
13 void Window::DidCreateIsolate() {} in DidCreateIsolate()
15 void Window::UpdateWindowMetrics(const ViewportMetrics& metrics) { in UpdateWindowMetrics()
19 void Window::UpdateUserSettingsData(const std::string& data) { in UpdateUserSettingsData()
22 void Window::DispatchPointerDataPacket(const PointerDataPacket& packet) { in DispatchPointerDataPacket()
25 void Window::BeginFrame(fml::TimePoint frameTime) { in BeginFrame()
31 void Window::ReportTimings(std::vector<int64_t> timings) { in ReportTimings()
34 void Window::ScheduleFrame() { in ScheduleFrame()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/
DWindow.cpp19 Window::Window(vk::Instance instance, vk::Extent2D windowSize) in Window() function in Window
27 Window::~Window() in ~Window()
32 vk::SurfaceKHR Window::getSurface() in getSurface()
37 void Window::show() in show()
43 Window::Window(vk::Instance instance, vk::Extent2D windowSize) in Window() function in Window
92 Window::~Window() in ~Window()
99 vk::SurfaceKHR Window::getSurface() in getSurface()
104 void Window::show() in show()
110 # error Window class unimplemented for this platform
DWindow.hpp26 class Window class
29 Window(vk::Instance instance, vk::Extent2D windowSize);
30 ~Window();
41 class Window class
44 Window(vk::Instance instance, vk::Extent2D windowSize);
45 ~Window();
58 # error Window class unimplemented for this platform
/third_party/cef/libcef/browser/native/
Dwindow_x11.cc33 x11::Window FindChild(x11::Window window) { in FindChild()
39 return x11::Window::None; in FindChild()
42 x11::Window FindToplevelParent(x11::Window window) { in FindToplevelParent()
43 x11::Window top_level_window = window; in FindToplevelParent()
71 x11::Window parent_xwindow, in CefWindowX11()
79 if (parent_xwindow_ == x11::Window::None) in CefWindowX11()
89 xwindow_ = connection_->GenerateId<x11::Window>(); in CefWindowX11()
145 DCHECK_EQ(xwindow_, x11::Window::None); in ~CefWindowX11()
152 if (xwindow_ == x11::Window::None) in Close()
167 if (xwindow_ == x11::Window::None) in Show()
[all …]
/third_party/vk-gl-cts/framework/platform/lnx/wayland/
DtcuLnxWayland.cpp47 const struct wl_shell_surface_listener Window::s_shellSurfaceListener =
49 Window::handlePing,
50 Window::handleConfigure,
51 Window::handlePopupDone,
149 Window::Window (Display& display, int width, int height) in Window() function in tcu::lnx::wayland::Window
182 void Window::setVisibility (bool visible) in setVisibility()
187 void Window::getDimensions (int* width, int* height) const in getDimensions()
192 void Window::setDimensions (int width, int height) in setDimensions()
197 void Window::processEvents (void) in processEvents()
201 void Window::handlePing (void* data, struct wl_shell_surface* shellSurface, uint32_t serial) in handlePing()
[all …]
/third_party/flutter/skia/experimental/editor/
Deditor_application.cpp23 static const char* key_name(sk_app::Window::Key k) { in key_name()
25 #define M(X) case sk_app::Window::Key::k ## X: return #X in key_name()
53 static void debug_on_key(sk_app::Window::Key key, InputState, ModifierKey modi) { in debug_on_key()
58 static editor::Editor::Movement convert(sk_app::Window::Key key) { in convert()
60 case sk_app::Window::Key::kLeft: return editor::Editor::Movement::kLeft; in convert()
61 case sk_app::Window::Key::kRight: return editor::Editor::Movement::kRight; in convert()
62 case sk_app::Window::Key::kUp: return editor::Editor::Movement::kUp; in convert()
63 case sk_app::Window::Key::kDown: return editor::Editor::Movement::kDown; in convert()
64 case sk_app::Window::Key::kHome: return editor::Editor::Movement::kHome; in convert()
65 case sk_app::Window::Key::kEnd: return editor::Editor::Movement::kEnd; in convert()
[all …]
/third_party/vk-gl-cts/framework/platform/win32/
DtcuWin32Window.cpp33 Window* window = reinterpret_cast<Window*>(GetWindowLongPtr(hWnd, GWLP_USERDATA)); in windowProcCallback()
40 Window::Window (HINSTANCE instance, int width, int height) in Window() function in tcu::win32::Window
88 Window::~Window (void) in ~Window()
99 void Window::setVisible (bool visible) in setVisible()
105 void Window::setForeground(void) in setForeground()
111 void Window::setSize (int width, int height) in setSize()
129 IVec2 Window::getSize (void) const in getSize()
139 void Window::processEvents (void) in processEvents()
146 LRESULT Window::windowProc (UINT uMsg, WPARAM wParam, LPARAM lParam) in windowProc()
DtcuWin32Window.hpp35 class Window class
38 Window (HINSTANCE instance, int width, int height);
39 ~Window (void);
53 Window (const Window&);
54 Window operator= (const Window&);
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkWsiPlatform.hpp35 class Window class
38 virtual ~Window (void) {} in ~Window()
45 Window (void) {} in Window() function in vk::wsi::Window
48 Window (const Window&); // Not allowed
49 Window& operator= (const Window&); // Not allowed
57 virtual Window* createWindow (const tcu::Maybe<tcu::UVec2>& initialSize = tcu::Nothing) const = 0;
93 struct WindowInterface : public Window

12345678910>>...26