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

1 2 3 4 5 6 7 8

  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/
MaxHeightScrollView.java 31 public void setMaxHeight(int maxHeight) {
32 mMaxHeight = maxHeight;
  /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);
  /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 303 int maxHeight = 0;
314 maxHeight = Math.max(maxHeight,
328 maxHeight += getPaddingTopWithForeground() + getPaddingBottomWithForeground();
331 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
337 maxHeight = Math.max(maxHeight, drawable.getMinimumHeight());
342 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java 38 protected float maxHeight;
84 this.maxHeight = max;
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);
126 capsule.write(maxHeight, "maxHeight", 0);
139 maxHeight = capsule.readFloat("maxHeight", 0);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportArguments.h 95 Length maxHeight;
112 && maxHeight == other.maxHeight
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewFlipper.java 192 int maxHeight = heightSize;
201 if (lp.maxHeight > 0 && lp.maxHeight < maxHeight) {
202 maxHeight = lp.maxHeight;
209 maxHeight -= hPadding;
218 final int childHeightSpec = makeChildMeasureSpec(maxHeight, lp.height);
253 public int maxHeight;
263 maxHeight = other.maxHeight
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SizeAdaptiveLayout.java 156 if (DEBUG) Log.d(TAG, "active min: " + lp.minHeight + " max: " + lp.maxHeight);
175 if (lp.maxHeight != SizeAdaptiveLayout.LayoutParams.UNBOUNDED) {
176 height = Math.min(height, lp.maxHeight);
205 " max: " + lp.maxHeight);
206 if (lp.maxHeight == SizeAdaptiveLayout.LayoutParams.UNBOUNDED &&
210 if (lp.maxHeight > tallestViewSize) {
211 tallestViewSize = lp.maxHeight;
219 heightSize >= lp.minHeight && heightSize <= lp.maxHeight) {
322 public int maxHeight;
325 * Constant value for maxHeight that indicates there is not maximum height
    [all...]
ActionBarOverlayLayout.java 247 int maxHeight = 0;
258 maxHeight = Math.max(maxHeight,
268 maxHeight = Math.max(maxHeight,
331 maxHeight = Math.max(maxHeight,
337 maxHeight += getPaddingTop() + getPaddingBottom();
340 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight())
    [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));
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
HeightfieldCollisionShape.java 38 protected float maxHeight;
80 this.maxHeight = max;
94 HeightfieldTerrainShape shape = new HeightfieldTerrainShape(heightStickWidth, heightStickLength, heightfieldData, heightScale, minHeight, maxHeight, upAxis, flipQuadEdges);
113 capsule.write(maxHeight, "maxHeight", 0);
126 maxHeight = capsule.readFloat("maxHeight", 0);
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
TargetDrawable.java 125 int maxHeight = 0;
129 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
132 + maxWidth + "x" + maxHeight);
133 d.setBounds(0, 0, maxWidth, maxHeight);
137 + maxWidth + "x" + maxHeight);
138 childDrawable.setBounds(0, 0, maxWidth, maxHeight);
  /frameworks/volley/src/com/android/volley/toolbox/
ImageLoader.java 150 * @param maxHeight The maximum height of the returned image.
153 public boolean isCached(String requestUrl, int maxWidth, int maxHeight) {
156 String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight);
182 * @param maxHeight The maximum height of the returned image.
187 int maxWidth, int maxHeight) {
191 final String cacheKey = getCacheKey(requestUrl, maxWidth, maxHeight);
225 }, maxWidth, maxHeight,
474 * @param maxHeight The max-height of the output.
476 private static String getCacheKey(String url, int maxWidth, int maxHeight) {
478 .append("#H").append(maxHeight).append(url).toString()
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
TargetDrawable.java 127 int maxHeight = 0;
133 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
137 + maxWidth + "x" + maxHeight);
138 d.setBounds(0, 0, maxWidth, maxHeight);
144 + maxWidth + "x" + maxHeight);
145 childDrawable.setBounds(0, 0, maxWidth, maxHeight);
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
TargetDrawable.java 127 int maxHeight = 0;
133 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
137 + maxWidth + "x" + maxHeight);
138 d.setBounds(0, 0, maxWidth, maxHeight);
144 + maxWidth + "x" + maxHeight);
145 childDrawable.setBounds(0, 0, maxWidth, maxHeight);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.h 53 Length maxHeight() const { return m_maxHeight; }
  /frameworks/volley/tests/src/com/android/volley/toolbox/
ImageRequestTest.java 61 private void verifyResize(NetworkResponse networkResponse, int maxWidth, int maxHeight,
64 "", null, maxWidth, maxHeight, Config.RGB_565, null);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
CustomLayout.java 85 int maxHeight = 0;
110 maxHeight = Math.max(maxHeight,
120 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
125 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 226 int maxHeight = 0;
236 maxHeight = Math.max(maxHeight, child.getMeasuredHeight());
244 maxHeight += mPaddingTop + mPaddingBottom;
247 maxHeight = Math.max(maxHeight, getSuggestedMinimumHeight());
251 resolveSizeAndState(maxHeight, heightMeasureSpec,
  /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/LegacyCamera/src/com/android/camera/ui/
SharePopup.java 172 float maxHeight = mPreviewFrame.getHeight() - vPaddingRootView;
176 maxWidth = maxHeight;
177 maxHeight = temp;
179 float actualAspect = maxWidth / maxHeight;
191 params.width = Math.round(maxHeight * desiredAspect);
192 params.height = Math.round(maxHeight);
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.h 170 virtual void setMaxHeight(int maxHeight) OVERRIDE { m_maxHeight = maxHeight; }
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaFeatureNames.h 51 macro(maxHeight, "max-height") \
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderScrollbarPart.cpp 125 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(MaxSize, style()->maxHeight(), visibleSize, renderView);
126 setHeight(max(minHeight, min(maxHeight, h)));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupContainerTest.cpp 35 virtual void setMaxHeight(int max) OVERRIDE { maxHeight = max; }
43 height = std::min(maxHeight, height);
57 , maxHeight(height)
65 int maxHeight;

Completed in 1843 milliseconds

1 2 3 4 5 6 7 8