Searched refs:vis (Results 26 - 36 of 36) sorted by relevance

12

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1266 int vis = ent.notification.getNotification().visibility;
1271 boolean sensitiveNote = vis == Notification.VISIBILITY_PRIVATE;
2354 public void setSystemUiVisibility(int vis, int mask) { argument
2356 final int newVal = (oldVal&~mask) | (vis&mask);
2359 "setSystemUiVisibility vis=%s mask=%s oldVal=%s newVal=%s diff=%s",
2360 Integer.toHexString(vis), Integer.toHexString(mask),
2372 final boolean lightsOut = (vis & View.SYSTEM_UI_FLAG_LOW_PROFILE) != 0;
2381 if ((vis & View.STATUS_BAR_UNHIDE) != 0) {
2417 if ((vis & View.NAVIGATION_BAR_UNHIDE) != 0) {
2425 boolean light = (vis
2449 barMode(int vis, int transientFlag, int translucentFlag) argument
2570 notifyUiVisibilityChanged(int vis) argument
2593 setImeWindowStatus(IBinder token, int vis, int backDisposition, boolean showImeSwitcher) argument
[all...]
H A DNavigationBarView.java616 private static String visibilityToString(int vis) { argument
617 switch (vis) {
/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingHelper.java145 int vis = safeInt(parser, ATT_VISIBILITY, DEFAULT_VISIBILITY);
172 if (vis != DEFAULT_VISIBILITY) {
173 r.visibility = vis;
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java6611 private int updateLightStatusBarLw(int vis) { argument
6620 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6621 vis |= PolicyControl.getSystemUiVisibility(statusColorWin, null)
6625 vis &= ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
6628 return vis;
6631 private int updateSystemBarsLw(WindowState win, int oldVis, int vis) { argument
6632 // apply translucent bar vis flags
6636 vis = mStatusBarController.applyTranslucentFlagLw(transWin, vis, oldVis);
6637 vis
6737 isImmersiveMode(int vis) argument
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DSlidingPaneLayout.java390 final int vis;
393 vis = INVISIBLE;
395 vis = VISIBLE;
397 child.setVisibility(vis);
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java693 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
1583 updateSystemUiLocked(mCurToken, 0 /* vis */, mBackDisposition);
1734 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) { argument
1743 mImeWindowVis = vis;
1745 updateSystemUiLocked(token, vis, backDisposition);
1749 private void updateSystemUi(IBinder token, int vis, int backDisposition) { argument
1751 updateSystemUiLocked(token, vis, backDisposition);
1756 private void updateSystemUiLocked(IBinder token, int vis, int backDisposition) { argument
1769 if (vis != 0 && isKeyguardLocked() && !mCurClientInKeyguard) {
1770 vis
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java696 public void setImeWindowStatus(IBinder imeToken, int vis, int backDisposition) { argument
698 mService.setImeWindowStatus(imeToken, vis, backDisposition);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1154 int vis = 0;
1157 vis |= View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN;
1160 vis |= View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION;
1162 return vis;
H A DView.java14529 int vis = info.mWindowVisibility;
14530 if (vis != GONE) {
14531 onWindowVisibilityChanged(vis);
14549 int vis = info.mWindowVisibility;
14550 if (vis != GONE) {
/frameworks/base/core/java/android/app/
H A DNotification.java1889 sb.append(" vis=");
1902 public static String visibilityToString(int vis) { argument
1903 switch (vis) {
1911 return "UNKNOWN(" + String.valueOf(vis) + ")";
/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java3010 int vis = show ? VISIBLE : INVISIBLE;
3011 visibilityChanged = state.targetVisibility != vis;
3012 state.targetVisibility = vis;

Completed in 693 milliseconds

12