Searched refs:Window (Results 1 - 25 of 193) sorted by relevance

12345678

/external/deqp/framework/platform/win32/
H A DtcuWin32Window.hpp35 class Window class in namespace:tcu::win32
38 Window (HINSTANCE instance, int width, int height);
39 ~Window (void);
52 Window (const Window&);
53 Window operator= (const Window&);
H A DtcuWin32Window.cpp33 Window* window = reinterpret_cast<Window*>(GetWindowLongPtr(hWnd, GWLP_USERDATA));
40 Window::Window (HINSTANCE instance, int width, int height) function in class:tcu::win32::Window
88 Window::~Window (void)
99 void Window::setVisible (bool visible)
104 void Window::setSize (int width, int height)
122 IVec2 Window::getSize (void) const
132 void Window
[all...]
/external/autotest/client/site_tests/power_LoadTest/extension/
H A Dcustom_event_listener.js0 Window.prototype.orginalEventListener = Window.prototype.addEventListener; class
2 Window.prototype.addEventListener = function(type, listener, useCapture) {
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkWsiPlatform.cpp31 void Window::resize (const tcu::UVec2&)
H A DvkWsiPlatform.hpp35 class Window class in namespace:vk::wsi
38 virtual ~Window (void) {}
43 Window (void) {} function in class:vk::wsi::Window
46 Window (const Window&); // Not allowed
47 Window& operator= (const Window&); // Not allowed
55 virtual Window* createWindow (const tcu::Maybe<tcu::UVec2>& initialSize = tcu::nothing<tcu::UVec2>()) const = 0;
91 struct WindowInterface : public Window
/external/deqp/framework/platform/android/
H A DtcuAndroidWindow.hpp40 // \note Window is thread-safe, WindowRegistry is not
42 class Window class in namespace:tcu::Android
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_window
[all...]
H A DtcuAndroidWindow.cpp33 // Window
35 Window::Window (ANativeWindow* window) function in class:tcu::Android::Window
41 Window::~Window (void)
45 void Window::setBuffersGeometry (int width, int height, int32_t format)
50 IVec2 Window::getSize (void) const
57 bool Window::tryAcquire (void)
70 void Window::release (void)
87 void Window
[all...]
/external/skia/tools/viewer/sk_app/
H A DWindow.cpp8 #include "Window.h"
22 static bool default_key_func(Window::Key key, Window::InputState state, uint32_t modifiers,
27 static bool default_mouse_func(int x, int y, Window::InputState state, uint32_t modifiers,
36 static bool default_touch_func(intptr_t owner, Window::InputState state, float x, float y,
46 Window::Window() : fBackendCreatedFunc(default_backend_created_func) function in class:sk_app::Window
56 void Window::detach() {
61 void Window::onBackendCreated() {
65 bool Window
[all...]
H A DCommandSet.h12 #include "Window.h"
25 * 1) Attach to the Window at initialization time.
31 * 3) Register key and char handlers with the Window, and - depending on your state - forward those
43 void attach(Window* window);
44 bool onKey(sk_app::Window::Key key, sk_app::Window::InputState state, uint32_t modifiers);
50 void addCommand(Window::Key k, const char* keyName, const char* group, const char* description,
73 Command(Window::Key k, const char* keyName, const char* group, const char* description,
88 Window::Key fKey;
110 Window* fWindo
[all...]
/external/autotest/client/deps/glbench/src/
H A Dxlib_window.h11 extern Window g_xlib_window;
/external/skia/tools/viewer/sk_app/mac/
H A DWindow_mac.cpp17 Window* Window::CreateNativeWindow(void*) {
61 fWindow = SDL_CreateWindow("SDL Window", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED,
86 static Window::Key get_key(const SDL_Keysym& keysym) {
89 Window::Key fKey;
91 { SDLK_BACKSPACE, Window::Key::kBack },
92 { SDLK_CLEAR, Window::Key::kBack },
93 { SDLK_RETURN, Window::Key::kOK },
94 { SDLK_UP, Window::Key::kUp },
95 { SDLK_DOWN, Window
[all...]
/external/skia/tools/viewer/sk_app/win/
H A DWindow_win.h12 #include "../Window.h"
16 class Window_win : public Window {
18 Window_win() : Window() {}
39 typedef Window INHERITED;
H A DWindow_win.cpp28 Window* Window::CreateNativeWindow(void* platformData) {
121 static Window::Key get_key(WPARAM vk) {
124 Window::Key fKey;
126 { VK_BACK, Window::Key::kBack },
127 { VK_CLEAR, Window::Key::kBack },
128 { VK_RETURN, Window::Key::kOK },
129 { VK_UP, Window::Key::kUp },
130 { VK_DOWN, Window::Key::kDown },
131 { VK_LEFT, Window
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowWindow.java3 import android.view.Window;
9 @Implements(Window.class)
/external/clang/test/FixIt/
H A Dtypo.c18 struct Window { struct
23 struct Window window = {
24 .bunds. // expected-error{{field designator 'bunds' does not refer to any field in type 'struct Window'; did you mean 'bounds'?}}
/external/skia/tools/viewer/sk_app/unix/
H A DWindow_unix.cpp27 Window* Window::CreateNativeWindow(void* platformData) {
187 static Window::Key get_key(KeySym keysym) {
190 Window::Key fKey;
192 { XK_BackSpace, Window::Key::kBack },
193 { XK_Clear, Window::Key::kBack },
194 { XK_Return, Window::Key::kOK },
195 { XK_Up, Window::Key::kUp },
196 { XK_Down, Window::Key::kDown },
197 { XK_Left, Window
[all...]
/external/deqp/framework/platform/wayland/
H A DtcuWayland.cpp63 const struct wl_shell_surface_listener Window::s_shellSurfaceListener =
65 Window::handlePing,
66 Window::handleConfigure,
67 Window::handlePopupDone,
150 Window::Window (Display& display, int width, int height) function in class:tcu::wayland::Window
183 void Window::setVisibility (bool visible)
188 void Window::getDimensions (int* width, int* height) const
193 void Window::setDimensions (int width, int height)
198 void Window
[all...]
H A DtcuWayland.hpp94 class Window class in namespace:tcu::wayland
97 Window (Display& display, int width, int height);
98 ~Window (void);
119 Window (const Window&);
120 Window& operator= (const Window&);
H A DtcuWaylandEglPlatform.cpp79 class Window : public NativeWindow class in namespace:tcu::wayland::egl
87 Window (Display& display,
96 wayland::Window m_window;
99 Window::Window (Display& display, const WindowParams& params) function in class:tcu::wayland::egl::Window
105 IVec2 Window::getSurfaceSize (void) const
112 void Window::setSurfaceSize (IVec2 size)
133 : NativeWindowFactory ("window", "Wayland Window", Window::CAPABILITIES)
142 return new Window(displa
[all...]
/external/deqp/framework/platform/raspi/
H A DtcuRaspiPlatform.cpp67 class Window : public eglu::NativeWindow class in namespace:tcu::rpi
70 Window (int width, int height);
71 ~Window (void);
86 WindowFactory (void) : eglu::NativeWindowFactory("dispman", "Dispman Window", WINDOW_CAPABILITIES) {}
112 return new Window(width, height);
115 // Window
117 Window::Window (int width, int height) function in class:tcu::rpi::Window
155 Window::~Window (voi
[all...]
/external/webrtc/webrtc/modules/video_render/linux/
H A Dvideo_x11_render.h28 VideoX11Render(Window window);
32 int32_t ChangeWindow(Window window);
49 Window _window;
/external/skia/tools/viewer/
H A DViewer.h13 #include "sk_app/Window.h"
29 bool onTouch(intptr_t owner, sk_app::Window::InputState state, float x, float y);
31 bool onKey(sk_app::Window::Key key, sk_app::Window::InputState state, uint32_t modifiers);
44 void setBackend(sk_app::Window::BackendType);
59 sk_app::Window* fWindow;
82 sk_app::Window::BackendType fBackendType;
/external/autotest/frontend/client/src/autotest/tko/embedded_spreadsheet/
H A DEmbeddedSpreadsheetClient.java4 import com.google.gwt.user.client.Window;
14 presenter.initialize(Window.Location.getParameter("afe_job_id"));
/external/webrtc/webrtc/modules/desktop_capture/
H A Dwindow_capturer.h30 struct Window { struct in class:webrtc::WindowCapturer
37 typedef std::vector<Window> WindowList;
H A Dwindow_capturer_x11.cc39 XWindowProperty(Display* display, Window window, Atom property)
112 ::Window GetApplicationWindow(::Window window);
115 bool IsDesktopElement(::Window window);
118 bool GetWindowTitle(::Window window, std::string* title);
129 ::Window selected_window_;
170 ::Window root_window = XRootWindow(display(), screen);
171 ::Window parent;
172 ::Window *children;
184 ::Window app_windo
[all...]

Completed in 9023 milliseconds

12345678