Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/
DLocaleData.cpp80 uint32_t ancestor = packed_locale; in findAncestors() local
83 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()
/frameworks/base/services/core/java/com/android/server/wm/
DTransition.java867 WindowContainer ancestor = newParent; in collectReparentChange() local
868 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() local
2717 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 …]
DWindowContainer.java954 boolean isDescendantOf(WindowContainer ancestor) { in isDescendantOf() argument
956 if (parent == ancestor) return true; in isDescendantOf()
957 return (parent != null) && parent.isDescendantOf(ancestor); in isDescendantOf()
/frameworks/base/core/java/android/widget/
DRemoteViews.java7207 AdapterView<?> ancestor = getAdapterViewAncestor(v);
7208 if (ancestor == null) {
7214 if (!(ancestor.getTag() instanceof PendingIntent)) {
7221 pi = (PendingIntent) ancestor.getTag();
/frameworks/layoutlib/validator/resources/
Dstrings.properties126 … <tt>%2$ddp</tt>. Consider increasing the size of this item\'s clipping ancestor, or allowing a la…
/frameworks/base/core/java/android/view/
DView.java15262 ViewParent ancestor = mParent;
15263 while (ancestor instanceof ViewGroup) {
15264 final ViewGroup vgAncestor = (ViewGroup) ancestor;
15269 ancestor = vgAncestor.getParent();