HomeSort by relevance Sort by last modified time
    Searched refs:contentHeight (Results 1 - 25 of 44) sorted by null

1 2

  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MailWebView.java 66 final int contentHeight = getContentHeight();
67 if (contentHeight != mCachedContentHeight) {
68 mCachedContentHeight = contentHeight;
69 mSizeChangeListener.onHeightChange(contentHeight);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AbsActionBarView.java 192 protected int positionChild(View child, int x, int y, int contentHeight) {
195 int childTop = y + (contentHeight - childHeight) / 2;
202 protected int positionChildInverse(View child, int x, int y, int contentHeight) {
205 int childTop = y + (contentHeight - childHeight) / 2;
ActionBarContextView.java 380 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom();
386 x += positionChild(mClose, x, y, contentHeight);
392 x += positionChild(mTitleLayout, x, y, contentHeight);
396 x += positionChild(mCustomView, x, y, contentHeight);
402 x -= positionChildInverse(mMenuView, x, y, contentHeight);
ActionBarView.java     [all...]
ScrollingTabContainerView.java 184 public void setContentHeight(int contentHeight) {
185 mContentHeight = contentHeight;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMarquee.cpp 146 int contentHeight = layoutOverflowRect().maxY() - borderTop() + paddingBottom();
150 return min(contentHeight - clientHeight, 0);
156 return max(contentHeight - clientHeight, 0);
158 return contentHeight;
RenderButton.cpp 128 return marginTop() + borderTop() + paddingTop() + contentHeight();
RenderDetailsMarker.cpp 109 result.transform(AffineTransform().scale(contentWidth(), contentHeight()));
RenderBox.h 150 LayoutRect paddingBoxRect() const { return LayoutRect(borderLeft(), borderTop(), contentWidth() + paddingLeft() + paddingRight(), contentHeight() + paddingTop() + paddingBottom()); }
155 LayoutRect contentBoxRect() const { return LayoutRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); }
207 LayoutUnit contentHeight() const { return clientHeight() - paddingTop() - paddingBottom(); }
208 LayoutUnit contentLogicalWidth() const { return style()->isHorizontalWritingMode() ? contentWidth() : contentHeight(); }
209 LayoutUnit contentLogicalHeight() const { return style()->isHorizontalWritingMode() ? contentHeight() : contentWidth(); }
313 // Right now, these are different than contentHeight/contentWidth because they still
    [all...]
RenderRegion.cpp 58 return m_flowThread->isHorizontalWritingMode() ? contentWidth() : contentHeight();
68 return m_flowThread->isHorizontalWritingMode() ? contentHeight() : contentWidth();
87 return m_flowThread->isHorizontalWritingMode() ? contentHeight() : contentWidth();
RenderImage.cpp 279 LayoutUnit cHeight = contentHeight();
551 IntSize containerSize(contentWidth(), contentHeight());
RenderMenuList.cpp 274 contentHeight());
279 m_innerBlock->contentHeight());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAppletElement.cpp 109 LayoutUnit contentHeight = renderer->style()->height().isFixed() ? LayoutUnit(renderer->style()->height().value()) :
169 widget = frame->loader()->client()->createJavaAppletWidget(roundedIntSize(LayoutSize(contentWidth, contentHeight)), this, baseURL, paramNames, paramValues);
ImageInputType.cpp 195 return box ? adjustForAbsoluteZoom(box->contentHeight(), box) : 0;
HTMLPlugInImageElement.cpp 263 IntSize contentSize = roundedIntSize(LayoutSize(renderer->contentWidth(), renderer->contentHeight()));
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwLayoutSizerTest.java 70 final int contentHeight = 389;
72 layoutSizer.onContentSizeChanged(contentWidth, contentHeight);
79 assertEquals(contentHeight, delegate.measuredHeight & View.MEASURED_SIZE_MASK);
372 int contentHeight = 6;
375 layoutSizer.onContentSizeChanged(contentWidth, contentHeight);
384 assertFalse((int) Math.ceil(measuredHeight / dipScale) == contentHeight);
401 int contentHeight = 400;
403 int atMostHeight = contentHeight * dipAndPageScale;
406 layoutSizer.onContentSizeChanged(contentWidth, contentHeight);
450 int contentHeight = 400
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SuggestBox.js 119 var contentHeight = this.contentElement.offsetHeight;
142 var maxHeight = this._maxItemsHeight ? contentHeight * this._maxItemsHeight / this._length : Math.max(underHeight, aboveHeight) - spacer;
143 var height = Math.min(contentHeight, maxHeight - suggestBoxPaddingY) + suggestBoxPaddingY;
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
TiledTexture.java 118 public int contentHeight;
123 contentHeight = height;
285 src.set(0, 0, t.contentWidth, t.contentHeight);
304 src.set(0, 0, t.contentWidth, t.contentHeight);
327 src.set(0, 0, t.contentWidth, t.contentHeight);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 193 int contentHeight;
196 contentHeight = getContentScrollHeight(browser);
199 int useHeight = Math.min(contentHeight + ((EnvironmentUtils.IS_LINUX) ? 2 : 10), maxHeight);
  /frameworks/base/core/java/com/android/internal/widget/
AbsActionBarView.java 236 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) {
239 int childTop = y + (contentHeight - childHeight) / 2;
ActionBarContextView.java 460 final int contentHeight = b - t - getPaddingTop() - getPaddingBottom();
467 x += positionChild(mClose, x, y, contentHeight, isLayoutRtl);
479 x += positionChild(mTitleLayout, x, y, contentHeight, isLayoutRtl);
483 x += positionChild(mCustomView, x, y, contentHeight, isLayoutRtl);
489 x += positionChild(mMenuView, x, y, contentHeight, !isLayoutRtl);
ActionBarView.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintCustomContent.java 168 final int contentHeight = (int) (density * (float) newAttributes.getMediaSize()
170 if (mRenderPageHeight != contentHeight) {
171 mRenderPageHeight = contentHeight;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SliderThumbElement.cpp 189 LayoutUnit availableExtent = isVertical ? track->contentHeight() : track->contentWidth();
194 thumbLocation.setY(thumbLocation.y() + track->contentHeight() - thumb->height() - offset);
278 trackSize = trackElement->renderBox()->contentHeight() - renderBox()->height();
  /external/chromium/chrome/browser/resources/net_internals/
tabswitcherview.js 43 var contentHeight = height - this.tabHandleView_.getHeight();
48 tab.contentView.setGeometry(left, contentTop, width, contentHeight);

Completed in 1514 milliseconds

1 2