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.java737 public static final int VISIBLE = 0x00000000; field in class:View
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}, {
[all...]

Completed in 107 milliseconds