Home
last modified time | relevance | path

Searched refs:childTokens (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
DWindowInfo.java46 public List<IBinder> childTokens; field in WindowInfo
69 if (other.childTokens != null && !other.childTokens.isEmpty()) { in obtain()
70 if (window.childTokens == null) { in obtain()
71 window.childTokens = new ArrayList<IBinder>(other.childTokens); in obtain()
73 window.childTokens.addAll(other.childTokens); in obtain()
99 if (childTokens != null && !childTokens.isEmpty()) { in writeToParcel()
101 parcel.writeBinderList(childTokens); in writeToParcel()
117 builder.append(", children=").append(childTokens); in toString()
132 if (childTokens == null) { in initFromParcel()
133 childTokens = new ArrayList<IBinder>(); in initFromParcel()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DAccessibilityController.java1079 if (window.childTokens != null) { in computeChangedWindows()
1080 final int childTokenCount = window.childTokens.size(); in computeChangedWindows()
1082 if (!addedWindows.contains(window.childTokens.get(j))) { in computeChangedWindows()
1083 window.childTokens.remove(j); in computeChangedWindows()
1174 if (window.childTokens == null) { in obtainPopulatedWindowInfo()
1175 window.childTokens = new ArrayList<IBinder>(); in obtainPopulatedWindowInfo()
1179 window.childTokens.add(child.mClient.asBinder()); in obtainPopulatedWindowInfo()
1231 if (oldWindow.childTokens != null && newWindow.childTokens != null in windowChangedNoLayer()
1232 && !oldWindow.childTokens.equals(newWindow.childTokens)) { in windowChangedNoLayer()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java3161 if (window.childTokens != null) { in populateReportedWindow()
3162 final int childCount = window.childTokens.size(); in populateReportedWindow()
3164 IBinder childToken = window.childTokens.get(i); in populateReportedWindow()