Searched refs:mViewFlags (Results 1 – 4 of 4) sorted by relevance
4341 int mViewFlags; field in View5307 mViewFlags = SOUND_EFFECTS_ENABLED | HAPTIC_FEEDBACK_ENABLED | FOCUSABLE_AUTO; in View()6448 switch (mViewFlags&VISIBILITY_MASK) {6454 out.append((mViewFlags & FOCUSABLE) == FOCUSABLE ? 'F' : '.');6455 out.append((mViewFlags&ENABLED_MASK) == ENABLED ? 'E' : '.');6456 out.append((mViewFlags&DRAW_MASK) == WILL_NOT_DRAW ? '.' : 'D');6457 out.append((mViewFlags&SCROLLBARS_HORIZONTAL) != 0 ? 'H' : '.');6458 out.append((mViewFlags&SCROLLBARS_VERTICAL) != 0 ? 'V' : '.');6459 out.append((mViewFlags&CLICKABLE) != 0 ? 'C' : '.');6460 out.append((mViewFlags&LONG_CLICKABLE) != 0 ? 'L' : '.');[all …]
952 && ((mViewFlags & VISIBILITY_MASK) == VISIBLE) in focusableViewAvailable()1265 if ((mViewFlags & VISIBILITY_MASK) != VISIBLE) { in hasFocusable()1329 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in addFocusables()1379 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in addKeyboardNavigationClusters()1447 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE in findViewsWithText()1519 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in addTouchables()1661 visibility | (child.mViewFlags&VISIBILITY_MASK)); in dispatchCollectViewAttributes()2472 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in addChildrenForAccessibility()3372 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in onRequestFocusInDescendants()3385 && (mDefaultFocus.mViewFlags & VISIBILITY_MASK) == VISIBLE in restoreDefaultFocus()[all …]
775 if (((mViewFlags & VISIBILITY_MASK) == VISIBLE) && mLayer != null) { in setSurfaceTexture()
3555 if ((parent.mViewFlags & View.VISIBILITY_MASK) == View.GONE) { in getValidLayoutRequesters()