HomeSort by relevance Sort by last modified time
    Searched full:maxheight (Results 1 - 25 of 172) sorted by null

1 2 3 4 5 6 7

  /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...]
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...]
RenderMathMLSubSup.cpp 156 int maxHeight = 0;
160 if (height > maxHeight)
161 maxHeight = height;
164 int heightDiff = m_scripts ? (m_scripts->offsetHeight() - maxHeight) / 2 : 0;
  /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=" +
  /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));
  /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 286 int maxHeight = 0;
297 maxHeight = Math.max(maxHeight,
311 maxHeight += getPaddingTopWithForeground() + getPaddingBottomWithForeground();
314 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
320 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
325 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
TargetDrawable.java 138 int maxHeight = 0;
142 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
145 + maxWidth + "x" + maxHeight);
146 d.setBounds(0, 0, maxWidth, maxHeight);
150 + maxWidth + "x" + maxHeight);
151 childDrawable.setBounds(0, 0, maxWidth, maxHeight);
  /packages/apps/Email/res/values/
attrs.xml 22 <attr name="maxHeight" format="dimension"/>
  /external/quake/quake/src/QW/client/
d_local.h 97 extern int d_scantable[MAXHEIGHT];
105 extern short *zspantable[MAXHEIGHT];
d_modech.c 29 int d_scantable[MAXHEIGHT];
30 short *zspantable[MAXHEIGHT];
  /external/quake/quake/src/WinQuake/
d_local.h 97 extern int d_scantable[MAXHEIGHT];
105 extern short *zspantable[MAXHEIGHT];
d_modech.cpp 29 int d_scantable[MAXHEIGHT];
30 short *zspantable[MAXHEIGHT];
r_shared.h 33 #define MAXHEIGHT 1024
35 #define MAXDIMENSION ((MAXHEIGHT > MAXWIDTH) ? MAXHEIGHT : MAXWIDTH)
  /packages/apps/Email/src/com/android/email/view/
SizeBoundingFrameLayout.java 71 public void setMaxHeight(int maxHeight) {
72 mMaxHeight = maxHeight;
  /development/samples/ApiDemos/res/layout/
image_view_1.xml 49 android:maxHeight="50dip"
64 android:maxHeight="70dip"
108 android:maxHeight="50dip"
123 android:maxHeight="70dip"
  /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)));
  /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) {
  /packages/apps/Gallery2/res/layout/
photoeditor_color_seekbar.xml 23 android:maxHeight="@dimen/seekbar_height"
photoeditor_scale_seekbar.xml 23 android:maxHeight="@dimen/seekbar_height"
  /packages/apps/Launcher2/res/layout-sw600dp/
external_widget_drop_list_item.xml 29 android:maxHeight="32dp"
  /packages/apps/Mms/res/layout/
mms_layout_view.xml 34 android:maxHeight="178dip"
  /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/Camera/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);

Completed in 494 milliseconds

1 2 3 4 5 6 7