Lines Matching refs:d

327 		,	d	= { width: $c.outerWidth - $c[0].clientWidth, height: 100 - $c[0].clientHeight };  class in $.layout.getScrollbarSize
329 window.scrollbarWidth = d.width;
330 window.scrollbarHeight = d.height;
331 return dim.match(/^(width|height)$/) ? d[dim] : d;
384 d = { css: {}, inset: {} } class in $.layout.getElementDimensions
385 , x = d.css // CSS hash
392 d.offsetLeft = off.left;
393 d.offsetTop = off.top;
401 d.inset[ei] = inset[ei] >= 0 ? inset[ei] : p; // any missing insetX value = paddingX
402 i[ei] = d.inset[ei] + b; // total offset of content from outer side
412 d.outerWidth = R($E.outerWidth());
413 d.outerHeight = R($E.outerHeight());
415 d.innerWidth = max(0, d.outerWidth - i.left - i.right);
416 d.innerHeight = max(0, d.outerHeight - i.top - i.bottom);
419 d.layoutWidth = R($E.innerWidth());
420 d.layoutHeight = R($E.innerHeight());
426 return d;
557 , d = $E.offset() variable
558 , T = d.top
559 , L = d.left
1232 , d = { class in cssMinDims
1237 if (dir === "horz") d.minSize = d.minHeight;
1238 if (dir === "vert") d.minSize = d.minWidth;
1239 return d;
1427 var d = { class in calcNewCenterPaneDims
1438 d.width = sC.innerWidth - d.left - d.right; // outerWidth
1439 d.height = sC.innerHeight - d.bottom - d.top; // outerHeight
1441 d.top += sC.inset.top;
1442 d.bottom += sC.inset.bottom;
1443 d.left += sC.inset.left;
1444 d.right += sC.inset.right;
1446 return d;
2013 var data, d, pane, key, val, i, c, o;
2058 d = options.panes;
2069 o[key] = d[key]; // pane-default
2074 o = options[pane] = $.extend(true, {}, d, o); // re-apply pane-specific opts AFTER pane-defaults
2099 , d = options.panes;
2102 if (!d.fxSettings) d.fxSettings = {};
2112 || d[sName] // options.panes.fxName_open
2114 || d.fxName // options.panes.fxName
2130 || d[sSpeed] // options.west.fxSpeed_open
2132 || d.fxSpeed // options.panes.fxSpeed
2141 , d.fxSettings // options.panes.fxSettings
2143 , d[sSettings] // options.panes.fxSettings_open
3063 , d = "layout"
3122 if (!$P.data(d))
5576 var d = {}; variable
5578d = sm.autoLoad( inst, inst.state, inst.options, inst.options.name || '' ); // try to get data fro…
5580 if (d && $.isPlainObject( d ) && !$.isEmptyObject( d ))
5581 inst.loadState(d);
5936 var d = $.layout.browserZoom.ratio();
5937 if (d !== s.browserZoom) {
5938 s.browserZoom = d;
5950 , d = document
5951 , dE = d.documentElement || d.body
5962 if (b.webkit && (r = d.body.getBoundingClientRect))
5963 return calc((r.left - r.right), d.body.offsetWidth);