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

1 2

  /external/webkit/Source/WebCore/rendering/
RenderApplet.cpp 68 int contentHeight = style()->height().isFixed() ? style()->height().value() :
80 setWidget(frame->loader()->subframeLoader()->createJavaAppletWidget(IntSize(contentWidth, contentHeight), element, m_args));
RenderMarquee.cpp 140 int contentHeight = box->maxYLayoutOverflow() - box->borderTop() + box->paddingBottom();
144 return min(contentHeight - clientHeight, 0);
150 return max(contentHeight - clientHeight, 0);
152 return contentHeight;
RenderBox.h 117 IntRect contentBoxRect() const { return IntRect(borderLeft() + paddingLeft(), borderTop() + paddingTop(), contentWidth(), contentHeight()); }
166 int contentHeight() const { return clientHeight() - paddingTop() - paddingBottom(); }
167 int contentLogicalWidth() const { return style()->isHorizontalWritingMode() ? contentWidth() : contentHeight(); }
168 int contentLogicalHeight() const { return style()->isHorizontalWritingMode() ? contentHeight() : contentWidth(); }
RenderSlider.cpp 113 thumbRect.setHeight(thumb->style()->height().calcMinValue(contentHeight()));
RenderMenuList.cpp 241 contentHeight());
246 m_innerBlock->contentHeight());
RenderFileUploadControl.cpp 256 int iconY = ty + borderTop() + paddingTop() + (contentHeight() - iconHeight) / 2;
RenderFlexibleBox.cpp 435 childY += child->marginTop() + max(0, (contentHeight() - (child->height() + child->marginTop() + child->marginBottom())) / 2);
446 childY += contentHeight() - child->marginBottom() - child->height();
708 remainingSpace = borderTop() + paddingTop() + contentHeight() - yPos;
    [all...]
RenderImage.cpp 244 int cHeight = contentHeight();
  /frameworks/base/core/java/android/webkit/
ViewStateSerializer.java 58 int contentHeight = dis.readInt();
64 draw.mContentSize = new Point(contentWidth, contentHeight);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TiledTexture.java 116 public int contentHeight;
121 contentHeight = height;
270 src.set(0, 0, t.contentWidth, t.contentHeight);
287 src.set(0, 0, t.contentWidth, t.contentHeight);
308 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 229 protected int positionChild(View child, int x, int y, int contentHeight, boolean reverse) {
232 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...]
ScrollingTabContainerView.java 184 public void setContentHeight(int contentHeight) {
185 mContentHeight = contentHeight;
  /external/chromium/chrome/browser/resources/net_internals/
tabswitcherview.js 43 var contentHeight = height - this.tabHandleView_.getHeight();
48 tab.contentView.setGeometry(left, contentTop, width, contentHeight);
  /external/webkit/Source/WebCore/loader/
SubframeLoader.cpp 169 size = IntSize(renderer->contentWidth(), renderer->contentHeight());
345 IntSize contentSize(renderer->contentWidth(), renderer->contentHeight());
  /external/webkit/Source/WebCore/html/shadow/
SliderThumbElement.cpp 127 trackSize = input->renderBox()->contentHeight() - renderBox()->height();
  /external/webkit/Source/WebCore/html/
HTMLImageElement.cpp 303 return box ? adjustForAbsoluteZoom(box->contentHeight(), box) : 0;
  /frameworks/base/core/java/android/widget/
ScrollView.java     [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.h 488 int contentHeight, float xPercentInDoc, float xPercentInView,
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 517 int contentHeight = qMax(fm.lineSpacing(), 14) + 2;
519 &styleOption, QSize(0, contentHeight), 0);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java     [all...]
  /external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.cpp 387 if (r && r->isTableCell() && toRenderTableCell(r)->contentHeight() <= 0) {
    [all...]

Completed in 555 milliseconds

1 2