Lines Matching defs:VISIBLE

778     @IntDef({VISIBLE, INVISIBLE, GONE})
787 public static final int VISIBLE = 0x00000000;
809 private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};
4564 case VISIBLE: out.append('V'); break;
5657 * Only {@link #VISIBLE} views are considered focusable.
5674 return (mViewFlags & VISIBILITY_MASK) == VISIBLE && isFocusable();
6253 structure.setVisibility(VISIBLE);
6504 if (mAttachInfo.mWindowVisibility != View.VISIBLE) {
6515 view.getVisibility() != VISIBLE) {
7044 * @return True if this view and all of its ancestors are {@link #VISIBLE}
7050 if ((current.mViewFlags & VISIBILITY_MASK) != VISIBLE) {
7410 * @return One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
7414 @ViewDebug.IntToString(from = VISIBLE, to = "VISIBLE"),
7426 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
8308 if ((mViewFlags & VISIBILITY_MASK) != VISIBLE) {
8461 (mViewFlags & VISIBILITY_MASK) != VISIBLE) {
8823 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
9580 * @param visibility The new visibility of changedView: {@link #VISIBLE},
9594 * @param visibility The new visibility, one of {@link #VISIBLE},
9598 final boolean visible = visibility == VISIBLE && getVisibility() == VISIBLE;
9620 * {@link #VISIBLE} or {@link #INVISIBLE}.
9633 * {@link #VISIBLE} or {@link #INVISIBLE}.
9652 * (between {@link #GONE}, {@link #INVISIBLE}, and {@link #VISIBLE}). Note
9661 if (visibility == VISIBLE) {
9668 * (either {@link #GONE}, {@link #INVISIBLE}, or {@link #VISIBLE}).
9751 if ((visibility & VISIBILITY_MASK) == VISIBLE) {
10566 if (newVisibility == VISIBLE) {
10610 /* Check if the VISIBLE bit has changed */
10633 if (newVisibility != VISIBLE && mAttachInfo != null) {
12613 return (mViewFlags & VISIBILITY_MASK) != VISIBLE && mCurrentAnimation == null &&
14494 // This works because VISIBLE < INVISIBLE < GONE.
16719 if ((mViewFlags & VISIBILITY_MASK) == VISIBLE || mGhostView != null) {
17292 background.setVisible(getVisibility() == VISIBLE, false);
20743 * @param transitioningViews This View will be added to transitioningViews if it is VISIBLE and
20749 if (getVisibility() == View.VISIBLE) {
20760 if (getVisibility() == VISIBLE || mGhostView != null) {