Searched refs:ancestor (Results 1 – 6 of 6) sorted by relevance
80 uint32_t ancestor = packed_locale; in findAncestors() local83 if (out != nullptr) out[count] = ancestor; in findAncestors()86 if (stop_list[i] == ancestor) { in findAncestors()91 ancestor = findParent(ancestor, script); in findAncestors()92 } while (ancestor != PACKED_ROOT); in findAncestors()
867 WindowContainer ancestor = newParent; in collectReparentChange() local868 while (prevParent != ancestor && !prevParent.isDescendantOf(ancestor)) { in collectReparentChange()869 ancestor = ancestor.getParent(); in collectReparentChange()871 change.mCommonAncestor = ancestor; in collectReparentChange()2713 WindowContainer<?> ancestor = findCommonAncestor(sortedTargets, wc); in calculateTransitionRoots() local2717 final boolean hasReparent = !wc.isDescendantOf(ancestor); in calculateTransitionRoots()2720 Slog.e(TAG, "Did not find common ancestor! Ancestor= " + ancestor in calculateTransitionRoots()2723 while (leashReference.getParent() != ancestor) { in calculateTransitionRoots()2736 ancestor.getBounds().left, ancestor.getBounds().top); in calculateTransitionRoots()3042 WindowContainer<?> ancestor = topApp.getParent(); in findCommonAncestor() local[all …]
954 boolean isDescendantOf(WindowContainer ancestor) { in isDescendantOf() argument956 if (parent == ancestor) return true; in isDescendantOf()957 return (parent != null) && parent.isDescendantOf(ancestor); in isDescendantOf()
7207 AdapterView<?> ancestor = getAdapterViewAncestor(v);7208 if (ancestor == null) {7214 if (!(ancestor.getTag() instanceof PendingIntent)) {7221 pi = (PendingIntent) ancestor.getTag();
126 … <tt>%2$ddp</tt>. Consider increasing the size of this item\'s clipping ancestor, or allowing a la…
15262 ViewParent ancestor = mParent;15263 while (ancestor instanceof ViewGroup) {15264 final ViewGroup vgAncestor = (ViewGroup) ancestor;15269 ancestor = vgAncestor.getParent();