Searched refs:visible (Results 1 - 25 of 238) sorted by relevance

12345678910

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ui/
H A DUpdateFreeformTaskViewVisibilityEvent.java22 * This is sent to update the visibility of all visible freeform task views.
26 public final boolean visible; field in class:UpdateFreeformTaskViewVisibilityEvent
28 public UpdateFreeformTaskViewVisibilityEvent(boolean visible) { argument
29 this.visible = visible;
/frameworks/base/core/java/android/view/
H A DIWallpaperVisibilityListener.aidl25 * Method that will be invoked when wallpaper becomes visible or hidden.
26 * @param visible True if wallpaper is being displayed; false otherwise.
29 void onWallpaperVisibilityChanged(boolean visible, int displayId);
H A DIDockedStackListener.aidl30 void onDividerVisibilityChanged(boolean visible);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/component/
H A DRecentsVisibilityChangedEvent.java25 * of this event should not alter the UI, as the activity may still be visible.
30 public final boolean visible; field in class:RecentsVisibilityChangedEvent
32 public RecentsVisibilityChangedEvent(Context context, boolean visible) { argument
34 this.visible = visible;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DIconLogger.java22 default void onIconVisibility(String tag, boolean visible) { argument
23 if (visible) {
H A DNetworkController.java69 public final boolean visible; field in class:NetworkController.IconState
73 public IconState(boolean visible, int icon, String contentDescription) { argument
74 this.visible = visible;
79 public IconState(boolean visible, int icon, int contentDescription, argument
81 this(visible, icon, context.getString(contentDescription));
/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java35 public boolean visible = true; field in class:NotificationVisibility
46 this.visible = visibile;
54 + (visible?" visible":"")
60 return obtain(this.key, this.rank, this.visible);
88 out.writeInt(this.visible ? 1 : 0);
94 this.visible = in.readInt() != 0;
101 public static NotificationVisibility obtain(String key, int rank, boolean visible) { argument
105 vo.visible = visible;
[all...]
H A DStatusBarIcon.java30 public boolean visible = true; field in class:StatusBarIcon
62 + (visible?" visible":"")
72 that.visible = this.visible;
88 this.visible = in.readInt() != 0;
98 out.writeInt(this.visible ? 1 : 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DIRecentsSystemUserCallbacks.aidl29 void updateRecentsVisibility(boolean visible);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/recents/
H A DIRecentsSystemUserCallbacks.aidl29 void updateRecentsVisibility(boolean visible);
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java160 Visible[] visible = sp.getSpans(0, sp.length(), Visible.class);
162 for (int a = 0; a < visible.length; a++) {
163 if (sp.getSpanStart(visible[a].mTransformer) >= 0) {
164 st = sp.getSpanStart(visible[a]);
165 en = sp.getSpanEnd(visible[a]);
201 Visible[] visible = sp.getSpans(0, sp.length(), Visible.class);
202 nvisible = visible.length;
207 if (sp.getSpanStart(visible[i].mTransformer) >= 0) {
208 starts[i] = sp.getSpanStart(visible[i]);
209 ends[i] = sp.getSpanEnd(visible[
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperEngine.aidl29 void setVisibility(boolean visible);
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DEmergencyCarrierArea.java61 public void setCarrierTextVisible(boolean visible) { argument
62 mCarrierText.setVisibility(visible ? View.VISIBLE : View.GONE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DTransformableView.java71 * Set this view to be fully visible or gone
73 * @param visible
75 void setVisible(boolean visible); argument
H A DEmptyShadeView.java70 boolean visible = this.clipTopAmount <= mEmptyText.getPaddingTop() * 0.6f;
72 visible && !emptyShadeView.willBeGone());
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DNetworkControllerEthernetTest.java41 protected void verifyLastEthernetIcon(boolean visible, int icon) { argument
47 assertEquals("Ethernet visible, in status bar", visible, iconState.visible);
H A DNetworkControllerBaseTest.java297 protected void verifyLastQsMobileDataIndicators(boolean visible, int icon, int typeIcon, argument
313 assertEquals("Visibility in, quick settings", visible, iconState.visible);
322 protected void verifyLastMobileDataIndicators(boolean visible, int icon, int typeIcon) { argument
323 verifyLastMobileDataIndicators(visible, icon, typeIcon, false);
326 protected void verifyLastMobileDataIndicators(boolean visible, int icon, int typeIcon, argument
328 verifyLastMobileDataIndicators(visible, icon, typeIcon, roaming, true);
331 protected void verifyLastMobileDataIndicators(boolean visible, int icon, int typeIcon, argument
349 assertEquals("Visibility in status bar", visible, iconState.visible);
352 verifyLastMobileDataIndicators(boolean visible, int icon, int typeIcon, boolean qsVisible, int qsIcon, int qsTypeIcon, boolean dataIn, boolean dataOut) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWallpaperWindowToken.java90 void updateWallpaperVisibility(boolean visible) { argument
95 if (hidden == visible) {
96 hidden = !visible;
104 if (visible) {
108 wallpaper.dispatchWallpaperVisibility(visible);
122 void updateWallpaperWindows(boolean visible, int animLayerAdj) { argument
124 if (hidden == visible) {
126 "Wallpaper token " + token + " hidden=" + !visible);
127 hidden = !visible;
139 if (visible) {
[all...]
H A DWallpaperVisibilityListeners.java58 final boolean visible = displayContent.mWallpaperController.isWallpaperVisible();
72 listener.onWallpaperVisibilityChanged(visible, displayId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java60 public boolean visible = false; field in class:TaskViewTransform
72 visible = true;
85 visible = other.visible;
99 && visible == other.visible
112 visible = false;
139 // Return early if not visible
140 if (!visible) {
201 return "R: " + rect + " V: " + visible;
[all...]
/frameworks/base/services/core/java/com/android/server/input/
H A DInputWindowHandle.java69 // Window is visible.
70 public boolean visible; field in class:InputWindowHandle
114 .append(", visible=").append(visible)
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DButtonBarItem.java78 public void setVisible(boolean visible) { argument
79 mVisible = visible;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPresenterSwitcher.java99 protected void showView(View view, boolean visible) { argument
100 view.setVisibility(visible ? View.VISIBLE : View.GONE);
/frameworks/base/packages/SystemUI/src/com/android/systemui/colorextraction/
H A DSysuiColorExtractor.java49 // Colors to return when the wallpaper isn't visible
68 boolean visible = windowManagerService.registerWallpaperVisibilityListener(
76 setWallpaperVisible(visible);
115 * Get TYPE_NORMAL colors when wallpaper is visible, or fallback otherwise.
126 * Wallpaper colors when the wallpaper is visible, fallback otherwise.
142 * isn't visible
154 * if it's visible or not
171 void setWallpaperVisible(boolean visible) { argument
172 if (mWallpaperVisible != visible) {
173 mWallpaperVisible = visible;
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DTileDrawable.java32 * {@link #setVisible(boolean, boolean)} indicates that it is no longer visible.
129 public boolean setVisible(boolean visible) { argument
130 return setVisible(visible, true /* dontcare */);
134 public boolean setVisible(boolean visible, boolean restart) { argument
135 if (mInner != null) mInner.setVisible(visible, restart);
136 final boolean changed = super.setVisible(visible, restart);

Completed in 1583 milliseconds

12345678910