/packages/apps/Settings/ |
H A D | wrap_alpha.py | 5 # assume everything needs alpha suffixes 26 alpha = src.endswith("_alpha") variable 27 if alpha:
|
/packages/apps/Calendar/src/com/android/calendar/ |
H A D | DayOfMonthDrawable.java | 59 public void setAlpha(int alpha) { argument 60 mPaint.setAlpha(alpha);
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
H A D | MarginDrawable.java | 77 public void setAlpha(int alpha) { argument
|
H A D | ProgressRenderer.java | 117 private static Paint createProgressPaint(int width, float alpha) { argument 120 // 20% alpha. 121 paint.setColor(Color.argb((int) (alpha * 255), 255, 255, 255));
|
H A D | AnimatedCircleDrawable.java | 65 public void setAlpha(int alpha) { argument 66 mAlpha = alpha;
|
H A D | ModeSelectorItem.java | 269 * Sets the alpha on the mode text. 271 public void setTextAlpha(float alpha) { argument 272 mText.setAlpha(alpha);
|
H A D | TouchCircleDrawable.java | 144 public void setAlpha(int alpha) { argument 145 mColorAlpha = alpha;
|
/packages/apps/Contacts/src/com/android/contacts/widget/ |
H A D | AlphaTouchInterceptorOverlay.java | 31 * Also supports an alpha layer to dim the content underneath. By default, the 32 * alpha layer is the same View as the touch-interceptor layer. However, for 34 * intercepted (for example, {@link CarouselTab}'s label appears above the alpha 35 * layer). In this case, you can specify the View to use as the alpha layer via 37 * the alpha-layer with respect to your other sub-views. 60 * Set the View that the overlay will use as its alpha-layer. If 62 * some child views need to appear above the alpha-layer but below 68 // We're no longer the alpha-layer, so make ourself invisible. 75 /** Sets the alpha value on the alpha laye 76 setAlphaLayerValue(float alpha) argument [all...] |
H A D | FrameLayoutWithOverlay.java | 27 * If necessary, you can specify your own alpha-layer and manually manage its z-order. 49 * Delegate to overlay: set the View that it will use as its alpha-layer. 50 * If none is set, the overlay will use its own alpha layer. Only 52 * alpha-layer. 58 /** Delegate to overlay: set the alpha value on the alpha layer. */ 59 public void setAlphaLayerValue(float alpha) { argument 60 mOverlay.setAlphaLayerValue(alpha);
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
H A D | SwitchCompatUtils.java | 119 final int attr, final float alpha) { 121 return getColor(color, alpha); 124 private static int getColor(int color, float alpha) { argument 125 final int originalAlpha = Color.alpha(color); 126 // Return the color, multiplying the original alpha by the disabled value 127 return (color & 0x00ffffff) | (Math.round(originalAlpha * alpha) << 24); 118 getThemeAttrColor(final Context context, final TypedValue typedValue, final int attr, final float alpha) argument
|
/packages/apps/Camera/src/com/android/camera/drawable/ |
H A D | TextDrawable.java | 75 public void setAlpha(int alpha) { argument 76 mPaint.setAlpha(alpha);
|
/packages/apps/Gallery2/jni/filters/ |
H A D | edge.c | 26 // f(v) = exp(-alpha * v^beta) 29 float const alpha = 5.0f; local 96 float ret = 1.0f - exp (- alpha * pow(mag, beta));
|
/packages/apps/InCallUI/src/com/android/incallui/ |
H A D | InCallAnimationUtils.java | 69 public void setCrossFadeAlpha(int alpha) { argument 70 mCrossFadeAlpha = alpha;
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
H A D | FastBitmapDrawable.java | 63 public void setAlpha(int alpha) { argument 64 mAlpha = alpha; 65 mPaint.setAlpha(alpha);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
H A D | BorderCropDrawable.java | 82 public void setAlpha(int alpha) { argument 83 mChild.setAlpha(alpha);
|
H A D | BaseRecyclerViewFastScrollPopup.java | 119 mAlphaAnimator = ObjectAnimator.ofFloat(this, "alpha", visible ? 1f : 0f); 125 // Setter/getter for the popup alpha for animations 126 public void setAlpha(float alpha) { argument 127 mAlpha = alpha;
|
/packages/apps/Settings/src/com/android/settings/drawable/ |
H A D | CircleFramedDrawable.java | 120 public void setAlpha(int alpha) { argument
|
/packages/apps/Gallery2/src/com/android/photos/shims/ |
H A D | BitmapJobDrawable.java | 146 public void setAlpha(int alpha) { argument 148 if (alpha != oldAlpha) { 149 mPaint.setAlpha(alpha);
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
H A D | AllAppsBackgroundDrawable.java | 51 public void setAlpha(int alpha) { argument 52 mImage.setAlpha(alpha); 112 * Animates the background alpha. 118 mBackgroundAnim = ObjectAnimator.ofInt(this, "alpha", finalAlphaI); 125 * Sets the background alpha immediately. 164 public void setAlpha(int alpha) { argument 165 mHand.setAlpha(alpha); 167 mIcons[i].setAlpha(alpha);
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/ |
H A D | SoundLevels.java | 207 * Set the alpha level of the sound circles. 209 public void setPrimaryColorAlpha(final int alpha) { argument 210 mPrimaryLevelPaint.setAlpha(alpha);
|
/packages/apps/UnifiedEmail/src/com/android/mail/bitmap/ |
H A D | CheckableContactFlipDrawable.java | 176 // Interpolate the alpha. 179 // Restore the alpha. 184 public void setAlpha(final int alpha) { argument 185 mPaint.setAlpha(alpha);
|
/packages/apps/Browser/src/com/android/browser/view/ |
H A D | PieItem.java | 73 public void setAlpha(float alpha) { argument 75 mView.setAlpha(alpha);
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
H A D | ContactDisplayUtils.java | 339 * Sets an alpha value on the view. 341 public static void setAlphaOnViewBackground(View view, float alpha) { argument 343 // Convert alpha layer to a black background HEX color with an alpha value for better 345 view.setBackgroundColor((int) (MoreMath.clamp(alpha, 0.0f, 1.0f) * 255) << 24);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/lettertiles/ |
H A D | LetterTileDrawable.java | 205 public void setAlpha(final int alpha) { argument 206 mPaint.setAlpha(alpha);
|
/packages/apps/Gallery2/src/com/android/gallery3d/anim/ |
H A D | StateTransitionAnimation.java | 146 private void applyOldTexture(GLView view, GLCanvas canvas, float alpha, float scale, boolean clear) { argument 151 canvas.setAlpha(alpha);
|