Searched defs:fade (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationCustomViewWrapper.java37 public void setDark(boolean dark, boolean fade, long delay) { argument
38 if (fade) {
39 mInvertHelper.fade(dark, delay);
H A DNotificationMediaViewWrapper.java32 public void setDark(boolean dark, boolean fade, long delay) { argument
35 setPictureGrayscale(dark, fade, delay);
H A DNotificationOverflowContainer.java54 public void setDark(boolean dark, boolean fade, long delay) { argument
55 super.setDark(dark, fade, delay);
58 if (fade) {
59 mViewInvertHelper.fade(dark, delay);
H A DNotificationViewWrapper.java58 * @param fade whether to animate the transition if the mode changes
61 public abstract void setDark(boolean dark, boolean fade, long delay); argument
H A DNotificationTemplateViewWrapper.java117 public void setDark(boolean dark, boolean fade, long delay) { argument
119 if (fade) {
120 mInvertHelper.fade(dark, delay);
126 if (fade) {
140 setPictureGrayscale(dark, fade, delay);
143 protected void setPictureGrayscale(boolean grayscale, boolean fade, long delay) { argument
145 if (fade) {
H A DExpandableView.java232 * @param fade Whether an animation should be played to change the state.
234 public void setDimmed(boolean dimmed, boolean fade) { argument
241 * @param fade Whether an animation should be played to change the state.
244 public void setDark(boolean dark, boolean fade, long delay) { argument
H A DNotificationContentView.java423 public void setDark(boolean dark, boolean fade, long delay) { argument
426 mContractedWrapper.setDark(dark && !mShowingLegacyBackground, fade, delay);
H A DActivatableNotificationView.java321 public void setDimmed(boolean dimmed, boolean fade) { argument
324 if (fade) {
332 public void setDark(boolean dark, boolean fade, long delay) { argument
333 super.setDark(dark, fade, delay);
338 if (!dark && fade) {
H A DExpandableNotificationRow.java459 public void setDark(boolean dark, boolean fade, long delay) { argument
460 super.setDark(dark, fade, delay);
463 showing.setDark(dark, fade, delay);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DViewInvertHelper.java30 * Helper to invert the colors of views and fade between the states.
48 public void fade(final boolean invert, long delay) { method in class:ViewInvertHelper
/frameworks/base/core/java/android/widget/
H A DZoomControls.java83 fade(View.VISIBLE, 0.0f, 1.0f);
87 fade(View.GONE, 1.0f, 0.0f);
90 private void fade(int visibility, float startAlpha, float endAlpha) { method in class:ZoomControls
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DImageCardView.java101 * Sets the image drawable with fade-in animation.
108 * Sets the image drawable with optional fade-in animation.
110 public void setMainImage(Drawable drawable, boolean fade) { argument
122 if (fade) {
/frameworks/base/libs/input/
H A DPointerController.cpp41 // Time to wait before starting the fade when the pointer is inactive.
197 void PointerController::fade(Transition transition) { function in class:android::PointerController
421 // Animate pointer fade.
463 fade(TRANSITION_GRADUAL);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DPlaybackOverlayFragment.java81 * Listener allowing the application to receive notification of fade in and/or fade out
176 fade(false);
224 * and will fade out after a time period. The timeout
240 fade(true);
253 * Sets the listener to be called when fade in or out has completed.
260 * Returns the listener to be called when fade in or out has completed.
282 * otherwise resets the fade out timer. Tickling on input events is handled
294 fade(true);
330 // If fading enabled and controls are not hidden, back will be consumed to fade
514 private void fade(boolean fadeIn) { method in class:PlaybackOverlayFragment
[all...]
H A DPlaybackOverlaySupportFragment.java83 * Listener allowing the application to receive notification of fade in and/or fade out
178 fade(false);
226 * and will fade out after a time period. The timeout
242 fade(true);
255 * Sets the listener to be called when fade in or out has completed.
262 * Returns the listener to be called when fade in or out has completed.
284 * otherwise resets the fade out timer. Tickling on input events is handled
296 fade(true);
332 // If fading enabled and controls are not hidden, back will be consumed to fade
516 private void fade(boolean fadeIn) { method in class:PlaybackOverlaySupportFragment
[all...]
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp107 virtual void fade(Transition) { function in class:android::FakePointerController

Completed in 208 milliseconds