Home
last modified time | relevance | path

Searched refs:VISIBILITY_MASK (Results 1 – 6 of 6) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
DResolveInfo.cpp133 m_BitField &= ~VISIBILITY_MASK; in setVisibility()
242 return static_cast<ResolveInfo::Visibility>((m_BitField & VISIBILITY_MASK) >> VISIBILITY_OFFSET); in visibility()
/frameworks/base/core/java/android/view/
DViewGroup.java920 if ((mViewFlags & VISIBILITY_MASK) != VISIBLE) { in hasFocusable()
963 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in addFocusables()
1024 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE in findViewsWithText()
1075 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in addTouchables()
1193 if ((visibility & VISIBILITY_MASK) == VISIBLE) { in dispatchCollectViewAttributes()
1200 visibility | (child.mViewFlags&VISIBILITY_MASK)); in dispatchCollectViewAttributes()
1784 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in addChildrenForAccessibility()
2316 return (child.mViewFlags & VISIBILITY_MASK) == VISIBLE in canViewReceivePointerEvents()
2643 if ((child.mViewFlags & VISIBILITY_MASK) == VISIBLE) { in onRequestFocusInDescendants()
2696 visibility | (child.mViewFlags & VISIBILITY_MASK)); in dispatchAttachedToWindow()
[all …]
DView.java788 static final int VISIBILITY_MASK = 0x0000000C; field in View
3873 viewFlagMasks |= VISIBILITY_MASK;
4255 switch (mViewFlags&VISIBILITY_MASK) { in toString()
5158 return (mViewFlags & VISIBILITY_MASK) == VISIBLE && isFocusable(); in hasFocusable()
6338 if ((current.mViewFlags & VISIBILITY_MASK) != VISIBLE) { in isShown()
6682 return mViewFlags & VISIBILITY_MASK; in getVisibility()
6693 setFlags(visibility, VISIBILITY_MASK); in setVisibility()
7510 if ((mViewFlags & VISIBILITY_MASK) != VISIBLE) {
7663 (mViewFlags & VISIBILITY_MASK) != VISIBLE) {
8889 if ((visibility & VISIBILITY_MASK) == VISIBLE) {
[all …]
DGhostView.java75 mView.mViewFlags = (mView.mViewFlags & ~View.VISIBILITY_MASK) | visibility; in setGhostedVisibility()
DViewRootImpl.java2171 if ((parent.mViewFlags & View.VISIBILITY_MASK) == View.GONE) { in getValidLayoutRequesters()
/frameworks/compile/mclinker/include/mcld/LD/
DResolveInfo.h236 static const uint32_t VISIBILITY_MASK = 0x3 << VISIBILITY_OFFSET; variable