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
546 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, VISIBLE);
640 * <li>{@link #VISIBLE}</li>
1678 VISIBLE,
1712 private static final String WHERE_CALENDARS_SELECTED = Calendars.VISIBLE + "=?";
/frameworks/base/core/java/android/view/
H A DView.java719 public static final int VISIBLE = 0x00000000; field in class:View
741 private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};
3743 case VISIBLE: out.append('V'); break;
4533 * Only {@link #VISIBLE} views are considered focusable.
4541 return (mViewFlags & VISIBILITY_MASK) == VISIBLE && isFocusable();
5092 if (mAttachInfo.mWindowVisibility != View.VISIBLE) {
5102 if (view.getAlpha() <= 0 || view.getVisibility() != VISIBLE) {
5532 * @return True if this view and all of its ancestors are {@link #VISIBLE}
5538 if ((current.mViewFlags & VISIBILITY_MASK) != VISIBLE) {
5694 * @return One of {@link #VISIBLE}, {
[all...]

Completed in 538 milliseconds