Searched refs:customOrder (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | GhostView.java | 326 final boolean customOrder = preorderedList == null in isOnTop() 334 int childIndex = customOrder ? parent.getChildDrawingOrder(childrenCount, i) : i; in isOnTop()
|
D | ViewGroup.java | 2051 final boolean customOrder = preorderedList == null in onResolvePointerIcon() 2055 final int childIndex = getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in onResolvePointerIcon() 2094 private int getAndVerifyPreorderedIndex(int childrenCount, int i, boolean customOrder) { in getAndVerifyPreorderedIndex() argument 2096 if (customOrder) { in getAndVerifyPreorderedIndex() 2132 final boolean customOrder = preorderedList == null in dispatchHoverEvent() 2138 childrenCount, i, customOrder); in dispatchHoverEvent() 2353 final boolean customOrder = preorderedList == null in dispatchTooltipHoverEvent() 2358 getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in dispatchTooltipHoverEvent() 2541 final boolean customOrder = preorderedList == null in dispatchGenericPointerEvent() 2545 final int childIndex = getAndVerifyPreorderedIndex(childrenCount, i, customOrder); in dispatchGenericPointerEvent() [all …]
|
D | View.java | 11523 final boolean customOrder = parentGroup.isChildrenDrawingOrderEnabled(); 11524 final int childDrawIndex = ((childIndex >= 0) && customOrder) ? parentGroup 11526 final int numChildrenToIterate = customOrder ? childCount : childDrawIndex; 11529 final int otherDrawIndex = (customOrder ?
|