Searched refs:gapWidth (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/text/style/ |
D | BulletSpan.java | 95 public BulletSpan(int gapWidth) { in BulletSpan() argument 96 this(gapWidth, STANDARD_COLOR, false, STANDARD_BULLET_RADIUS); in BulletSpan() 106 public BulletSpan(int gapWidth, @ColorInt int color) { in BulletSpan() argument 107 this(gapWidth, color, true, STANDARD_BULLET_RADIUS); in BulletSpan() 118 public BulletSpan(int gapWidth, @ColorInt int color, @IntRange(from = 0) int bulletRadius) { in BulletSpan() argument 119 this(gapWidth, color, true, bulletRadius); in BulletSpan() 122 private BulletSpan(int gapWidth, @ColorInt int color, boolean wantColor, in BulletSpan() argument 124 mGapWidth = gapWidth; in BulletSpan()
|
D | QuoteSpan.java | 109 @IntRange(from = 0) int gapWidth) { in QuoteSpan() 112 mGapWidth = gapWidth; in QuoteSpan()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/animation/ |
D | ExpandedAnimationControllerTest.java | 299 final float gapWidth = totalGapWidth / gapCount; in getSpaceBetweenBubbles() local 300 return gapWidth; in getSpaceBetweenBubbles()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/animation/ |
D | ExpandedAnimationController.java | 587 final float gapWidth = totalGapWidth / gapCount; in getSpaceBetweenBubbles() local 588 return gapWidth; in getSpaceBetweenBubbles()
|