Searched refs:customOrder (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | ViewGroup.java | 2008 final boolean customOrder = preorderedList == null in onResolvePointerIcon() 2012 final int childIndex = getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in onResolvePointerIcon() 2050 private int getAndVerifyPreorderedIndex(int childrenCount, int i, boolean customOrder) { in getAndVerifyPreorderedIndex() argument 2052 if (customOrder) { in getAndVerifyPreorderedIndex() 2088 final boolean customOrder = preorderedList == null in dispatchHoverEvent() 2094 childrenCount, i, customOrder); in dispatchHoverEvent() 2309 final boolean customOrder = preorderedList == null in dispatchTooltipHoverEvent() 2314 getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in dispatchTooltipHoverEvent() 2497 final boolean customOrder = preorderedList == null in dispatchGenericPointerEvent() 2501 final int childIndex = getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in dispatchGenericPointerEvent() [all …]
|
D | GhostView.java | 326 final boolean customOrder = preorderedList == null in isOnTop() 334 int childIndex = customOrder ? parent.getChildDrawingOrder(childrenCount, i) : i; in isOnTop()
|
D | View.java | 10072 final boolean customOrder = parentGroup.isChildrenDrawingOrderEnabled(); 10073 final int childDrawIndex = ((childIndex >= 0) && customOrder) ? parentGroup 10075 final int numChildrenToIterate = customOrder ? childCount : childDrawIndex; 10078 final int otherDrawIndex = (customOrder ?
|