Searched refs:widthFraction (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/content/pm/ |
D | ActivityInfo.java | 1171 + windowLayout.widthFraction + ", " + windowLayout.height + "|" in dump() 1219 dest.writeFloat(windowLayout.widthFraction); in writeToParcel() 1372 … public WindowLayout(int width, float widthFraction, int height, float heightFraction, int gravity, in WindowLayout() argument 1375 this.widthFraction = widthFraction; in WindowLayout() 1385 widthFraction = source.readFloat(); in WindowLayout() 1406 public final float widthFraction; field in ActivityInfo.WindowLayout 1461 return width >= 0 || height >= 0 || widthFraction >= 0 || heightFraction >= 0; in hasSpecifiedSize()
|
D | PackageParser.java | 4853 float widthFraction = -1f; in parseLayout() local 4859 widthFraction = sw.getFraction( in parseLayout() 4888 a.info.windowLayout = new ActivityInfo.WindowLayout(width, widthFraction, in parseLayout()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ActivatableNotificationView.java | 847 float widthFraction = (inverseFraction - (1.0f - HORIZONTAL_ANIMATION_START)) in updateAppearRect() local 849 widthFraction = Math.min(1.0f, Math.max(0.0f, widthFraction)); in updateAppearRect() 850 widthFraction = mCurrentAppearInterpolator.getInterpolation(widthFraction); in updateAppearRect() 855 float width = MathUtils.lerp(startWidthFraction, 1.0f, 1.0f - widthFraction) in updateAppearRect() 860 left = MathUtils.lerp(mHeadsUpLocation, 0, 1.0f - widthFraction); in updateAppearRect()
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | PipSnapAlgorithm.java | 277 final float widthFraction = (float) (tmpBounds.left - movementBounds.left) / in getSnapFraction() local 282 return widthFraction; in getSnapFraction() 286 return 2f + (1f - widthFraction); in getSnapFraction()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | TaskLaunchParamsModifier.java | 372 } else if (windowLayout.widthFraction > 0 && windowLayout.widthFraction < 1.0f) { in getLayoutBounds() 373 width = (int) (width * windowLayout.widthFraction); in getLayoutBounds()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | TaskLaunchParamsModifierTests.java | 1299 private WindowLayoutBuilder setWidthFraction(float widthFraction) { in setWidthFraction() argument 1300 mWidthFraction = widthFraction; in setWidthFraction()
|
/frameworks/base/non-updatable-api/ |
D | current.txt | 11073 field public final float widthFraction;
|
/frameworks/base/api/ |
D | current.txt | 11073 field public final float widthFraction;
|