Searched refs:window (Results 26 - 50 of 1046) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSDOMWindowShell.cpp52 void JSDOMWindowShell::finishCreation(VM& vm, PassRefPtr<DOMWindow> window) argument
56 setWindow(window);
64 void JSDOMWindowShell::setWindow(VM& vm, JSDOMWindow* window) argument
66 ASSERT_ARG(window, window);
67 setTarget(vm, window);
68 structure()->setGlobalObject(vm, window);
76 ASSERT(!window() || domWindow.get() != &window()->impl());
99 return window()
[all...]
H A DJSWorkerCustom.cpp60 DOMWindow& window = asJSDOMWindow(exec->lexicalGlobalObject())->impl();
63 ASSERT(window.document());
64 RefPtr<Worker> worker = Worker::create(*window.document(), scriptURL, ec);
/macosx-10.10/emacs-93/emacs/src/
H A Dwindow.c29 #include "window.h"
57 static int displayed_window_lines P_ ((struct window *));
58 static struct window *decode_window P_ ((Lisp_Object));
59 static int count_windows P_ ((struct window *));
60 static int get_leaf_windows P_ ((struct window *, struct window **, int));
64 static int window_min_size_1 P_ ((struct window *, int));
65 static int window_min_size P_ ((struct window *, int, int, int *));
67 static int freeze_window_start P_ ((struct window *, void *));
68 static int window_fixed_size_p P_ ((struct window *, in
322 Lisp_Object window; variable
347 Lisp_Object pos, window, partially; variable
416 Lisp_Object line, window; variable
534 Lisp_Object window; variable
543 Lisp_Object window; variable
554 Lisp_Object window; variable
563 Lisp_Object window; variable
575 Lisp_Object window, ncol; variable
597 Lisp_Object window; variable
611 register Lisp_Object window, value; variable
629 Lisp_Object window; variable
649 Lisp_Object window; variable
668 Lisp_Object window; variable
692 Lisp_Object window; variable
934 register Lisp_Object coordinates, window; variable
941 CHECK_WINDOW (window); variable
1005 Lisp_Object *window; member in struct:check_window_data
1058 Lisp_Object window; local
1128 Lisp_Object window; variable
1143 Lisp_Object window; variable
1170 Lisp_Object window, update; variable
1239 Lisp_Object window, pos; variable
1264 Lisp_Object window, pos, noforce; variable
1288 Lisp_Object window; variable
1301 Lisp_Object window, arg; variable
1315 Lisp_Object window; variable
1349 register Lisp_Object window, table; variable
1466 register Lisp_Object window; variable
1468 delete_window (window); variable
1701 Lisp_Object window; local
1943 Lisp_Object window, minibuf, all_frames; variable
1976 Lisp_Object window, minibuf, all_frames; variable
1991 Lisp_Object window; variable
2016 Lisp_Object frame, minibuf, window; variable
2020 CHECK_WINDOW (window); variable
2089 Lisp_Object window, windows, best_window, frame_arg; local
2263 Lisp_Object window; local
2390 Lisp_Object window; variable
2399 CHECK_LIVE_WINDOW (window); variable
3373 register Lisp_Object window, buffer, keep_margins; variable
3415 register Lisp_Object window, norecord; variable
3421 CHECK_LIVE_WINDOW (window); variable
3637 register Lisp_Object window, tem, swp; variable
3860 register Lisp_Object window; local
3962 Lisp_Object window, size, horflag; variable
3972 CHECK_LIVE_WINDOW (window); variable
4011 make_dummy_parent (window); variable
4027 make_dummy_parent (window); variable
4578 Lisp_Object window, delta, horizontal; variable
4821 Lisp_Object window; local
5331 Fvertical_motion (make_number (n), window); local
5369 Fvertical_motion (make_number (original_vpos), window); local
5380 Fvertical_motion (make_number (this_scroll_margin), window); local
5391 Fvertical_motion (make_number (original_vpos), window); local
5416 Fvertical_motion (make_number (original_vpos), window); local
5509 Lisp_Object window; variable
5536 CHECK_LIVE_WINDOW (window); variable
5560 Lisp_Object window; variable
5914 Lisp_Object window; variable
5935 Lisp_Object window; variable
6024 Lisp_Object window; member in struct:saved_window
6751 Lisp_Object window, left_width, right_width; variable
6796 Lisp_Object window; variable
6822 Lisp_Object window, left_width, right_width, outside_margins; variable
6860 Lisp_Object window; variable
6888 Lisp_Object window, width, vertical_type, horizontal_type; variable
6933 Lisp_Object window; variable
6956 Lisp_Object window, pixels_p; variable
6965 CHECK_WINDOW (window); variable
6990 Lisp_Object window, vscroll, pixels_p; variable
6998 CHECK_WINDOW (window); variable
[all...]
H A Dindent.h55 int, int, int, struct window *));
56 struct position *vmotion P_ ((int, int, struct window *));
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DSetting.js65 if (window.localStorage && this._localStorageKey in window.localStorage) {
67 this._value = JSON.parse(window.localStorage[this._localStorageKey]);
69 delete window.localStorage[this._localStorageKey];
80 if (window.localStorage) {
84 delete window.localStorage[this._localStorageKey];
86 window.localStorage[this._localStorageKey] = JSON.stringify(this._value);
/macosx-10.10/WebCore-7600.1.25/page/
H A DDeviceController.cpp43 void DeviceController::addDeviceEventListener(DOMWindow* window) argument
46 m_listeners.add(window);
49 m_lastEventListeners.add(window);
58 void DeviceController::removeDeviceEventListener(DOMWindow* window) argument
60 m_listeners.remove(window);
61 m_lastEventListeners.remove(window);
66 void DeviceController::removeAllDeviceEventListeners(DOMWindow* window) argument
68 m_listeners.removeAll(window);
69 m_lastEventListeners.removeAll(window);
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DGtkVersioning.h34 #define GDK_WINDOW_XWINDOW(window) (gdk_x11_window_get_xid(window))
47 GdkDevice* getDefaultGDKPointerDevice(GdkWindow* window);
H A DGtkPluginWidget.cpp55 GdkWindow* window = gtk_widget_get_window(platformWidget());
56 if (!window)
60 gdk_window_invalidate_rect(window, &rect, FALSE);
/macosx-10.10/emacs-93/emacs/oldXMenu/
H A DDelSel.c43 XDeleteAssoc(display, menu->assoc_tab, s_ptr->window);
55 if (s_ptr->window) XDestroyWindow(display, s_ptr->window);
/macosx-10.10/zlib-55/zlib/contrib/infback9/
H A Dinfback9.h14 * window must be provided. Also if int's are 16 bits, then a zero for
28 unsigned char FAR *window,
31 #define inflateBack9Init(strm, window) \
32 inflateBack9Init_((strm), (window), \
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DPlatformScreenMac.mm79 static NSScreen *screenForWidget(Widget* widget, NSWindow *window)
82 if (window)
83 return screenForWindow(window);
89 // Widget's window is offscreen, or no screens. Fall back to the first screen if available.
95 NSWindow *window = widget ? [widget->platformWidget() window] : nil;
96 NSScreen *screen = screenForWidget(widget, window);
97 return toUserSpace([screen frame], window);
102 NSWindow *window = widget ? [widget->platformWidget() window]
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/ios/
H A DPlatformScreenIOS.mm66 WAKWindow *window = [platformWidget window];
67 if (!window)
69 CGRect screenRect = { CGPointZero, [window screenSize] };
82 WAKWindow *window = [platformWidget window];
83 if (!window)
85 CGRect screenRect = { CGPointZero, [window availableScreenSize] };
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DWKGeolocationProviderIOS.h39 -(void)decidePolicyForGeolocationRequestFromOrigin:(WKSecurityOriginRef)origin frame:(WKFrameRef)frame request:(WKGeolocationPermissionRequestRef)permissionRequest window:(UIWindow*)window;
H A DWKGeolocationProviderIOSObjCSecurityOrigin.mm48 void decidePolicyForGeolocationRequestFromOrigin(WebCore::SecurityOrigin*, const String& urlString, id<WebAllowDenyPolicyListener>, UIWindow* window);
50 void decidePolicyForGeolocationRequestFromOrigin(WebCore::SecurityOrigin* origin, const String& urlString, id<WebAllowDenyPolicyListener> listener, UIWindow* window)
54 [[UIWebGeolocationPolicyDecider sharedPolicyDecider] decidePolicyForGeolocationRequestFromOrigin:securityOrigin.get() requestingURL:requestUrl.get() window:window listener:listener];
/macosx-10.10/mDNSResponder-561.1.1/Clients/FirefoxExtension/extension/content/
H A Doverlay.js12 promptService.alert(window, this.strings.getString("helloMessageTitle"), this.strings.getString("helloMessage"));
21 window.addEventListener("load", function(e) { bonjour4firefox.onLoad(e); }, false);
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebJavaScriptTextInputPanel.m45 NSWindow *window = [self window];
47 // This must be done after the call to [self window], because
55 [window centerOverMainWindow];
/macosx-10.10/emacs-93/emacs/lisp/
H A Dwindow.el0 ;;; window.el --- GNU Emacs window commands aside from those written in C
32 (defvar window-size-fixed nil
34 If the value is `height', then only the window's height is fixed.
35 If the value is `width', then only the window's width is fixed.
37 Emacs won't change the size of any window displaying that buffer,
39 (make-variable-buffer-local 'window-size-fixed)
41 (defmacro save-selected-window (&rest body)
42 "Execute BODY, then select the window that was selected before BODY.
49 This macro saves and restores the selected window, a
[all...]
H A Dscroll-bar.el1 ;;; scroll-bar.el --- window system-independent scroll bar support
61 (let* ((wsb (window-scroll-bars))
178 (defun scroll-bar-set-window-start (event)
179 "Set the window start according to where the scroll bar is dragged.
183 (window (nth 0 end-position))
186 (set-buffer (window-buffer window))
192 (set-window-start window (point))))))
195 "Calculate new window star
[all...]
H A Dwindmove.el1 ;;; windmove.el --- directional window-selection routines
8 ;; Keywords: window, movement, convenience
33 ;; example, `windmove-right' selects the window immediately to the
35 ;; to the window-selection controls of the BRIEF editor of yore.
37 ;; One subtle point is what happens when the window to the right has
46 ;; | | B | selected window)
51 ;; (1) Always move to the window to the right of the top edge of the
52 ;; selected window; in this case, this policy selects A.
53 ;; (2) Always move to the window to the right of the bottom edge of
54 ;; the selected window; i
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebFullScreenController.mm74 static NSRect convertRectToScreen(NSWindow *window, NSRect rect)
76 return [window convertRectToScreen:rect];
89 // Do not defer window creation, to make sure -windowNumber is created (needed by WebWindowScaleAnimation).
90 NSWindow *window = [[WebCoreFullScreenWindow alloc] initWithContentRect:NSZeroRect styleMask:NSClosableWindowMask backing:NSBackingStoreBuffered defer:NO];
91 self = [super initWithWindow:window];
92 [window release];
168 NSWindow* fullscreenWindow = [self window];
183 // Update our presentation parameters, and ensure that the full screen window occupies the
186 NSWindow* window = [self window];
[all...]
/macosx-10.10/top-100.1.2/
H A Duserinput_help.c32 WINDOW *window; member in struct:__anon14176
39 .window = NULL,
100 mvwaddstr(help.window, LINES - 1, 0, "Press any key to continue...");
109 if(help.window) {
110 delwin(help.window);
111 help.window = NULL;
136 help.window = newwin(LINES, COLS, 0, 0);
138 if(NULL == help.window) {
143 help.panel = new_panel(help.window);
151 help.state = derwin(help.window, LINE
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dmainwindow.rb37 window(tk_call(@path, 'childsite'))
44 window(tk_call(@path, 'menubar'))
51 window(tk_call(@path, 'mousebar'))
58 window(tk_call(@path, 'msgd'))
65 window(tk_call(@path, 'toolbar'))
/macosx-10.10/postfix-255/postfix/src/oqmgr/
H A Dqmgr_queue.c124 msg_info("%s: queue %s: limit %d window %d success %g failure %g fail_cohorts %g", \
126 queue->window, queue->success, queue->failure, queue->fail_cohorts);
148 queue->window = 1;
176 queue->window = QMGR_QUEUE_STAT_SUSPENDED;
228 msg_panic("%s: queue %s: window 0 status 0", myname, queue->name);
233 queue->window = queue->busy_refcount;
235 queue->window = transport->init_dest_concurrency;
251 * Keep the window within reasonable distance from actual concurrency
257 || transport->dest_concurrency_limit > queue->window)
258 if (queue->window < queu
[all...]
/macosx-10.10/WebKit-7600.1.25/win/
H A DAccessibleDocument.cpp37 AccessibleDocument::AccessibleDocument(Document* doc, HWND window) argument
38 : AccessibleBase(doc->axObjectCache()->rootObject(), window)
H A DAccessibleImage.cpp35 AccessibleImage::AccessibleImage(AccessibilityObject* obj, HWND window) argument
36 : AccessibleBase(obj, window)

Completed in 160 milliseconds

1234567891011>>