Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DViewGroup.java160 private HashSet<View> mDragNotifiedChildren; field in ViewGroup
1391 if (mDragNotifiedChildren == null) { in dispatchDragEvent()
1392 mDragNotifiedChildren = new HashSet<View>(); in dispatchDragEvent()
1394 mDragNotifiedChildren.clear(); in dispatchDragEvent()
1420 if (mDragNotifiedChildren != null) { in dispatchDragEvent()
1421 for (View child : mDragNotifiedChildren) { in dispatchDragEvent()
1428 mDragNotifiedChildren.clear(); in dispatchDragEvent()
1561 if (! mDragNotifiedChildren.contains(child)) { in notifyChildOfDrag()
1562 mDragNotifiedChildren.add(child); in notifyChildOfDrag()
3054 mDragNotifiedChildren = null; in dispatchDetachedFromWindow()