Searched refs:customOrder (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | ViewGroup.java | 2045 final boolean customOrder = preorderedList == null in onResolvePointerIcon() 2049 final int childIndex = getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in onResolvePointerIcon() 2105 private int getAndVerifyPreorderedIndex(int childrenCount, int i, boolean customOrder) { in getAndVerifyPreorderedIndex() argument 2107 if (customOrder) { in getAndVerifyPreorderedIndex() 2143 final boolean customOrder = preorderedList == null in dispatchHoverEvent() 2149 childrenCount, i, customOrder); in dispatchHoverEvent() 2364 final boolean customOrder = preorderedList == null in dispatchTooltipHoverEvent() 2369 getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in dispatchTooltipHoverEvent() 2552 final boolean customOrder = preorderedList == null in dispatchGenericPointerEvent() 2556 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 | 10286 final boolean customOrder = parentGroup.isChildrenDrawingOrderEnabled(); 10287 final int childDrawIndex = ((childIndex >= 0) && customOrder) ? parentGroup 10289 final int numChildrenToIterate = customOrder ? childCount : childDrawIndex; 10292 final int otherDrawIndex = (customOrder ?
|