Home
last modified time | relevance | path

Searched refs:WILL_NOT_DRAW (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
DView.java1293 static final int WILL_NOT_DRAW = 0x00000080; field in View
5458 out.append((mViewFlags&DRAW_MASK) == WILL_NOT_DRAW ? '.' : 'D');
9764 setFlags(willNotDraw ? WILL_NOT_DRAW : 0, DRAW_MASK); in setWillNotDraw()
9774 return (mViewFlags & DRAW_MASK) == WILL_NOT_DRAW; in willNotDraw()
13371 if ((mViewFlags & WILL_NOT_DRAW) != 0) {
20056 } else if ((mViewFlags & WILL_NOT_DRAW) != 0 && mBackground == null
20411 if ((mViewFlags & WILL_NOT_DRAW) != 0
20604 } else if ((mViewFlags & WILL_NOT_DRAW) != 0 && mBackground == null
DViewGroup.java606 setFlags(WILL_NOT_DRAW, DRAW_MASK); in initViewGroup()