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

1 2 3 4

  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_HeightfieldCollisionShape.cpp 50 (JNIEnv * env, jobject object, jint heightStickWidth, jint heightStickLength, jobject heightfieldData, jfloat heightScale, jfloat minHeight, jfloat maxHeight, jint upAxis, jboolean flipQuadEdges) {
53 btHeightfieldTerrainShape* shape=new btHeightfieldTerrainShape(heightStickWidth, heightStickLength, data, heightScale, minHeight, maxHeight, upAxis, PHY_FLOAT, flipQuadEdges);
  /packages/apps/Launcher2/src/com/android/launcher2/
PendingAddItemInfo.java 52 int minHeight;
71 minHeight = i.minHeight;
85 minHeight = copy.minHeight;
LauncherAppWidgetInfo.java 44 int minHeight = -1;
60 // to indicate that they should be calculated based on the layout and minWidth/minHeight
InstallWidgetReceiver.java 152 mTargetLayout.rectToCell(widgetInfo.minWidth, widgetInfo.minHeight, widgetSpan);
  /frameworks/base/core/tests/coretests/src/com/android/internal/widget/
SizeAdaptiveLayoutTest.java 83 int height = (int) lp.minHeight + 10;
100 int height = (int) lp.minHeight;
117 int height = (int) lp.minHeight - 10;
136 int height = (int) (lp.minHeight + 10);
153 int height = (int) lp.minHeight + 10;
169 int height = (int) lp.minHeight - 10;
201 int height = (int) lp.minHeight;
217 int height = (int) lp.minHeight - 10;
249 int height = (int) lp.minHeight;
267 smallParams.maxHeight + 10 < largeParams.minHeight);
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java 37 protected float minHeight;
83 this.minHeight = min;
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);
125 capsule.write(minHeight, "minHeight", 0);
138 minHeight = capsule.readFloat("minHeight", 0);
  /frameworks/base/core/java/com/android/internal/widget/
SizeAdaptiveLayout.java 156 if (DEBUG) Log.d(TAG, "active min: " + lp.minHeight + " max: " + lp.maxHeight);
174 int height = Math.max(heightIn, lp.minHeight);
204 " with min: " + lp.minHeight +
214 if (lp.minHeight < smallestViewSize) {
215 smallestViewSize = lp.minHeight;
219 heightSize >= lp.minHeight && heightSize <= lp.maxHeight) {
318 public int minHeight;
347 minHeight = a.getDimensionPixelSize(MIN_VALID_HEIGHT, 0);
348 if (DEBUG) Log.d(TAG, "got minHeight of: " + minHeight);
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java 37 protected float minHeight;
79 this.minHeight = min;
94 HeightfieldTerrainShape shape = new HeightfieldTerrainShape(heightStickWidth, heightStickLength, heightfieldData, heightScale, minHeight, maxHeight, upAxis, flipQuadEdges);
112 capsule.write(minHeight, "minHeight", 0);
125 minHeight = capsule.readFloat("minHeight", 0);
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 79 * <p>This field corresponds to the <code>android:minHeight</code> attribute in
82 public int minHeight;
95 * is greater than minHeight or if vertical resizing isn't enabled (see {@link #resizeMode}).
209 this.minHeight = in.readInt();
234 out.writeInt(this.minHeight);
259 that.minHeight = this.minHeight;
AppWidgetManager.java 553 info.minHeight =
554 TypedValue.complexToDimensionPixelSize(info.minHeight, mDisplayMetrics);
580 info.minHeight =
581 TypedValue.complexToDimensionPixelSize(info.minHeight, mDisplayMetrics);
    [all...]
AppWidgetHostView.java 248 * @param minHeight The maximum height in dips that the widget will be displayed at.
253 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth,
255 updateAppWidgetSize(newOptions, minWidth, minHeight, maxWidth, maxHeight, false);
261 public void updateAppWidgetSize(Bundle newOptions, int minWidth, int minHeight, int maxWidth,
277 int newMinHeight = minHeight - (ignorePadding ? 0 : yPaddingDips);
AppWidgetHost.java 347 appWidget.minHeight =
348 TypedValue.complexToDimensionPixelSize(appWidget.minHeight, mDisplayMetrics);
  /external/webkit/Source/WebCore/rendering/style/
StyleBoxData.h 50 Length minHeight() const { return m_minHeight; }
  /packages/apps/DeskClock/src/com/android/alarmclock/
WidgetUtils.java 67 int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT);
70 return (minHeight > neededSize);
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarPart.cpp 110 int minHeight = calcScrollbarThicknessUsing(style()->minHeight(), visibleSize);
112 setHeight(max(minHeight, min(maxHeight, h)));
RenderFlexibleBox.cpp 633 int minHeight = height() + toAdd;
699 if (height() < minHeight)
700 setHeight(minHeight);
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 162 public int add(GL10 gl, Drawable drawable, int minWidth, int minHeight) {
163 return add(gl, drawable, null, null, minWidth, minHeight);
175 int minWidth, int minHeight) {
184 minHeight = Math.max(minHeight, background.getMinimumHeight());
201 int height = Math.max(minHeight, textHeight + padHeight);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
feed.js 65 document.querySelector('body').style.minHeight = 0;
141 var minHeight = 19;
142 minHeight = (minHeight * (count - 1)) + 100;
143 document.querySelector('body').style.minHeight = minHeight + 'px';
  /external/webkit/Source/WebCore/platform/haiku/
RenderThemeHaiku.cpp 168 const int minHeight = 20;
169 style->setMinHeight(Length(minHeight, Fixed));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarWindowView.java 61 int minHeight = getResources().getDimensionPixelSize(R.dimen.notification_row_min_height);
63 mExpandHelper = new ExpandHelper(mContext, latestItems, minHeight, maxHeight);
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 432 int minHeight = getMinHeight();
449 setMeasuredDimension(widthSize, Math.max(minHeight, textHeight + padding));
462 int minHeight = 0;
465 minHeight = bg.getIntrinsicHeight();
467 return minHeight;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 227 int minHeight,
233 if (imageWidth < minWidth && imageHeight < minHeight) {
235 Image thumbnail = new Image(null, minWidth, minHeight);
238 drawImageCHCV(gc, image, 0, 0, minWidth, minHeight);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
CustomViewAccessibilityActivity.java 258 final int minHeight = Math.max(mOnLayout.getHeight(), mOffLayout.getHeight())
261 resolveSizeAndState(minHeight, heightMeasureSpec, 0));
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 338 final int minHeight = Math.max(mMinHeight,
361 height = Math.min(heightSize, minHeight + getPaddingTop() + getPaddingBottom());
365 height = minHeight + getPaddingTop() + getPaddingBottom();
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetProvider.java 222 int minHeight = newOptions.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT);
226 if (minHeight < 100) {

Completed in 377 milliseconds

1 2 3 4