Home
last modified time | relevance | path

Searched refs:ancestor (Results 1 – 4 of 4) 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/
DWindowContainer.java668 boolean isDescendantOf(WindowContainer ancestor) { in isDescendantOf() argument
670 if (parent == ancestor) return true; in isDescendantOf()
671 return (parent != null) && parent.isDescendantOf(ancestor); in isDescendantOf()
/frameworks/layoutlib/validator/resources/
Dstrings.properties53 … <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.java13357 ViewParent ancestor = mParent;
13358 while (ancestor instanceof ViewGroup) {
13359 final ViewGroup vgAncestor = (ViewGroup) ancestor;
13364 ancestor = vgAncestor.getParent();