Home | History | Annotate | Download | only in view

Lines Matching defs:GONE

958     @IntDef({VISIBLE, INVISIBLE, GONE})
981 public static final int GONE = 0x00000008;
989 private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};
5751 case GONE: out.append('G'); break;
7204 // Invisible, gone, or disabled views are never focusable.
9971 * @return One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
9977 @ViewDebug.IntToString(from = GONE, to = "GONE")
9987 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
11987 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
12815 * {@link #INVISIBLE} or {@link #GONE}.
12829 * {@link #INVISIBLE} or {@link #GONE}.
12873 * (between {@link #GONE}, {@link #INVISIBLE}, and {@link #VISIBLE}). Note
12969 * (either {@link #GONE}, {@link #INVISIBLE}, or {@link #VISIBLE}).
12975 return mAttachInfo != null ? mAttachInfo.mWindowVisibility : GONE;
14099 /* Check if the GONE bit has changed */
14100 if ((changed & GONE) != 0) {
14104 if (((mViewFlags & VISIBILITY_MASK) == GONE)) {
14114 // GONE views noop invalidation, so invalidate the parent
18314 // This works because VISIBLE < INVISIBLE < GONE.
18363 if (vis != GONE) {
18390 if (vis != GONE) {
18391 onWindowVisibilityChanged(GONE);
20536 case GONE:
20540 output += "GONE";