Searched refs:window (Results 126 - 150 of 1015) sorted by relevance

1234567891011>>

/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_wm.c43 /* Set window caption */
48 /* sanity check for set caption call before window init */
49 if (window!=NULL)
51 PtSetResource(window, Pt_ARG_WINDOW_TITLE, title, 0);
57 /* Iconify current window */
67 windowevent.rid = PtWidgetRid(window);
81 PtSetResource(window, Pt_ARG_WINDOW_STATE, Pt_FALSE, Ph_WM_STATE_ISALTKEY);
85 PtSetResource(window, Pt_ARG_WINDOW_STATE, Pt_TRUE, Ph_WM_STATE_ISALTKEY);
87 PtGetAbsPosition(window, &abs_x, &abs_y);
/external/webkit/Source/WebCore/inspector/front-end/
H A DSettings.js91 if (window.localStorage != null && key in window.localStorage) {
93 return JSON.parse(window.localStorage[key]);
95 window.localStorage.removeItem(key);
103 if (window.localStorage != null)
104 window.localStorage[key] = JSON.stringify(value);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DMediaLayer.cpp97 void MediaLayer::setWindowDimensionsForVideo(const ANativeWindow* window, const SkRect& dimensions) argument
100 m_mediaTexture->setDimensions(window, dimensions);
103 void MediaLayer::releaseNativeWindowForVideo(ANativeWindow* window) argument
105 m_mediaTexture->releaseNativeWindow(window);
108 void MediaLayer::setFramerateCallback(const ANativeWindow* window, FramerateCallbackProc callback) argument
110 m_mediaTexture->setFramerateCallback(window, callback);
H A DMediaLayer.h55 void setWindowDimensionsForVideo(const ANativeWindow* window, const SkRect& dimensions);
56 void releaseNativeWindowForVideo(ANativeWindow* window);
57 void setFramerateCallback(const ANativeWindow* window, FramerateCallbackProc callback);
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebJavaScriptTextInputPanel.m41 NSWindow *window = [self window];
43 // This must be done after the call to [self window], because
51 [window centerOverMainWindow];
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWebInspectorProxyMac.mm101 NSWindow *window = [[NSWindow alloc] initWithContentRect:NSMakeRect(0, 0, initialWindowWidth, initialWindowHeight) styleMask:styleMask backing:NSBackingStoreBuffered defer:NO];
102 [window setAutorecalculatesContentBorderThickness:NO forEdge:NSMaxYEdge];
103 [window setContentBorderThickness:windowContentBorderThickness forEdge:NSMaxYEdge];
104 [window setDelegate:m_inspectorProxyObjCAdapter.get()];
105 [window setMinSize:NSMakeSize(minimumWindowWidth, minimumWindowHeight)];
106 [window setReleasedWhenClosed:NO];
108 // Center the window initially before setting the frame autosave name so that the window will be in a good
110 [window center];
111 [window setFrameAutosaveNam
[all...]
/external/webkit/Source/WebKit2/PluginProcess/mac/
H A DPluginProcessShim.mm64 static NSInteger shim_NSApplication_RunModalForWindow(id self, SEL _cmd, NSWindow* window)
67 NSInteger result = ((NSInteger (*)(id, SEL, NSWindow *))NSApplication_RunModalForWindow)(self, _cmd, window);
87 static Boolean shimIsWindowActive(WindowRef window)
90 if (pluginProcessShimCallbacks.isWindowActive(window, result))
93 return IsWindowActive(window);
112 static void shimShowWindow(WindowRef window)
114 pluginProcessShimCallbacks.carbonWindowShown(window);
115 ShowWindow(window);
118 static void shimHideWindow(WindowRef window)
120 pluginProcessShimCallbacks.carbonWindowHidden(window);
[all...]
/external/qemu/android/
H A Dqemulator.c36 VERBOSE_PRINT(hw_control,"%s: light='%s' value=%d window=%p", __FUNCTION__, light, value, emulator->window);
39 if (emulator->window)
40 skin_window_set_lcd_brightness( emulator->window, value );
50 if ( !emulator->window && !opts->no_window ) {
54 emulator->window = skin_window_create( layout, emulator->win_x, emulator->win_y, scale, 0);
55 if (emulator->window == NULL)
70 skin_window_set_trackball( emulator->window, ball );
73 skin_window_set_lcd_brightness( emulator->window, emulator->lcd_brightness );
77 skin_window_set_onion( emulator->window,
499 SkinWindow* window = emulator->window; local
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_tabs_apitest.cc116 browser()->window()->SetFullscreen(true);
117 bool is_fullscreen = browser()->window()->IsFullscreen();
119 ASSERT_EQ(is_fullscreen, browser()->window()->IsFullscreen());
124 browser()->window()->SetFullscreen(true);
126 ASSERT_FALSE(browser()->window()->IsFullscreen());
131 gfx::NativeWindow window = browser()->window()->GetNativeHandle(); local
132 ::SendMessage(window, WM_SYSCOMMAND, SC_MAXIMIZE, 0);
134 ASSERT_TRUE(::IsZoomed(window));
143 // This makes sure that creating an incognito window fail
[all...]
/external/chromium/chrome/browser/automation/
H A Dui_controls_linux.cc75 event->motion.window = grab_widget->window;
77 event->motion.window = gdk_window_at_pointer(&x, &y);
79 g_object_ref(event->motion.window);
83 gdk_window_get_origin(event->motion.window, &origin_x, &origin_y);
98 bool SendKeyPress(gfx::NativeWindow window, argument
109 event_window = grab_widget->window;
110 } else if (window) {
111 event_window = GTK_WIDGET(window)->window;
141 SendKeyPressNotifyWhenDone(gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, Task* task) argument
[all...]
H A Dtesting_automation_provider_win.cc40 HWND window = browser->window()->GetNativeHandle(); local
41 *success = (::PostMessageW(window, WM_ENDSESSION, 0, 0) == TRUE);
84 gfx::NativeWindow window = window_tracker_->GetResource(handle); local
86 int length = ::GetWindowTextLength(window) + 1;
87 ::GetWindowText(window, WriteInto(&result, length), length);
/external/chromium/chrome/browser/ui/webui/
H A Dvalue_helper.cc28 const TabRestoreService::Window& window,
30 if (window.tabs.empty()) {
35 for (size_t i = 0; i < window.tabs.size(); ++i) {
37 if (TabToValue(window.tabs[i], tab_value.get()))
42 dictionary->SetString("type", "window");
43 dictionary->SetDouble("timestamp", window.timestamp.ToDoubleT());
27 WindowToValue( const TabRestoreService::Window& window, DictionaryValue* dictionary) argument
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dmaximum-age.js28 if (window.layoutTestController) {
45 if (window.layoutTestController)
59 if (window.layoutTestController)
82 window.jsTestIsAsync = true;
83 window.successfullyParsed = true;
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/
H A DWindowRegionIsSetToClipRect.cpp32 // The plugin's window's window region should be set to the plugin's clip rect.
44 static PluginTest::Register<WindowRegionIsSetToClipRect> registrar("window-region-is-set-to-clip-rect");
52 NPError WindowRegionIsSetToClipRect::NPP_SetWindow(NPP instance, NPWindow* window) argument
58 if (window->type != NPWindowTypeWindow) {
59 pluginLog(instance, "window->type should be NPWindowTypeWindow but was %d", window->type);
63 HWND hwnd = reinterpret_cast<HWND>(window->window);
71 // This expected rect is based on the layout of window
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dwm_message_listener.cc28 ProcessMessage(message, client_event->window);
41 GdkWindow* window) {
42 FOR_EACH_OBSERVER(Observer, observers_, ProcessWmMessage(message, window));
40 ProcessMessage(const WmIpc::Message& message, GdkWindow* window) argument
/external/webkit/LayoutTests/fast/events/touch/script-tests/
H A Ddocument-create-touch-list.js14 var t = document.createTouch(window, document.body, 12341, 60, 65, 100, 105);
15 var t2 = document.createTouch(window, document.body, 12342, 50, 55, 115, 120);
19 evt.initTouchEvent(tl, tl, tl, "touchstart", window, 0, 0, 0, 0, true, false, false, false);
/external/webkit/Source/WebKit/chromium/src/mac/
H A DWebScreenInfoFactory.mm40 static NSScreen* screenForWindow(NSWindow* window)
42 NSScreen* screen = [window screen]; // nil if the window is off-screen
88 toUserSpace([screenForWindow([view window]) frame], [view window]);
90 toUserSpace([screenForWindow([view window]) visibleFrame], [view window]);
/external/webkit/Source/WebKit/android/plugins/
H A DANPVideoInterface.cpp53 static void anp_setWindowDimensions(NPP instance, const ANativeWindow* window, argument
61 mediaLayer->setWindowDimensionsForVideo(window, *SkANP::SetRect(&rect, *dimensions));
65 static void anp_releaseNativeWindow(NPP instance, ANativeWindow* window) { argument
70 mediaLayer->releaseNativeWindowForVideo(window);
73 static void anp_setFramerateCallback(NPP instance, const ANativeWindow* window, ANPVideoFrameCallbackProc callback) { argument
78 mediaLayer->setFramerateCallback(window, callback);
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebview.c143 GtkWidget* window = gtk_window_new(GTK_WINDOW_POPUP); local
148 gtk_window_set_default_size(GTK_WINDOW(window), 400, 200);
150 gtk_container_add(GTK_CONTAINER(window), scrolled_window);
160 /* Wait for window to show up */
161 gtk_widget_show_all(window);
162 g_signal_connect(window, "map-event",
183 window.scrollBy(0, 100);";
192 gtk_widget_destroy(window);
199 GtkWidget* window = gtk_window_new(GTK_WINDOW_TOPLEVEL); local
211 gtk_window_set_default_size(GTK_WINDOW(window), 40
296 GtkWidget* window; local
320 GtkWidget* window; local
[all...]
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/win/
H A DResizeViewWhileHidden.cpp95 HWND window = WKViewGetWindow(webView.platformView()); local
98 ::GetClientRect(window, &originalRect);
104 ::ShowWindow(window, SW_SHOW);
109 // Resize the window while hidden and show it again so that it will update its backing store at
111 ::ShowWindow(window, SW_HIDE);
113 ::ShowWindow(window, SW_SHOW);
116 ::SendMessage(window, WM_PAINT, 0, 0);
/external/chromium/chrome/browser/hang_monitor/
H A Dhung_plugin_action.h12 // It checks to see if the hung window belongs to a process different
28 void OnWindowResponsive(HWND window);
36 static BOOL CALLBACK DismissMessageBox(HWND window, LPARAM ignore);
42 // The currently hung plugin window that we are prompting the user about
/external/webkit/LayoutTests/fast/encoding/resources/
H A Dinvalid-xml.js26 if (window.layoutTestController)
35 if (window.layoutTestController)
/external/webkit/LayoutTests/storage/
H A Dmultiple-databases-garbage-collection.js4 if (window.GCController)
21 if (++completed == 2 && window.layoutTestController)
/external/webkit/Source/WebCore/dom/
H A DWindowEventContext.h44 DOMWindow* window() const;
53 inline DOMWindow* WindowEventContext::window() const function in class:WebCore::WindowEventContext
/external/webkit/Source/WebCore/page/
H A DPerformanceNavigation.idl31 module window {

Completed in 2058 milliseconds

1234567891011>>