Searched refs:availWidth (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DScreen.idl40 readonly attribute unsigned long availWidth;
H A DScreen.h60 unsigned availWidth() const;
H A DScreen.cpp112 unsigned Screen::availWidth() const function in class:blink::Screen
/external/chromium_org/chrome/browser/resources/chromeos/first_run/app/
H A Dmain.js14 bounds.left = Math.round(0.5 * (window.screen.availWidth - bounds.width));
/external/chromium_org/ui/file_manager/file_manager/background/js/
H A Dbackground.js422 candidateBounds.left = nextRight >= screen.availWidth ?
423 nextRight % screen.availWidth : nextLeft;
615 left: Math.round(window.screen.availWidth * 0.1),
617 width: Math.round(window.screen.availWidth * 0.8),
/external/chromium_org/ui/file_manager/video_player/js/
H A Dvideo_player.js456 var shrinkX = newWidth / window.screen.availWidth;
474 oldLeft = window.screen.availWidth / 2;
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DpickerCommon.js118 var availRect = new Rectangle(window.screen.availLeft, window.screen.availTop, window.screen.availWidth, window.screen.availHeight);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp2829 LayoutUnit availWidth = desiredColumnWidth; local
2836 desiredColumnWidth = std::max<LayoutUnit>(0, (availWidth - ((desiredColumnCount - 1) * colGap)) / desiredColumnCount);
2838 desiredColumnCount = std::max<LayoutUnit>(1, (availWidth + colGap) / (colWidth + colGap));
2839 desiredColumnWidth = ((availWidth + colGap) / desiredColumnCount) - colGap;
2841 desiredColumnCount = std::max<LayoutUnit>(std::min<LayoutUnit>(colCount, (availWidth + colGap) / (colWidth + colGap)), 1);
2842 desiredColumnWidth = ((availWidth + colGap) / desiredColumnCount) - colGap;

Completed in 1889 milliseconds