/external/chromium_org/chrome/browser/ui/cocoa/ |
browser_window_layout.mm | 261 CGFloat totalHeight = 0; 263 totalHeight += chrome::kTabStripHeight; 266 totalHeight += parameters_.toolbarHeight; 268 totalHeight += 274 totalHeight += parameters_.bookmarkBarHeight; 276 return totalHeight;
|
screen_capture_notification_ui_cocoa.mm | 164 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)];
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
PseudoGridView.java | 76 int totalHeight = 0; 95 totalHeight += maxHeight; 97 totalHeight += mVerticalSpacing; 101 setMeasuredDimension(width, getDefaultSize(totalHeight, heightMeasureSpec));
|
/external/chromium_org/chrome/browser/ui/cocoa/infobars/ |
infobar_container_controller.mm | 161 CGFloat totalHeight = 0; 163 totalHeight += [controller infobar]->total_height() - 166 return totalHeight;
|
/external/chromium_org/third_party/WebKit/Source/web/resources/ |
suggestionPicker.js | 143 var totalHeight = ListBorder; 150 totalHeight += node.offsetHeight; 152 maxHeight = totalHeight; 154 var desiredWindowHeight = totalHeight; 155 if (maxHeight !== 0 && totalHeight > maxHeight) {
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
NumPadKey.java | 142 int totalHeight = digitHeight + klondikeHeight; 143 int top = getHeight() / 2 - totalHeight / 2;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
Popover.js | 160 const totalHeight = container.offsetHeight; 168 var roomBelow = totalHeight - anchorBox.y - anchorBox.height; 186 if ((newElementPosition.y + newElementPosition.height + borderRadius >= totalHeight) && (arrowDirection !== WebInspector.Popover.Orientation.Top)) { 187 newElementPosition.height = totalHeight - borderRadius - newElementPosition.y; 189 newElementPosition.y = totalHeight - preferredHeight - borderRadius;
|
SuggestBox.js | 100 var totalHeight = container.offsetHeight; 102 var underHeight = totalHeight - anchorBox.y - anchorBox.height; 117 this._bottomSpacerElement.style.flexBasis = (totalHeight - anchorBox.y) + "px";
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLMarqueeElement.js | 254 var totalHeight = metrics.marqueeHeight + metrics.contentHeight; 279 parameters.distance = totalHeight; 284 parameters.distance = totalHeight;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/ |
shmproto.h | 99 CARD16 totalHeight B16;
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
shmproto.h | 99 CARD16 totalHeight B16;
|
/frameworks/base/core/java/android/widget/ |
TableRow.java | 193 int heightMeasureSpec, int totalHeight) { 221 lp .bottomMargin + totalHeight, lp.height); 248 totalWidth, heightMeasureSpec, totalHeight);
|
TabWidget.java | 157 int heightMeasureSpec, int totalHeight) { 166 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
|
TableLayout.java | 457 int heightMeasureSpec, int totalHeight) { 465 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
|
LinearLayout.java | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
TimelineView.js | 549 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) 709 if ((this._scrollTop + this._containerElementHeight) > totalHeight + 1) 710 this._containerElement.scrollTop = (totalHeight - this._containerElement.offsetHeight); [all...] |
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
PhotoViewController.java | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableCell.cpp | [all...] |
RenderTableSection.cpp | 352 static void updatePositionIncreasedWithRowHeight(long long extraHeight, long long rowHeight, long long totalHeight, int& accumulatedPositionIncrease, int& remainder) 356 accumulatedPositionIncrease += (extraHeight * rowHeight) / totalHeight; 357 remainder += (extraHeight * rowHeight) % totalHeight; [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
NotificationPanelView.java | [all...] |
/packages/apps/FMRadio/src/com/android/fmradio/views/ |
FmScroller.java | 294 int totalHeight = rownum * itemHeight + rownum * itemPadding; 297 totalHeight = Math.max(totalHeight, minGridViewHeight); 300 return totalHeight; [all...] |
/external/chromium_org/chrome/browser/resources/options/chromeos/ |
display_options.js | 743 var totalHeight = height + numDisplays * MIRRORING_OFFSET_PIXELS; 745 this.displaysView_.style.height = totalHeight + 'px'; [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
LinearLayoutCompat.java | [all...] |
/external/chromium_org/content/shell/renderer/test_runner/ |
web_test_proxy.cc | 522 int totalHeight = page_count * (page_size_in_pixels.height + 1) - 1; 526 page_size_in_pixels.width, totalHeight, is_opaque))); [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebLocalFrameImpl.cpp | 344 int totalHeight = numPages * (pageSizeInPixels.height() + 1) - 1; 348 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight)); [all...] |