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

1 2

  /external/webkit/WebCore/rendering/
RenderScrollbarPart.cpp 105 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
106 setHeight(max(minHeight, min(maxHeight, h)));
RootInlineBox.cpp 224 int maxHeight = maxAscent + maxDescent;
227 placeBoxesVertically(heightOfBlock, maxHeight, maxAscent, strictMode, lineTop, lineBottom);
231 heightOfBlock += maxHeight;
RenderBox.cpp 99 if (style() && (style()->height().isPercent() || style()->minHeight().isPercent() || style()->maxHeight().isPercent()))
168 if (needsLayout() && oldStyle && (oldStyle->height().isPercent() || oldStyle->minHeight().isPercent() || oldStyle->maxHeight().isPercent()))
    [all...]
  /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 resolveSize(maxHeight, heightMeasureSpec));
FrameLayout.java 243 int maxHeight = 0;
252 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
258 maxHeight += mPaddingTop + mPaddingBottom + mForegroundPaddingTop + mForegroundPaddingBottom;
261 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
267 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
272 resolveSize(maxHeight, heightMeasureSpec));
LinearLayout.java 614 int maxHeight = 0;
751 maxHeight = Math.max(maxHeight, childHeight);
781 maxHeight = Math.max(maxHeight, ascent + descent);
    [all...]
AutoCompleteTextView.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 86 int maxHeight = 0;
97 maxHeight += getPaddingTop() + getPaddingBottom();
101 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
106 resolveSize(maxHeight, heightMeasureSpec));
  /development/simulator/app/
PhoneWindow.cpp 201 int maxHeight = 0;
218 if (maxHeight < pViewInfo[i].GetHeight())
219 maxHeight = pViewInfo[i].GetHeight();
294 SetClientSize(fullWidth, maxHeight + kBorder * 2);
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
ZoomIndicator.java 54 int maxHeight = 0;
61 if (maxHeight < tex.getHeight()) maxHeight = tex.getHeight();
64 .setPreferredContentSize(maxWidth, maxHeight)
ZoomController.java 172 int maxHeight = 0;
177 maxHeight = Math.max(maxHeight, mTickLabels[i].getHeight());
180 mMaxLabelHeight = maxHeight;
  /external/webkit/WebCore/css/
CSSComputedStyleDeclaration.cpp     [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
GridQuad.java 188 float maxHeight = width / viewAspect;
189 if (height > maxHeight) {
191 float ratio = height / maxHeight;
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/inc/
OMX_JpegDec_Utils.h 493 OMX_U32 maxHeight; /*Maximum height of image that can be decoded*/
  /external/webkit/WebCore/rendering/style/
RenderStyle.h 379 Length maxHeight() const { return box->max_height; }
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java     [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
jfreechart-1.0.9.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 846 milliseconds

1 2