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

1 2 3 4 5 6

  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRow.cpp 46 int maxHeight = 0;
52 if (blockHeight > maxHeight)
53 maxHeight = blockHeight;
57 if (box->offsetHeight() > maxHeight)
58 maxHeight = box->offsetHeight();
62 return maxHeight;
69 int maxHeight = 0;
80 if (!block->hasBase() && !block->isRenderMathMLOperator() && block->offsetHeight() > maxHeight)
81 maxHeight = block->offsetHeight();
82 if (block->hasBase() && block->nonOperatorHeight() > maxHeight)
    [all...]
RenderMathMLSquareRoot.cpp 79 int maxHeight = 0;
88 if (box->offsetHeight() > maxHeight)
89 maxHeight = box->offsetHeight();
95 if (!maxHeight)
96 maxHeight = style()->fontSize();
103 if (maxHeight > thresholdHeight && thresholdHeight) {
104 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight);
113 FloatPoint bottomLeft(tx + frontWidth * gRadicalBottomPointXPos , ty + maxHeight + gRadicalBasePad);
114 FloatPoint topLeft(tx + frontWidth * gRadicalTopLeftPointXPos , ty + gRadicalTopLeftPointYPos * maxHeight);
168 int maxHeight = 0
    [all...]
RenderMathMLRoot.cpp 112 int maxHeight = indexBox->offsetHeight();
114 if (!maxHeight)
115 maxHeight = style()->fontSize();
133 if (maxHeight > thresholdHeight && thresholdHeight) {
134 float shift = (maxHeight - thresholdHeight) / static_cast<float>(thresholdHeight);
147 FloatPoint bottomLeft(start - gRadicalBottomPointXPos * frontWidth , ty + maxHeight + gRadicalBasePad);
148 FloatPoint topLeft(start - gRadicalTopLeftPointXPos * frontWidth , ty + gRadicalTopLeftPointYPos * maxHeight);
208 int maxHeight = toRenderBoxModelObject(lastChild())->offsetHeight();
214 if (!maxHeight)
215 maxHeight = style()->fontSize()
    [all...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/
MaxHeightScrollView.java 31 public void setMaxHeight(int maxHeight) {
32 mMaxHeight = maxHeight;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SuggestionsView.java 97 float maxHeight;
102 maxHeight = ((View) getParent()).getHeight();
103 if (DBG) Log.d(TAG, "Parent height=" + maxHeight);
105 maxHeight = getHeight();
106 if (DBG) Log.d(TAG, "This height=" + maxHeight);
111 int suggestions = Math.max(1, (int) Math.floor(maxHeight / suggestionHeight));
113 Log.d(TAG, "view height=" + maxHeight + " suggestion height=" +
  /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);
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSecurityViewFlipper.java 193 int maxHeight = heightSize;
202 if (lp.maxHeight > 0 && lp.maxHeight < maxHeight) {
203 maxHeight = lp.maxHeight;
210 maxHeight -= hPadding;
219 final int childHeightSpec = makeChildMeasureSpec(maxHeight, lp.height);
254 public int maxHeight;
264 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 222 int maxHeight = 0;
233 maxHeight = Math.max(maxHeight,
243 maxHeight = Math.max(maxHeight,
306 maxHeight = Math.max(maxHeight,
312 maxHeight += getPaddingTop() + getPaddingBottom();
315 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 155 int maxHeight = 0;
159 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
162 + maxWidth + "x" + maxHeight);
163 d.setBounds(0, 0, maxWidth, maxHeight);
167 + maxWidth + "x" + maxHeight);
168 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 157 int maxHeight = 0;
163 maxHeight = Math.max(maxHeight, childDrawable.getIntrinsicHeight());
167 + maxWidth + "x" + maxHeight);
168 d.setBounds(0, 0, maxWidth, maxHeight);
174 + maxWidth + "x" + maxHeight);
175 childDrawable.setBounds(0, 0, maxWidth, maxHeight);
  /external/webkit/Source/WebCore/rendering/
RenderScrollbarPart.cpp 111 int maxHeight = style()->maxHeight().isUndefined() ? h : calcScrollbarThicknessUsing(style()->maxHeight(), visibleSize);
112 setHeight(max(minHeight, min(maxHeight, h)));
  /external/webkit/Source/WebCore/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);
  /packages/apps/Email/src/com/android/email/view/
SizeBoundingFrameLayout.java 71 public void setMaxHeight(int maxHeight) {
72 mMaxHeight = maxHeight;
  /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);

Completed in 497 milliseconds

1 2 3 4 5 6