Searched refs:visible (Results 126 - 150 of 156) sorted by relevance

1234567

/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java833 // no restrictive rules; network is visible
2953 private void setProvNotificationVisible(boolean visible, int networkType, String action) { argument
2955 log("setProvNotificationVisible: E visible=" + visible + " networkType=" + networkType
2962 setProvNotificationVisibleIntent(visible, id, networkType, null, pendingIntent);
2972 private void setProvNotificationVisibleIntent(boolean visible, int id, int networkType, argument
2975 log("setProvNotificationVisibleIntent: E visible=" + visible + " networkType=" +
2983 if (visible) {
3023 loge("setNotificaitionVisible: visible notificationManage
3164 setProvisioningNotificationVisible(boolean visible, int networkType, String action) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DDragState.java121 mDragWindowHandle.visible = true;
180 /* call out to each visible window/session informing it about the drag
243 * previously been notified, i.e. it became visible after the drag operation
392 // Find the visible, touch-deliverable window under the given point
407 // not visible == don't tell about drags
H A DInputMonitor.java190 inputWindowHandle.visible = isVisible;
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBarActivityDelegateBase.java685 void setSupportProgressBarVisibility(boolean visible) { argument
686 updateProgressBars(visible ? Window.PROGRESS_VISIBILITY_ON :
691 void setSupportProgressBarIndeterminateVisibility(boolean visible) { argument
692 updateProgressBars(visible ? Window.PROGRESS_VISIBILITY_ON :
801 // so that when the progress bar becomes visible again, it has the
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java1966 * Set sign in error notification to visible or in visible
1968 * @param visible
1973 public void setProvisioningNotificationVisible(boolean visible, int networkType, argument
1976 mService.setProvisioningNotificationVisible(visible, networkType, action);
/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java619 // don't keep the state if we are not visible
727 public void setVisible(boolean visible) { argument
728 if (visible) {
H A DAudioManager.java3121 public void notifyVolumeControllerVisible(IVolumeController controller, boolean visible) { argument
3123 getService().notifyVolumeControllerVisible(controller, visible);
H A DClosedCaptionRenderer.java1147 public void setVisible(boolean visible) { argument
1148 if (visible) {
H A DAudioService.java5439 public void notifyVolumeControllerVisible(final IVolumeController controller, boolean visible) { argument
5447 mVolumeController.setVisible(visible);
5448 if (DEBUG_VOL) Log.d(TAG, "Volume controller visible: " + visible);
5474 // ui will become visible
5492 public void setVisible(boolean visible) { argument
5493 mVisible = visible;
H A DWebVttRenderer.java1087 // don't keep the state if we are not visible
1199 public void setVisible(boolean visible) { argument
1200 if (visible) {
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java951 final boolean visible = state == TRANSPORT_VISIBLE;
953 if (!showing && (visible || shouldBeVisible)) {
H A DKeyguardUpdateMonitor.java1093 public void reportClockVisible(boolean visible) { argument
1094 mClockVisible = visible;
H A DSlidingChallengeLayout.java61 // when challenge is fully visible
72 // Range: 0 (fully hidden) to 1 (fully visible)
220 * 1.f = fully visible/ready to be interacted with.
288 void animateHandle(boolean visible) { argument
293 final float targetAlpha = visible ? 1.f : 0.f;
466 * @return true if the challenge is at all visible.
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java99 * while a third could have no input area (and thus not be visible to the
128 * as long as the input view is visible, you will see user interaction in
244 * The IME is active. It may or may not be visible.
250 * The IME is visible.
571 * UI, will only pan if needed to make the current focus visible, and
573 * needed to make the focus visible. This value is relative to the top edge
601 * the visible insets can be touched.
770 boolean visible = mWindowVisible;
781 if (visible) {
794 // If the candidates are currently visible, mak
[all...]
/frameworks/base/core/java/android/widget/
H A DSearchView.java76 * If you want the search field to always be visible, then call setIconifiedByDefault(false).
523 * relevant when the text field is not visible by default. Calling {@link #setIconified
647 * fully visible.
789 // Visibility of views that are visible when collapsed
870 private void setImeVisibility(final boolean visible) { argument
871 if (visible) {
1158 * criteria apply to make the voice button visible.
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp461 // we have to set the visible region on every frame because
464 // Apply this display's projection's viewport to the visible region
467 Region visible = tr.transform(visibleRegion.intersect(hw->getViewport())); local
468 layer.setVisibleRegionScreen(visible);
890 // invalidate and recompute the visible regions if needed
895 // invalidate and recompute the visible regions if needed
1115 // recompute visible region
1153 // trigger a visible-region recompute.
1166 // recompute visible region
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java200 final Rect mVisRect; // used to retrieve visible rect of focused view.
803 void handleAppVisibility(boolean visible) { argument
804 if (mAppVisible != visible) {
805 mAppVisible = visible;
935 // updates that lie outside of the visible region
1505 + " visible=" + mPendingVisibleInsets.toShortString()
1506 + " visible=" + mPendingStableInsets.toShortString()
2664 // going to make the focus visible... otherwise we scroll
2681 // view is visible.
2695 // within the visible par
5981 dispatchAppVisibility(boolean visible) argument
6390 dispatchAppVisibility(boolean visible) argument
[all...]
H A DViewGroup.java1228 // Only track this on disappearing views - appearing views are already visible
1533 public void dispatchWindowSystemUiVisiblityChanged(int visible) { argument
1534 super.dispatchWindowSystemUiVisiblityChanged(visible);
1540 child.dispatchWindowSystemUiVisiblityChanged(visible);
1545 public void dispatchSystemUiVisibilityChanged(int visible) { argument
1546 super.dispatchSystemUiVisibilityChanged(visible);
1552 child.dispatchSystemUiVisibilityChanged(visible);
5644 * @param view The View object to be kept visible even if it gets removed from its parent.
5662 * @return view The View object that has been removed but is being kept around in the visible
5693 // those items visible afte
[all...]
H A DViewDebug.java678 private static void captureViewLayer(View view, DataOutputStream clientStream, boolean visible) argument
681 final boolean localVisible = view.getVisibility() == View.VISIBLE && visible;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackView.java195 * Gets the stack transforms of a list of tasks, and returns the visible range of tasks.
202 // XXX: We should be intelligent about where to look for the visible stack range using the
205 // XXX: Print out approximately how many indices we have to go through to find the first visible transform
228 if (transform.visible) {
235 // We've reached the end of the visible range, so going down the rest of the
259 * Gets the stack transforms of a list of tasks, and returns the visible range of tasks. This
302 // Pick up all the newly visible children and update all the existing children
1072 // For visible children, defer removing the task until after the animation
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp482 if (windowInfo->visible) {
494 // Error window is on top but not visible, so touch is dropped.
1213 if (windowInfo->visible) {
1637 && otherInfo->visible && !otherInfo->isTrustedOverlay()
1697 // to touch whatever was visible at the time. Even if focus changes or a new
3166 "visible=%s, canReceiveKeys=%s, flags=0x%08x, type=0x%08x, layer=%d, "
3173 toString(windowInfo->visible),
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1147 boolean visible) {
1164 chip = visible ?
2110 // Start the search for tokens after the last currently visible
1146 createReplacementChip(int tokenStart, int tokenEnd, Editable editable, boolean visible) argument
/frameworks/base/core/java/android/app/
H A DActivityThread.java176 // Number of activities that are currently visible on-screen.
1152 public void scheduleBackgroundVisibleBehindChanged(IBinder token, boolean visible) { argument
1153 sendMessage(H.BACKGROUND_VISIBLE_BEHIND_CHANGED, token, visible ? 1 : 0);
2370 // paused, because it needs to be visible but isn't in the
2508 public void handleOnBackgroundVisibleBehindChanged(IBinder token, boolean visible) { argument
2511 r.activity.onBackgroundVisibleBehindChanged(visible);
3022 // window visible.
3032 // The window is now visible if it has been added, we are not
3294 * it the result when it is done, but the window may still be visible.
3557 // paused, so make sure our window is visible
[all...]
H A DIActivityManager.java459 public boolean requestVisibleBehind(IBinder token, boolean visible) throws RemoteException; argument
H A DActivityManagerNative.java5303 public boolean requestVisibleBehind(IBinder token, boolean visible) throws RemoteException { argument
5308 data.writeInt(visible ? 1 : 0);
5325 final boolean visible = reply.readInt() > 0;
5328 return visible;

Completed in 616 milliseconds

1234567