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

1 2 3 4 5 6

  /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 43 int minHeight = -1;
59 // to indicate that they should be calculated based on the layout and minWidth/minHeight
  /packages/apps/Launcher3/src/com/android/launcher3/
PendingAddItemInfo.java 52 int minHeight;
71 minHeight = i.minHeight;
85 minHeight = copy.minHeight;
LauncherAppWidgetInfo.java 43 int minHeight = -1;
59 // to indicate that they should be calculated based on the layout and minWidth/minHeight
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMultiColumnFlowThread.h 48 virtual void updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight) OVERRIDE;
RenderMultiColumnFlowThread.cpp 113 void RenderMultiColumnFlowThread::updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight)
116 multicolSet->updateMinimumColumnHeight(minHeight);
  /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);
  /packages/apps/DeskClock/src/com/android/alarmclock/
WidgetUtils.java 62 int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT);
63 if (minHeight > 0 && (density * minHeight)
83 int minHeight = options.getInt(AppWidgetManager.OPTION_APPWIDGET_MIN_HEIGHT);
84 if (minHeight == 0) {
94 float ratio = ((density * minHeight) - lblBox)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportArguments.h 94 Length minHeight;
111 && minHeight == other.minHeight
  /external/chromium_org/chrome/browser/resources/apps_debugger/
background.js 9 minHeight: 600,
  /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) {
316 public int minHeight;
345 minHeight = a.getDimensionPixelSize(MIN_VALID_HEIGHT, 0);
346 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;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.h 50 Length minHeight() const { return m_minHeight; }
  /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/chromium_org/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/chromium_org/third_party/WebKit/Source/devtools/front_end/
SplitView.js 331 * @param {number=} minHeight
333 setSidebarElementConstraints: function(minWidth, minHeight)
337 if (typeof minHeight === "number")
338 this._minimumSidebarHeight = minHeight;
343 * @param {number=} minHeight
345 setMainElementConstraints: function(minWidth, minHeight)
349 if (typeof minHeight === "number")
350 this._minimumMainHeight = minHeight;
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
results_unittests.js 164 equals(topPanel.style.minHeight, '');
179 equals(topPanel.style.minHeight, '100px');
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/
pickerCommon.js 103 * @param {?number} minHeight
106 function adjustWindowRect(width, height, minWidth, minHeight) {
109 if (typeof minHeight !== "number")
110 minHeight = 0;
120 _adjustWindowRectVertically(windowRect, availRect, anchorRect, minHeight);
126 function _adjustWindowRectVertically(windowRect, availRect, anchorRect, minHeight) {
135 windowRect.height = Math.max(windowRect.height, minHeight);
139 windowRect.height = Math.max(windowRect.height, minHeight);
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaFeatureNames.h 62 macro(minHeight, "min-height") \
  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
background.js 18 minHeight: 768,
  /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);

Completed in 759 milliseconds

1 2 3 4 5 6