OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:alphaInterpolator
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java
332
Interpolator
alphaInterpolator
;
335
alphaInterpolator
= Interpolators.LINEAR_OUT_SLOW_IN;
338
alphaInterpolator
= ACTIVATE_INVERSE_ALPHA_INTERPOLATOR;
357
.setInterpolator(
alphaInterpolator
)
[
all
...]
/packages/apps/Launcher2/src/com/android/launcher2/
DragLayer.java
557
* @param
alphaInterpolator
The interpolator to use for the alpha of the view.
568
final Interpolator motionInterpolator, final Interpolator
alphaInterpolator
,
588
if (
alphaInterpolator
== null || motionInterpolator == null) {
602
float alphaPercent =
alphaInterpolator
== null ? percent :
603
alphaInterpolator
.getInterpolation(percent);
/packages/apps/Launcher3/src/com/android/launcher3/
DragLayer.java
662
* @param
alphaInterpolator
The interpolator to use for the alpha of the view.
673
final Interpolator motionInterpolator, final Interpolator
alphaInterpolator
,
692
if (
alphaInterpolator
== null || motionInterpolator == null) {
706
float alphaPercent =
alphaInterpolator
== null ? percent :
707
alphaInterpolator
.getInterpolation(percent);
[
all
...]
Completed in 3784 milliseconds