Searched refs:window (Results 51 - 75 of 1046) sorted by relevance

1234567891011>>

/macosx-10.10/postfix-255/postfix/src/qmgr/
H A Dqmgr_queue.c70 /* that are based on the present queue's concurrency window.
130 msg_info("%s: queue %s: limit %d window %d success %g failure %g fail_cohorts %g", \
132 queue->window, queue->success, queue->failure, queue->fail_cohorts);
154 queue->window = 1;
193 queue->window = QMGR_QUEUE_STAT_SUSPENDED;
245 msg_panic("%s: queue %s: window 0 status 0", myname, queue->name);
250 queue->window = queue->busy_refcount;
252 queue->window = transport->init_dest_concurrency;
268 * Keep the window within reasonable distance from actual concurrency
274 || transport->dest_concurrency_limit > queue->window)
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dpanedwindow.rb28 window(tk_send('add', *hash_kv(keys)))
32 win = window(tk_send_without_enc('getframe', idx))
H A Dmainframe.rb43 win = window(tk_send('addindicator', *hash_kv(keys)))
55 win = window(tk_send('addtoolbar'))
67 win = window(tk_send('getframe'))
79 win = window(tk_send('getindicator', idx))
91 win = window(tk_send('getmenu', menu_id))
103 win = window(tk_send('gettoolbar', idx))
H A Dpanelframe.rb38 win = window(tk_send_without_enc('getframe'))
50 simplelist(tk_send('items')).map{|w| window(w)}
/macosx-10.10/ruby-106/ruby/lib/rdoc/generator/template/darkfish/js/
H A Ddarkfish.js11 if (!("console" in window) || !("firebug" in console)) {
15 window.console = {};
17 window.console[names[i]] = function() {};
103 window.location.href = result_element.firstChild.firstChild.href;
126 console.debug( "Location hash: %s", window.location.hash );
127 if ( ! window.location.hash || window.location.hash.length == 0 ) return;
129 var anchor = window.location.hash.substring(1);
/macosx-10.10/WebKit-7600.1.25/mac/DefaultDelegates/
H A DWebDefaultUIDelegate.m91 [[wv window] close];
98 [[wv window] makeKeyAndOrderFront:wv];
105 if ([[wv window] isKeyWindow] || [[[wv window] attachedSheet] isKeyWindow]) {
113 return [[wv window] firstResponder];
118 [[wv window] makeFirstResponder:responder];
157 return [[wv window] showsResizeIndicator];
164 // FIXME: This doesn't actually change the resizability of the window,
166 [[wv window] setShowsResizeIndicator:resizable];
173 [[wv window] setFram
[all...]
/macosx-10.10/Heimdal-398.1.2/Sample/GSSSampleOSX/
H A DAppDelegate.h12 @property (assign) IBOutlet NSWindow *window; variable
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DColorWheel.js54 this._finalCanvas.width = this._tintedCanvas.width = this._rawCanvas.width = dimension * window.devicePixelRatio;
55 this._finalCanvas.height = this._tintedCanvas.height = this._rawCanvas.height = dimension * window.devicePixelRatio;
88 return this._colorAtPointWithBrightness(this._crosshairPosition.x * window.devicePixelRatio, this._crosshairPosition.y * window.devicePixelRatio, this._brightness);
103 return this._colorAtPointWithBrightness(this._crosshairPosition.x * window.devicePixelRatio, this._crosshairPosition.y * window.devicePixelRatio, 1);
129 window.addEventListener("mousemove", this, true);
130 window.addEventListener("mouseup", this, true);
142 window.removeEventListener("mousemove", this, true);
143 window
[all...]
H A DSlider.js103 window.addEventListener("mousemove", this, true);
104 window.addEventListener("mouseup", this, true);
119 window.removeEventListener("mousemove", this, true);
120 window.removeEventListener("mouseup", this, true);
127 return window.webkitConvertPointFromPageToNode(this._element, new WebKitPoint(event.pageX, event.pageY));
/macosx-10.10/WebKit-7600.1.25/mac/Panels/
H A DWebPanelAuthenticationHandler.h42 - (void)startAuthentication:(NSURLAuthenticationChallenge *)challenge window:(NSWindow *)w;
/macosx-10.10/less-25/less/
H A Dscrsize.c49 static int get_winsize(dpy, window, p_width, p_height)
51 Window window;
59 if (!XGetWindowAttributes(dpy, window, &win_attributes))
61 if (!XGetWMNormalHints(dpy, window, &hints, &longjunk))
/macosx-10.10/vim-55/runtime/ftplugin/
H A Dqf.vim2 " Language: Vim's quickfix window
15 " Display the command that produced the list in the quickfix window:
/macosx-10.10/zlib-55/zlib/contrib/infback9/
H A Dinflate9.h36 /* sliding window */
37 unsigned char FAR *window; /* allocated sliding window, if needed */ member in struct:inflate_state
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/blt/
H A Dbarchart5.rb31 b = TkButton.new(Tk::BLT::Htext::Htext_Widget.window,
36 Tk::BLT::Htext::Htext_Widget.window.append(b)
46 Tk::BLT::Htext::Htext_Widget.window.append($graph,
54 b = TkButton.new(Tk::BLT::Htext::Htext_Widget.window,
57 Tk::BLT::Htext::Htext_Widget.window.append(b)
63 l = TkLabel.new(Tk::BLT::Htext::Htext_Widget.window, :bitmap=>'BLT')
64 Tk::BLT::Htext::Htext_Widget.window.append(l, :padx=>20)
/macosx-10.10/emacs-93/emacs/lisp/
H A Dx-dnd.el7 ;; Keywords: window, drag, drop
40 frame if the mouse isn't over a real window (i.e. menu bar, tool bar or
111 last window drag was in,
133 (defun x-dnd-get-state-cons-for-frame (frame-or-window)
134 "Return the entry in x-dnd-current-state for a frame or window."
135 (let* ((frame (if (framep frame-or-window) frame-or-window
136 (window-frame frame-or-window)))
143 (defun x-dnd-get-state-for-frame (frame-or-window)
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/WebInspector/
H A DWebNodeHighlight.mm111 [_highlightLayer setContentsScale:[[_targetView window] screenScale]]; // HiDPI.
134 ASSERT([_targetView window]);
139 if (!_highlightWindow || !_targetView || ![_targetView window])
142 [[_targetView window] addChildWindow:_highlightWindow ordered:NSWindowAbove];
156 WAKWindow *window = [_targetView window];
157 [[window hostLayer] addSublayer:_highlightLayer];
228 [[_targetView window] disableScreenUpdatesUntilFlush];
235 // This is especially visible when resizing the window, scrolling or with DHTML.
265 ASSERT([_targetView window]);
[all...]
/macosx-10.10/emacs-93/emacs/oldXMenu/
H A DActivate.c32 * parent window) and the mouse button event mask that
213 * Flush the window creation queue.
214 * This batches all window creates since lazy evaluation
227 XRaiseWindow(display, p_ptr->window);
229 XRaiseWindow(display, p_ptr->window);
239 XMapSubwindows(display, p_ptr->window);
286 XMapWindow(display, cur_p->window);
290 XMapWindow(display, p_ptr->window);
294 XMapWindow(display, p_ptr->window);
296 XRaiseWindow(display, cur_p->window); /* Mak
[all...]
/macosx-10.10/ruby-106/ruby/ext/curses/
H A Dcurses.c75 WINDOW *window; member in struct:windata
85 rb_raise(rb_eRuntimeError, "already closed window");
90 rb_raise(rb_eSecurityError, "Insecure: operation on untainted window");\
92 if ((winp)->window == 0) no_window();\
99 if (winp->window && winp->window != stdscr) delwin(winp->window);
100 winp->window = 0;
110 if (winp->window && winp->window !
120 prep_window(VALUE class, WINDOW *window) argument
1492 WINDOW *window; local
1517 WINDOW *window; local
2512 WINDOW *window; local
[all...]
/macosx-10.10/ruby-106/ruby/lib/rdoc/generator/template/json_index/js/
H A Dnavigation.js124 * Scrolls to the given element in the window. The second argument is
131 viewHeight = window.innerHeight;
132 viewScroll = window.scrollY;
135 window.scrollTo(window.scrollX, offset - viewHeight + height);
138 window.scrollTo(window.scrollX, offset);
/macosx-10.10/tcl-105/tk84/tk/win/
H A DtkWinWindow.c45 * global window table.
68 * previous HWND from from the window table.
74 twdPtr->window.winPtr = (TkWindow *) tkwin;
75 } else if (twdPtr->window.handle != NULL) {
77 (char *)twdPtr->window.handle);
82 * Insert the new HWND into the window table.
85 twdPtr->window.handle = hwnd;
98 * This function retrieves a Tk_Window from the window table
147 Tk_GetHWND(window)
148 Window window;
605 HWND window = Tk_GetHWND(w); local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DWebVideoFullscreenController.mm75 // Do not defer window creation, to make sure -windowNumber is created (needed by WebWindowScaleAnimation).
76 NSWindow *window = [[WebVideoFullscreenWindow alloc] initWithContentRect:NSZeroRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:NO];
77 self = [super initWithWindow:window];
78 [window release];
95 return (WebVideoFullscreenWindow *)[super window];
100 WebVideoFullscreenWindow *window = [self fullscreenWindow];
101 [(NSView*)[window contentView] setLayer:layer];
102 [[window contentView] setWantsLayer:YES];
107 WebVideoFullscreenWindow *window = [self fullscreenWindow];
108 [window setHasShado
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Dnsec.c76 unsigned int i, window; local
89 * space for the window identifiers and length octets.
132 for (window = 0; window < 256; window++) {
133 if (window * 256 > max_type)
136 if (bm[window * 32 + octet] != 0)
140 nsec_bits[0] = window;
145 memmove(&nsec_bits[2], &bm[window * 32], octet + 1);
197 unsigned int i, len, window; local
[all...]
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSHTMLFrameSetElementCustom.cpp55 if (JSDOMWindowShell* window = toJSDOMWindowShell(document->frame(), currentWorld(exec)))
56 return JSValue::encode(window);
/macosx-10.10/WebCore-7600.1.25/page/mac/
H A DChromeMac.mm48 if (![view window] || ![view superview] || ![view acceptsFirstResponder])
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DDragToAdjustController.js147 console.assert(window.event);
149 WebInspector.elementDragStart(this._element, this, this, window.event, "col-resize", window);
151 WebInspector.elementDragEnd(window.event);
163 window.addEventListener("mousedown", this, true);
164 window.addEventListener("contextmenu", this, true);
167 window.removeEventListener("mousedown", this, true);
168 window.removeEventListener("contextmenu", this, true);

Completed in 263 milliseconds

1234567891011>>