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

1 2 3 4

  /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=" +
  /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,
LinearLayout.java     [all...]
  /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/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,
  /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);
  /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)));
  /external/webkit/Source/WebCore/rendering/style/
StyleBoxData.h 53 Length maxHeight() const { return m_maxHeight; }
  /packages/apps/Email/src/com/android/email/view/
SizeBoundingFrameLayout.java 71 public void setMaxHeight(int maxHeight) {
72 mMaxHeight = maxHeight;
  /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/Camera/src/com/android/camera/ui/
SharePopup.java 202 float maxHeight = mPreviewFrame.getHeight() - vPaddingRootView;
206 maxWidth = maxHeight;
207 maxHeight = temp;
209 float actualAspect = maxWidth / maxHeight;
221 params.width = Math.round(maxHeight * desiredAspect);
222 params.height = Math.round(maxHeight);
  /system/media/mca/filterpacks/imageproc/java/
StraightenFilter.java 141 float maxHeight = (float) Math.max(Math.abs(p0.y), Math.abs(p1.y));
144 mHeight / maxHeight);
  /external/skia/src/core/
SkRegion_path.cpp 29 bool init(int maxHeight, int maxTransitions);
100 bool SkRgnBuilder::init(int maxHeight, int maxTransitions) {
101 if ((maxHeight | maxTransitions) < 0) {
108 count.setMul(maxHeight + 1, 3 + maxTransitions);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContainer.java 184 final int maxHeight = MeasureSpec.getSize(heightMeasureSpec);
187 maxHeight));
  /frameworks/base/libs/rs/
rsFont.h 172 CacheTextureLine(uint32_t maxHeight, uint32_t maxWidth, uint32_t currentRow, uint32_t currentCol)
173 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
  /frameworks/base/media/java/android/media/videoeditor/
MediaProperties.java 383 final int maxHeight = veProfile.maxOutputVideoFrameHeight;
391 (resolutions[i].second <= maxHeight)) {
  /frameworks/base/media/java/android/media/
RemoteControlClient.java     [all...]
  /system/media/wilhelm/src/android/
VideoCodec_to_android.cpp 169 pDescr->maxHeight = 0;
  /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/view/
IWindowManager.aidl 211 Bitmap screenshotApplications(IBinder appToken, int maxWidth, int maxHeight);

Completed in 1022 milliseconds

1 2 3 4