Searched defs:VISIBLE (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/provider/
H A DCalendarContract.java400 public static final String VISIBLE = "visible"; field in interface:CalendarContract.CalendarColumns
553 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, VISIBLE);
647 * <li>{@link #VISIBLE}</li>
1691 VISIBLE,
1726 private static final String WHERE_CALENDARS_SELECTED = Calendars.VISIBLE + "=?";
/frameworks/base/core/java/android/view/
H A DView.java759 @IntDef({VISIBLE, INVISIBLE, GONE})
768 public static final int VISIBLE = 0x00000000; field in class:View
790 private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};
4256 case VISIBLE: out.append('V'); break;
5141 * Only {@link #VISIBLE} views are considered focusable.
5158 return (mViewFlags & VISIBILITY_MASK) == VISIBLE && isFocusable();
5793 if (mAttachInfo.mWindowVisibility != View.VISIBLE) {
5804 view.getVisibility() != VISIBLE) {
6332 * @return True if this view and all of its ancestors are {@link #VISIBLE}
6338 if ((current.mViewFlags & VISIBILITY_MASK) != VISIBLE) {
[all...]

Completed in 295 milliseconds