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

1 2 3 4 5

  /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));
  /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...]
ImageView.java 214 * true 2) set maxWidth and maxHeight to 100 3) set the height and width layout params to
236 * true 2) set maxWidth and maxHeight to 100 3) set the height and width layout params to
245 * @param maxHeight maximum height for this view
250 public void setMaxHeight(int maxHeight) {
251 mMaxHeight = maxHeight;
    [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/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];
d_ifacea.h 41 #define MAXHEIGHT 1024
r_local.h 262 extern edge_t *newedges[MAXHEIGHT];
263 extern edge_t *removeedges[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)
d_ifacea.h 41 #define MAXHEIGHT 1024
r_local.h 261 extern edge_t *newedges[MAXHEIGHT];
262 extern edge_t *removeedges[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/WebCore/rendering/
RenderScrollbarPart.cpp 105 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
106 setHeight(max(minHeight, min(maxHeight, h)));
RenderVideo.cpp 234 int maxH = style()->maxHeight().isUndefined() ? height : calcReplacedHeightUsing(style()->maxHeight());
RootInlineBox.cpp 224 int maxHeight = maxAscent + maxDescent;
227 placeBoxesVertically(heightOfBlock, maxHeight, maxAscent, strictMode, lineTop, lineBottom);
231 heightOfBlock += maxHeight;
  /packages/apps/Mms/res/layout/
mms_layout_view.xml 34 android:maxHeight="178dip"
  /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);
  /packages/apps/Gallery3D/src/com/cooliris/media/
GridQuad.java 188 float maxHeight = width / viewAspect;
189 if (height > maxHeight) {
191 float ratio = height / maxHeight;
  /external/webkit/WebCore/bindings/objc/
DOMCSS.h 192 - (NSString *)maxHeight;
193 - (void)setMaxHeight:(NSString *)maxHeight;
  /frameworks/base/core/res/res/values/
styles.xml 305 <item name="android:maxHeight">48dip</item>
313 <item name="android:maxHeight">76dip</item>
321 <item name="android:maxHeight">16dip</item>
345 <item name="android:maxHeight">20dip</item>
353 <item name="android:maxHeight">20dip</item>
364 <item name="android:maxHeight">57dip</item>
373 <item name="android:maxHeight">38dip</item>
383 <item name="android:maxHeight">14dip</item>
    [all...]

Completed in 1722 milliseconds

1 2 3 4 5