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

/frameworks/base/core/java/android/provider/
H A DCalendarContract.java396 public static final String VISIBLE = "visible"; field in interface:CalendarContract.CalendarColumns
539 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, VISIBLE);
633 * <li>{@link #VISIBLE}</li>
1654 VISIBLE,
1688 private static final String WHERE_CALENDARS_SELECTED = Calendars.VISIBLE + "=?";
/frameworks/base/core/java/android/view/
H A DView.java707 public static final int VISIBLE = 0x00000000; field in class:View
729 private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};
4398 * Only {@link #VISIBLE} views are considered focusable.
4406 return (mViewFlags & VISIBILITY_MASK) == VISIBLE && isFocusable();
4955 && mAttachInfo.mWindowVisibility == View.VISIBLE
5329 * @return True if this view and all of its ancestors are {@link #VISIBLE}
5335 if ((current.mViewFlags & VISIBILITY_MASK) != VISIBLE) {
5492 * @return One of {@link #VISIBLE}, {@link #INVISIBLE}, or {@link #GONE}.
5496 @ViewDebug.IntToString(from = VISIBLE, to = "VISIBLE"),
[all...]

Completed in 822 milliseconds