HomeSort by relevance Sort by last modified time
    Searched defs:maxHeight (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRow.cpp 46 int maxHeight = 0;
52 if (blockHeight > maxHeight)
53 maxHeight = blockHeight;
57 if (box->offsetHeight() > maxHeight)
58 maxHeight = box->offsetHeight();
62 return maxHeight;
69 int maxHeight = 0;
80 if (!block->hasBase() && !block->isRenderMathMLOperator() && block->offsetHeight() > maxHeight)
81 maxHeight = block->offsetHeight();
82 if (block->hasBase() && block->nonOperatorHeight() > maxHeight)
    [all...]
RenderMathMLSquareRoot.cpp 79 int maxHeight = 0;
88 if (box->offsetHeight() > maxHeight)
89 maxHeight = box->offsetHeight();
95 if (!maxHeight)
96 maxHeight = style()->fontSize();
103 if (maxHeight > thresholdHeight && thresholdHeight) {
104 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight);
113 FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad);
114 FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * maxHeight);
168 int maxHeight = 0
    [all...]
RenderMathMLSubSup.cpp 156 int maxHeight = 0;
160 if (height > maxHeight)
161 maxHeight = height;
164 int heightDiff = m_scripts ? (m_scripts->offsetHeight() - maxHeight) / 2 : 0;
RenderMathMLRoot.cpp 112 int maxHeight = indexBox->offsetHeight();
114 if (!maxHeight)
115 maxHeight = style()->fontSize();
133 if (maxHeight > thresholdHeight && thresholdHeight) {
134 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight);
147 FloatPoint bottomLeft(start - gRadicalBottomPointXPos * frontWidth , ty + maxHeight + gRadicalBasePad);
148 FloatPoint topLeft(start - gRadicalTopLeftPointXPos * frontWidth , ty + gRadicalTopLeftPointYPos * maxHeight);
208 int maxHeight = toRenderBoxModelObject(lastChild())->offsetHeight();
214 if (!maxHeight)
215 maxHeight = style()->fontSize()
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java 38 protected float maxHeight;
84 this.maxHeight = max;
106 objectId = createShape(heightStickWidth, heightStickLength, bbuf, heightScale, minHeight, maxHeight, upAxis, flipQuadEdges);
112 private native long createShape(int heightStickWidth, int heightStickLength, ByteBuffer heightfieldData, float heightScale, float minHeight, float maxHeight, int upAxis, boolean flipQuadEdges);
126 capsule.write(maxHeight, "maxHeight", 0);
139 maxHeight = capsule.readFloat("maxHeight", 0);
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarPart.cpp 111 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
112 setHeight(max(minHeight, min(maxHeight, h)));
RenderFlexibleBox.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
StyleBoxData.h 53 Length maxHeight() const { return m_maxHeight; }
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarWindowView.java 53 int maxHeight = getResources().getDimensionPixelSize(R.dimen.notification_row_max_height);
54 mExpandHelper = new ExpandHelper(mContext, latestItems, minHeight, maxHeight);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsView.java 97 float maxHeight;
102 maxHeight = ((View) getParent()).getHeight();
103 if (DBG) Log.d(TAG, "Parent height=" + maxHeight);
105 maxHeight = getHeight();
106 if (DBG) Log.d(TAG, "This height=" + maxHeight);
111 int suggestions = Math.max(1, (int) Math.floor(maxHeight / suggestionHeight));
113 Log.d(TAG, "view height=" + maxHeight + " suggestion height=" +
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java 38 protected float maxHeight;
80 this.maxHeight = max;
94 HeightfieldTerrainShape shape = new HeightfieldTerrainShape(heightStickWidth, heightStickLength, heightfieldData, heightScale, minHeight, maxHeight, upAxis, flipQuadEdges);
113 capsule.write(maxHeight, "maxHeight", 0);
126 maxHeight = capsule.readFloat("maxHeight", 0);
  /frameworks/base/core/java/android/widget/
AbsoluteLayout.java 59 int maxHeight = 0;
79 maxHeight = Math.max(maxHeight, childBottom);
85 maxHeight += mPaddingTop + mPaddingBottom;
88 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
92 resolveSizeAndState(maxHeight, heightMeasureSpec, 0));
FrameLayout.java 303 int maxHeight = 0;
314 maxHeight = Math.max(maxHeight,
328 maxHeight += getPaddingTopWithForeground() + getPaddingBottomWithForeground();
331 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
337 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
342 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
StraightenFilter.java 141 float maxHeight = (float) Math.max(Math.abs(p0.y), Math.abs(p1.y));
144 mHeight / maxHeight);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 85 int maxHeight = 0;
96 maxHeight += getPaddingTop() + getPaddingBottom();
100 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
105 resolveSize(maxHeight, heightMeasureSpec));
  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 171 int maxHeight = max(baseline.height(), actual.height());
177 pixelsDifferent += (maxHeight - h) * maxWidth;
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 178 int maxHeight = 0;
188 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
196 maxHeight += mPaddingTop + mPaddingBottom;
199 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
203 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /packages/apps/Browser/src/com/android/browser/
WallpaperHandler.java 108 int maxHeight = wm.getDesiredMinimumHeight();
109 // Give maxWidth and maxHeight some leeway
111 maxHeight *= 1.25;
116 while (bmWidth > maxWidth || bmHeight > maxHeight) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 180 int maxHeight = pixelConverter.convertHeightInCharsToPixels(heightLimitChars);
181 expandShellToShowFullPage_Height(browser, maxHeight);
189 private static void expandShellToShowFullPage_Height(Browser browser, int maxHeight) {
199 int useHeight = Math.min(contentHeight + ((EnvironmentUtils.IS_LINUX) ? 2 : 10), maxHeight);
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 88 final int maxHeight = textView.getHeight();
102 final int maxLinesPerPage = (int)(maxHeight / fontHeight);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContainer.java 184 final int maxHeight = MeasureSpec.getSize(heightMeasureSpec);
187 maxHeight));
SizeAdaptiveLayout.java 156 if (DEBUG) Log.d(TAG, "active min: " + lp.minHeight + " max: " + lp.maxHeight);
175 if (lp.maxHeight != SizeAdaptiveLayout.LayoutParams.UNBOUNDED) {
176 height = Math.min(height, lp.maxHeight);
205 " max: " + lp.maxHeight);
206 if (lp.maxHeight == SizeAdaptiveLayout.LayoutParams.UNBOUNDED &&
210 if (lp.maxHeight > tallestViewSize) {
211 tallestViewSize = lp.maxHeight;
219 heightSize >= lp.minHeight && heightSize <= lp.maxHeight) {
324 public int maxHeight;
327 * Constant value for maxHeight that indicates there is not maximum height
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
TargetDrawable.java 155 int maxHeight = 0;
159 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
162 + maxWidth + "x" + maxHeight);
163 d.setBounds(0, 0, maxWidth, maxHeight);
167 + maxWidth + "x" + maxHeight);
168 childDrawable.setBounds(0, 0, maxWidth, maxHeight);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
SharePopup.java 172 float maxHeight = mPreviewFrame.getHeight() - vPaddingRootView;
176 maxWidth = maxHeight;
177 maxHeight = temp;
179 float actualAspect = maxWidth / maxHeight;
191 params.width = Math.round(maxHeight * desiredAspect);
192 params.height = Math.round(maxHeight);
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp     [all...]

Completed in 3409 milliseconds

1 2 3