Home
last modified time | relevance | path

Searched refs:endRadius (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
DRadialGradient.java139 float endX, float endY, @FloatRange(from = 0.0f, fromInclusive = false) float endRadius, in RadialGradient()
142 this(startX, startY, startRadius, endX, endY, endRadius, colors.clone(), stops, tileMode, in RadialGradient()
151 float endRadius, @NonNull @ColorLong long[] colors, @Nullable float[] stops, in RadialGradient() argument
161 if (endRadius <= 0) { in RadialGradient()
170 mRadius = endRadius; in RadialGradient()
220 float startRadius, float endX, float endY, float endRadius, @ColorLong long[] colors, in nativeCreate() argument
/frameworks/base/core/java/android/view/
DViewAnimationUtils.java70 int centerX, int centerY, float startRadius, float endRadius) { in createCircularReveal() argument
71 return new RevealAnimator(view, centerX, centerY, startRadius, endRadius); in createCircularReveal()
DRenderNodeAnimator.java43 public RenderNodeAnimator(int x, int y, float startRadius, float endRadius) { in RenderNodeAnimator() argument
44 super(x, y, startRadius, endRadius); in RenderNodeAnimator()
/frameworks/base/core/java/android/animation/
DRevealAnimator.java34 float startRadius, float endRadius) { in RevealAnimator() argument
35 super(x, y, startRadius, endRadius); in RevealAnimator()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DNumPadAnimator.java80 float endRadius = height / 4f; in onLayout() local
82 mExpandAnimator.setFloatValues(startRadius, endRadius); in onLayout()
83 mContractAnimator.setFloatValues(endRadius, startRadius); in onLayout()
/frameworks/base/graphics/java/android/graphics/animation/
DRenderNodeAnimator.java127 public RenderNodeAnimator(int x, int y, float startRadius, float endRadius) { in RenderNodeAnimator() argument
128 init(nCreateRevealAnimator(x, y, startRadius, endRadius)); in RenderNodeAnimator()
501 int x, int y, float startRadius, float endRadius); in nCreateRevealAnimator() argument
/frameworks/base/libs/hwui/jni/
Dandroid_graphics_animation_RenderNodeAnimator.cpp131 jint centerX, jint centerY, jfloat startRadius, jfloat endRadius) { in createRevealAnimator() argument
132 BaseRenderNodeAnimator* animator = new RevealAnimator(centerX, centerY, startRadius, endRadius); in createRevealAnimator()
DShader.cpp149 jfloat endRadius, in RadialGradient_create() argument
173 endRadius, &colors[0], std::move(colorSpace), pos, colors.size(), skTileMode, in RadialGradient_create()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DLightRevealScrim.kt94 val endRadius: Float constant in com.android.systemui.statusbar.CircleReveal
100 val radius = startRadius + ((endRadius - startRadius) * amount) in setRevealAmountOnScrim()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
DSplashScreenExitAnimation.java124 final int endRadius = (int) (0.5 + (1f / transparentRatio * (int) in createAnimator() local
131 mRadialVanishAnimation.setRadius(0 /* initRadius */, endRadius); in createAnimator()
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
DActivityLaunchAnimator.kt474 val endRadius = if (isExpandingFullyAbove) { in <lambda>() constant
538 state.topCornerRadius = MathUtils.lerp(startTopCornerRadius, endRadius, progress) in <lambda>()
540 MathUtils.lerp(startBottomCornerRadius, endRadius, progress) in <lambda>()