/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/ |
D | ExpandedAlarmViewHolder.java | 277 ObjectAnimator.ofFloat(repeatDays, View.ALPHA, isExpansion ? 1f : 0f), in onAnimateChange() 362 final Animator repeatAnimation = ObjectAnimator.ofFloat(repeat, View.ALPHA, 0f) in createCollapsingAnimator() 364 final Animator editLabelAnimation = ObjectAnimator.ofFloat(editLabel, View.ALPHA, 0f) in createCollapsingAnimator() 366 final Animator repeatDaysAnimation = ObjectAnimator.ofFloat(repeatDays, View.ALPHA, 0f) in createCollapsingAnimator() 368 final Animator vibrateAnimation = ObjectAnimator.ofFloat(vibrate, View.ALPHA, 0f) in createCollapsingAnimator() 370 final Animator ringtoneAnimation = ObjectAnimator.ofFloat(ringtone, View.ALPHA, 0f) in createCollapsingAnimator() 373 View.ALPHA, 0f).setDuration(shortDuration); in createCollapsingAnimator() 374 final Animator deleteAnimation = ObjectAnimator.ofFloat(delete, View.ALPHA, 0f) in createCollapsingAnimator() 376 final Animator hairLineAnimation = ObjectAnimator.ofFloat(hairLine, View.ALPHA, 0f) in createCollapsingAnimator() 434 final Animator repeatAnimation = ObjectAnimator.ofFloat(repeat, View.ALPHA, 1f) in createExpandingAnimator() [all …]
|
D | CollapsedAlarmViewHolder.java | 190 ObjectAnimator.ofFloat(alarmLabel, View.ALPHA, 0f), in createExpandingAnimator() 191 ObjectAnimator.ofFloat(daysOfWeek, View.ALPHA, 0f), in createExpandingAnimator() 192 ObjectAnimator.ofFloat(upcomingInstanceLabel, View.ALPHA, 0f), in createExpandingAnimator() 193 ObjectAnimator.ofFloat(preemptiveDismissButton, View.ALPHA, 0f), in createExpandingAnimator() 194 ObjectAnimator.ofFloat(hairLine, View.ALPHA, 0f)); in createExpandingAnimator() 211 ObjectAnimator.ofFloat(alarmLabel, View.ALPHA, 1f), in createCollapsingAnimator() 212 ObjectAnimator.ofFloat(daysOfWeek, View.ALPHA, 1f), in createCollapsingAnimator() 213 ObjectAnimator.ofFloat(upcomingInstanceLabel, View.ALPHA, 1f), in createCollapsingAnimator() 214 ObjectAnimator.ofFloat(preemptiveDismissButton, View.ALPHA, 1f), in createCollapsingAnimator() 215 ObjectAnimator.ofFloat(hairLine, View.ALPHA, 1f)); in createCollapsingAnimator()
|
/packages/apps/Launcher3/src/com/android/launcher3/keyboard/ |
D | FocusIndicatorHelper.java | 45 public static final Property<FocusIndicatorHelper, Float> ALPHA = field in FocusIndicatorHelper 165 PropertyValuesHolder.ofFloat(ALPHA, 1), in onFocusChange() 172 PropertyValuesHolder.ofFloat(ALPHA, 1)); in onFocusChange() 181 PropertyValuesHolder.ofFloat(ALPHA, 0)); in onFocusChange()
|
/packages/apps/Messaging/jni/ |
D | GifTranscoder.cpp | 32 #define ALPHA(color) (((color) >> 24) & 0xff) macro 448 char avgAlpha = (char)(((int) ALPHA(c1) + (int) ALPHA(c2) + in computeAverage() 449 (int) ALPHA(c3) + (int) ALPHA(c4)) / 4); in computeAverage() 462 char alpha = ALPHA(targetColor); in findBestColor()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | EditorAnimator.java | 60 ObjectAnimator.ofFloat(victim, View.ALPHA, 1.0f, 0.0f); in removeEditorView() 109 target, View.ALPHA, 0.0f, 1.0f); in slideAndFadeIn() 139 view, View.ALPHA, 0.0f, 1.0f); in showFieldFooter()
|
/packages/apps/Contacts/src/com/android/contacts/lettertiles/ |
D | LetterTileDrawable.java | 68 private static final int ALPHA = 138; field in LetterTileDrawable 133 sPaint.setAlpha(ALPHA); in drawBitmap() 163 sPaint.setAlpha(ALPHA); in drawLetterTile()
|
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/ |
D | TwoButtonMethod.java | 251 ObjectAnimator answerLabelHide = ObjectAnimator.ofFloat(answerLabel, View.ALPHA, 0f); in createViewHideAnimation() 253 ObjectAnimator declineLabelHide = ObjectAnimator.ofFloat(declineLabel, View.ALPHA, 0f); in createViewHideAnimation() 255 ObjectAnimator hintHide = ObjectAnimator.ofFloat(hintTextView, View.ALPHA, 0f); in createViewHideAnimation()
|
D | FlingUpDownMethod.java | 619 PropertyValuesHolder.ofFloat(View.ALPHA, 1f), in startSwipeToAnswerEntryAnimation() 766 Animator rejectTextShow = ObjectAnimator.ofFloat(swipeToRejectText, View.ALPHA, 1f); in createBreatheAnimation() 782 Animator rejectTextHide = ObjectAnimator.ofFloat(swipeToRejectText, View.ALPHA, 0f); in createBreatheAnimation() 910 ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(target, View.ALPHA, targetAlpha); in createFadeAnimation() 987 PropertyValuesHolder.ofFloat(View.ALPHA, 1f), in startSwipeToAnswerHintAnimation() 1023 rejectHintHide = ObjectAnimator.ofFloat(swipeToRejectText, View.ALPHA, 0); in startSwipeToAnswerHintAnimation()
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
D | PluginHeaderRow.java | 18 import static android.view.View.ALPHA; 70 setter.setFloat(mView, ALPHA, hasContent ? 1 : 0, fadeInterpolator); in setContentVisibility()
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
D | TransitionAnimationView.java | 82 mAnimator = ObjectAnimator.ofFloat(mMaskingView, View.ALPHA, 0.0f, 1.0f); in startMaskTransition() 85 mAnimator = ObjectAnimator.ofFloat(mMaskingView, View.ALPHA, 1.0f, 0.0f); in startMaskTransition()
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerFragment.java | 55 import static android.view.View.ALPHA; 552 final Animator fadeOut = ObjectAnimator.ofFloat(mViewPager, ALPHA, 1, 0); in animateTimerRemove() 563 final Animator fadeIn = ObjectAnimator.ofFloat(mViewPager, ALPHA, 0, 1); in animateTimerRemove() 620 final Animator fadeOutAnimator = ObjectAnimator.ofFloat(mCurrentView, ALPHA, 0f); in animateToView() 654 final Animator fadeInAnimator = ObjectAnimator.ofFloat(toView, ALPHA, 1f); in animateToView()
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
D | Scroller.java | 65 private static float ALPHA = 800; // pixels / seconds field in Scroller 394 final double l = Math.log(START_TENSION * velocity / ALPHA); in fling() 404 (int) (ALPHA * Math.exp(DECELERATION_RATE / (DECELERATION_RATE - 1.0) * l)); in fling()
|
/packages/apps/Dialer/java/com/android/dialer/lettertile/ |
D | LetterTileDrawable.java | 84 private static final int ALPHA = 138; field in LetterTileDrawable 221 paint.setAlpha(ALPHA); in drawLetterTile() 241 drawable.setAlpha(drawable == defaultSpamAvatar ? SPAM_ALPHA : ALPHA); in drawLetterTile()
|
/packages/apps/Launcher3/go/quickstep/src/com/android/quickstep/ |
D | ContentFillItemAnimator.java | 18 import static android.view.View.ALPHA; 113 holder.itemView, ALPHA, holder.itemView.getAlpha(), 0.0f); in animateRemoveImpl()
|
/packages/apps/Car/Hvac/src/com/android/car/hvac/controllers/ |
D | HvacPanelController.java | 354 = ObjectAnimator.ofFloat(mHvacFanControlBackground, View.ALPHA, 1, 0) in transitionState() 360 = ObjectAnimator.ofFloat(mContainer, View.ALPHA, 1, 0); in transitionState() 389 = ObjectAnimator.ofFloat(mHvacFanControlBackground, View.ALPHA, 0, 1) in transitionState()
|
/packages/apps/Launcher3/go/quickstep/src/com/android/quickstep/views/ |
D | IconRecentsView.java | 96 ALPHA.set(view, v); 106 return ALPHA.get(view); 483 PropertyValuesHolder alphaProperty = PropertyValuesHolder.ofFloat(ALPHA, 1.0f, 0f); in animateClearAllTasks() 619 Animator alphaAnim = ObjectAnimator.ofFloat(view, ALPHA, 0.0f, 1.0f); in animateFadeInLayoutAnimation()
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
D | ItemAnimator.java | 53 final Animator removeAnimator = ObjectAnimator.ofFloat(holder.itemView, View.ALPHA, 0f); in animateRemove() 81 final Animator addAnimator = ObjectAnimator.ofFloat(holder.itemView, View.ALPHA, 1f) in animateAdd()
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
D | AddressListParserConstants.java | 23 int ALPHA = 11; field
|
D | AddressListParser.jj | 481 < #ALPHA: ["a" - "z", "A" - "Z"] > 483 | < #ATEXT: ( <ALPHA> | <DIGIT>
|
/packages/apps/Launcher3/src/com/android/launcher3/anim/ |
D | PropertyListBuilder.java | 44 mProperties.add(PropertyValuesHolder.ofFloat(View.ALPHA, value)); in alpha()
|
D | PropertySetter.java | 64 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.ALPHA, alpha); in setViewAlpha()
|
/packages/apps/Gallery2/jni/filters/ |
D | filters.h | 43 #define ALPHA (i+3) macro
|
/packages/apps/TV/src/com/android/tv/menu/ |
D | MenuLayoutManager.java | 916 ObjectAnimator animator = ObjectAnimator.ofFloat(view, View.ALPHA, from, to); in createAlphaAnimator() 924 ObjectAnimator animator = ObjectAnimator.ofFloat(view, View.ALPHA, from, to); in createAlphaAnimator() 927 mPropertyValuesAfterAnimation.add(new ViewPropertyValueHolder(View.ALPHA, view, end)); in createAlphaAnimator()
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
D | AlarmActivity.java | 584 ObjectAnimator.ofFloat(mHintView, View.ALPHA, 0.0f, 1.0f).start(); in getAlarmBounceAnimator() 636 final ValueAnimator fadeAnimator = ObjectAnimator.ofFloat(revealView, View.ALPHA, 0.0f); in getAlertAnimator()
|
/packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/ |
D | SetupAnimationHelper.java | 214 ObjectAnimator.ofFloat(view, View.ALPHA, 1.0f, 0.0f).setDuration(duration); in createFadeOutAnimator()
|