Home
last modified time | relevance | path

Searched refs:totalHeight (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/resources/
DsuggestionPicker.js143 var totalHeight = ListBorder;
150 totalHeight += node.offsetHeight;
152 maxHeight = totalHeight;
154 var desiredWindowHeight = totalHeight;
155 if (maxHeight !== 0 && totalHeight > maxHeight) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
DPopover.js160 const totalHeight = container.offsetHeight;
168 var roomBelow = totalHeight - anchorBox.y - anchorBox.height;
186 …if ((newElementPosition.y + newElementPosition.height + borderRadius >= totalHeight) && (arrowDire…
187 newElementPosition.height = totalHeight - borderRadius - newElementPosition.y;
189 newElementPosition.y = totalHeight - preferredHeight - borderRadius;
DSuggestBox.js100 var totalHeight = container.offsetHeight;
102 var underHeight = totalHeight - anchorBox.y - anchorBox.height;
117 this._bottomSpacerElement.style.flexBasis = (totalHeight - anchorBox.y) + "px";
/external/chromium_org/chrome/browser/ui/cocoa/
Dbrowser_window_layout.mm261 CGFloat totalHeight = 0;
263 totalHeight += chrome::kTabStripHeight;
266 totalHeight += parameters_.toolbarHeight;
268 totalHeight +=
274 totalHeight += parameters_.bookmarkBarHeight;
276 return totalHeight;
Dscreen_capture_notification_ui_cocoa.mm164 CGFloat totalHeight =
173 (totalHeight - gripHeight) / 2)];
195 (totalHeight - NSHeight([statusTextField frame])) / 2)];
205 [content setFrame:NSMakeRect(0, 0, totalWidth, totalHeight)];
214 (totalHeight - NSHeight([minimizeButton_ frame])) / 2)];
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLMarqueeElement.js254 var totalHeight = metrics.marqueeHeight + metrics.contentHeight;
279 parameters.distance = totalHeight;
284 parameters.distance = totalHeight;
/external/chromium_org/chrome/browser/ui/cocoa/infobars/
Dinfobar_container_controller.mm161 CGFloat totalHeight = 0;
163 totalHeight += [controller infobar]->total_height() -
166 return totalHeight;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
DTimelineView.js549 var totalHeight = Math.max(this._containerElementHeight, rowsHeight);
551 this._recordsView.mainElement().style.height = totalHeight + "px";
552 this._recordsView.sidebarElement().style.height = totalHeight + "px";
553 this._recordsView.resizerElement().style.height = totalHeight + "px";
706 _adjustScrollPosition: function(totalHeight) argument
709 if ((this._scrollTop + this._containerElementHeight) > totalHeight + 1)
710 this._containerElement.scrollTop = (totalHeight - this._containerElement.offsetHeight);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableCell.cpp1244 LayoutUnit totalHeight = logicalHeight(); in scrollbarsChanged() local
1245 …LayoutUnit heightWithoutIntrinsicPadding = totalHeight - intrinsicPaddingBefore() - intrinsicPaddi… in scrollbarsChanged()
1246 totalHeight -= scrollbarHeight; in scrollbarsChanged()
1247 LayoutUnit newBeforePadding = (totalHeight - heightWithoutIntrinsicPadding) / 2; in scrollbarsChanged()
1248 LayoutUnit newAfterPadding = totalHeight - heightWithoutIntrinsicPadding - newBeforePadding; in scrollbarsChanged()
DRenderTableSection.cpp352 …sedWithRowHeight(long long extraHeight, long long rowHeight, long long totalHeight, int& accumulat… in updatePositionIncreasedWithRowHeight() argument
356 accumulatedPositionIncrease += (extraHeight * rowHeight) / totalHeight; in updatePositionIncreasedWithRowHeight()
357 remainder += (extraHeight * rowHeight) % totalHeight; in updatePositionIncreasedWithRowHeight()
839 int totalHeight = m_rowPos[totalRows] + extraLogicalHeight; in distributeExtraLogicalHeightToPercentRows() local
845 …int toAdd = std::min<int>(extraLogicalHeight, (totalHeight * m_grid[r].logicalHeight.percent() / 1… in distributeExtraLogicalHeightToPercentRows()
/external/chromium_org/chrome/browser/resources/options/chromeos/
Ddisplay_options.js743 var totalHeight = height + numDisplays * MIRRORING_OFFSET_PIXELS;
745 this.displaysView_.style.height = totalHeight + 'px';
/external/chromium_org/content/shell/renderer/test_runner/
Dweb_test_proxy.cc522 int totalHeight = page_count * (page_size_in_pixels.height + 1) - 1; in CapturePixelsForPrinting() local
526 page_size_in_pixels.width, totalHeight, is_opaque))); in CapturePixelsForPrinting()
/external/chromium_org/third_party/WebKit/Source/web/
DWebLocalFrameImpl.cpp344 int totalHeight = numPages * (pageSizeInPixels.height() + 1) - 1; in spoolAllPagesWithBoundaries() local
348 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight)); in spoolAllPagesWithBoundaries()