Home
last modified time | relevance | path

Searched refs:ALPHA (Results 1 – 25 of 47) sorted by relevance

12

/packages/apps/DeskClock/src/com/android/deskclock/alarms/dataadapter/
DExpandedAlarmViewHolder.java277 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 …]
DCollapsedAlarmViewHolder.java190 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/
DFocusIndicatorHelper.java45 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/
DGifTranscoder.cpp32 #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/
DEditorAnimator.java60 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/
DLetterTileDrawable.java68 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/
DTwoButtonMethod.java251 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()
DFlingUpDownMethod.java619 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/
DPluginHeaderRow.java18 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/
DTransitionAnimationView.java82 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/
DTimerFragment.java55 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/
DScroller.java65 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/
DLetterTileDrawable.java84 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/
DContentFillItemAnimator.java18 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/
DHvacPanelController.java354 = 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/
DIconRecentsView.java96 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/
DItemAnimator.java53 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/
DAddressListParserConstants.java23 int ALPHA = 11; field
DAddressListParser.jj481 < #ALPHA: ["a" - "z", "A" - "Z"] >
483 | < #ATEXT: ( <ALPHA> | <DIGIT>
/packages/apps/Launcher3/src/com/android/launcher3/anim/
DPropertyListBuilder.java44 mProperties.add(PropertyValuesHolder.ofFloat(View.ALPHA, value)); in alpha()
DPropertySetter.java64 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.ALPHA, alpha); in setViewAlpha()
/packages/apps/Gallery2/jni/filters/
Dfilters.h43 #define ALPHA (i+3) macro
/packages/apps/TV/src/com/android/tv/menu/
DMenuLayoutManager.java916 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/
DAlarmActivity.java584 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/
DSetupAnimationHelper.java214 ObjectAnimator.ofFloat(view, View.ALPHA, 1.0f, 0.0f).setDuration(duration); in createFadeOutAnimator()

12