Lines Matching defs:VISIBLE

737     public static final int VISIBLE = 0x00000000;
759 private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};
3979 case VISIBLE: out.append('V'); break;
4781 * Only {@link #VISIBLE} views are considered focusable.
4789 return (mViewFlags & VISIBILITY_MASK) == VISIBLE && isFocusable();
5383 if (mAttachInfo.mWindowVisibility != View.VISIBLE) {
5394 view.getVisibility() != VISIBLE) {
5827 * @return True if this view and all of its ancestors are {@link #VISIBLE}
5833 if ((current.mViewFlags & VISIBILITY_MASK) != VISIBLE) {
6016 * @return One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
6020 @ViewDebug.IntToString(from = VISIBLE, to = "VISIBLE"),
6031 * @param visibility One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
6037 if (mBackground != null) mBackground.setVisible(visibility == VISIBLE, false);
6831 if ((mViewFlags & VISIBILITY_MASK) != VISIBLE) {
6984 (mViewFlags & VISIBILITY_MASK) != VISIBLE) {
7946 * @param visibility The new visibility of changedView: {@link #VISIBLE},
7957 * @param visibility The new visibility of changedView: {@link #VISIBLE},
7961 if (visibility == VISIBLE) {
7977 * {@link #VISIBLE} or {@link #INVISIBLE}.
7990 * {@link #VISIBLE} or {@link #INVISIBLE}.
8009 * (between {@link #GONE}, {@link #INVISIBLE}, and {@link #VISIBLE}). Note
8018 if (visibility == VISIBLE) {
8025 * (either {@link #GONE}, {@link #INVISIBLE}, or {@link #VISIBLE}).
8107 if ((visibility & VISIBILITY_MASK) == VISIBLE) {
8883 if (newVisibility == VISIBLE) {
8927 /* Check if the VISIBLE bit has changed */
8950 if (newVisibility != VISIBLE) {
10796 return (mViewFlags & VISIBILITY_MASK) != VISIBLE && mCurrentAnimation == null &&
14908 if ((mViewFlags & VISIBILITY_MASK) == VISIBLE) {
15386 background.setVisible(getVisibility() == VISIBLE, false);