Searched defs:windowId (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java174 public boolean clearWindowContentFrameStats(int windowId) throws RemoteException { argument
183 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
194 public WindowContentFrameStats getWindowContentFrameStats(int windowId) throws RemoteException { argument
203 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
H A DUiAutomation.java762 * @param windowId The window id.
771 public boolean clearWindowContentFrameStats(int windowId) { argument
777 Log.i(LOG_TAG, "Clearing content frame stats for window: " + windowId);
780 return mUiAutomationConnection.clearWindowContentFrameStats(windowId);
797 * final int windowId = getWindows().get(0).getId();
800 * uiAutimation.clearWindowContentFrameStats(windowId);
805 * WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
808 * @param windowId The window id.
816 public WindowContentFrameStats getWindowContentFrameStats(int windowId) { argument
822 Log.i(LOG_TAG, "Getting content frame stats for window: " + windowId);
[all...]
H A DActivity.java7757 int windowId) {
7762 if (rootView != null && rootView.getAccessibilityWindowId() == windowId) {
7756 autofillClientFindViewByAccessibilityIdTraversal(int viewId, int windowId) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityCache.java107 final int windowId = window.getId();
108 AccessibilityWindowInfo oldWindow = mWindowCache.get(windowId);
112 mWindowCache.put(windowId, AccessibilityWindowInfo.obtain(window));
161 final int windowId = event.getWindowId();
165 clearSubTreeLocked(windowId, sourceId);
167 refreshCachedNodeLocked(windowId, sourceId);
188 private void refreshCachedNodeLocked(int windowId, long sourceId) { argument
193 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId);
207 clearSubTreeLocked(windowId, sourceId);
214 * @param windowId Th
218 getNode(int windowId, long accessibilityNodeId) argument
270 getWindow(int windowId) argument
380 clearNodesForWindowLocked(int windowId) argument
405 clearSubTreeLocked(int windowId, long rootNodeId) argument
[all...]
H A DAccessibilityEvent.java1062 * @param windowId The ID of the window that changed
1070 int windowId, int windowChangeTypes) {
1072 event.setWindowId(windowId);
1069 obtainWindowsChangedEvent( int windowId, int windowChangeTypes) argument
H A DAccessibilityRecord.java193 * @param windowId The window id.
197 public void setWindowId(int windowId) { argument
198 mSourceWindowId = windowId;
H A DAccessibilityNodeInfo.java2994 * @param windowId The window id.
2998 public void setSourceNodeId(long sourceId, int windowId) { argument
3001 mWindowId = windowId;
3811 builder.append("; windowId: " + mWindowId);
/frameworks/base/core/tests/coretests/src/android/view/accessibility/
H A DAccessibilityServiceConnectionImpl.java71 public AccessibilityWindowInfo getWindow(int windowId) { argument
H A DAccessibilityCacheTest.java548 private AccessibilityNodeInfo getNodeWithA11yAndWindowId(int a11yId, int windowId) { argument
550 AccessibilityNodeInfo.obtain(getMockViewWithA11yAndWindowIds(a11yId, windowId));
555 private View getMockViewWithA11yAndWindowIds(int a11yId, int windowId) { argument
558 when(mockView.getAccessibilityWindowId()).thenReturn(windowId);
/frameworks/base/core/java/android/transition/
H A DTransition.java1681 WindowId windowId = sceneRoot.getWindowId();
1684 if (info.view != null && windowId != null && windowId.equals(info.windowId)) {
1714 WindowId windowId = sceneRoot.getWindowId();
1717 if (info.view != null && windowId != null && windowId.equals(info.windowId)) {
1747 WindowId windowId = sceneRoot.getWindowId();
1752 if (oldInfo != null && oldInfo.view != null && oldInfo.windowId
2358 WindowId windowId; field in class:Transition.AnimationInfo
2361 AnimationInfo(View view, String name, Transition transition, WindowId windowId, TransitionValues values) argument
[all...]
/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java490 * @param windowId The accessibility window id where to search
494 @Nullable View autofillClientFindViewByAccessibilityIdTraversal(int viewId, int windowId); argument
2309 final int windowId = event.getWindowId();
2311 if (notifyViewEntered(windowId, nodeId, mFocusedBounds)) {
2312 mFocusedWindowId = windowId;
2349 private boolean notifyViewEntered(int windowId, long nodeId, Rect focusedBounds) { argument
2354 final View view = findViewByAccessibilityId(windowId, nodeId);
2375 private void notifyViewExited(int windowId, long nodeId) { argument
2380 final View view = findViewByAccessibilityId(windowId, nodeId);
2387 private void notifyValueChanged(int windowId, lon argument
2404 notifyViewClicked(int windowId, long nodeId) argument
2427 findViewByAccessibilityId(int windowId, long nodeId) argument
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAbstractAccessibilityServiceConnection.java151 * @param windowId The id of the window of interest
154 @Nullable MagnificationSpec getCompatibleMagnificationSpecLocked(int windowId); argument
174 * @param windowId The id of the window of interest
178 RemoteAccessibilityConnection getConnectionLocked(int windowId); argument
404 public AccessibilityWindowInfo getWindow(int windowId) { argument
415 AccessibilityWindowInfo window = mSecurityPolicy.findA11yWindowInfoById(windowId);
1229 private int resolveAccessibilityWindowIdForFindFocusLocked(int windowId, int focusType) { argument
1230 if (windowId == AccessibilityWindowInfo.ACTIVE_WINDOW_ID) {
1233 if (windowId == AccessibilityWindowInfo.ANY_WINDOW_ID) {
1240 return windowId;
[all...]
H A DAccessibilityManagerService.java683 final int windowId = sNextWindowId++;
689 windowId, connection, packageName, resolvedUid, UserHandle.USER_ALL);
691 mGlobalInteractionConnections.put(windowId, wrapper);
692 mGlobalWindowTokens.put(windowId, windowToken.asBinder());
695 + " with windowId: " + windowId + " and token: "
700 windowId, connection, packageName, resolvedUid, resolvedUserId);
703 userState.mInteractionConnections.put(windowId, wrapper);
704 userState.mWindowTokens.put(windowId, windowToken.asBinder());
707 + " with windowId
840 getWindowToken(int windowId, int userId) argument
997 getWindowBounds(int windowId, Rect outBounds) argument
1261 removeAccessibilityInteractionConnectionLocked(int windowId, int userId) argument
2259 getCompatibleMagnificationSpecLocked(int windowId) argument
2456 RemoteAccessibilityConnection(int windowId, IAccessibilityInteractionConnection connection, String packageName, int uid, int userId) argument
2518 clearAccessibilityFocus(IntSupplier windowId) argument
2522 clearAccessibilityFocus(int windowId) argument
2526 findWindowTokenLocked(int windowId) argument
2645 getConnectionLocked(int windowId) argument
2853 clearAccessibilityFocusNotLocked(int windowId) argument
2926 getAccessibilityFocusNotLocked(int windowId) argument
3243 computePartialInteractiveRegionForWindowLocked(int windowId, Region outRegion) argument
3286 updateActiveAndAccessibilityFocusedWindowLocked(int windowId, long nodeId, int eventType, int eventAction) argument
3400 setActiveWindowLocked(int windowId) argument
3426 setAccessibilityFocusedWindowLocked(int windowId) argument
3454 canGetAccessibilityNodeInfoLocked( AbstractAccessibilityServiceConnection service, int windowId) argument
3542 isRetrievalAllowingWindowLocked(int windowId) argument
3558 isShellAllowedToRetrieveWindowLocked(int windowId) argument
3576 findA11yWindowInfoById(int windowId) argument
3580 findWindowInfoById(int windowId) argument
[all...]
/frameworks/support/transition/src/main/java/androidx/transition/
H A DTransition.java1720 WindowIdImpl windowId = ViewUtils.getWindowId(sceneRoot);
1723 if (info.mView != null && windowId.equals(info.mWindowId)) {
1753 WindowIdImpl windowId = ViewUtils.getWindowId(sceneRoot);
1756 if (info.mView != null && windowId.equals(info.mWindowId)) {
1786 WindowIdImpl windowId = ViewUtils.getWindowId(sceneRoot);
1792 && windowId.equals(oldInfo.mWindowId)) {
1989 WindowIdImpl windowId = ViewUtils.getWindowId(sceneRoot);
1992 if (info.mView != null && windowId != null && windowId.equals(info.mWindowId)) {
2357 AnimationInfo(View view, String name, Transition transition, WindowIdImpl windowId, argument
[all...]
/frameworks/base/media/java/android/media/
H A DCea708CaptionRenderer.java381 int windowId = mCommand - Const.CODE_C1_CW0;
382 emitCaptionEvent(new CaptionEvent(CAPTION_EMIT_TYPE_COMMAND_CWX, windowId));
384 Log.d(TAG, String.format("CaptionCommand CWX windowId: %d", windowId));
586 int windowId = mCommand - Const.CODE_C1_DF0;
601 new CaptionWindow(windowId, visible, rowLock, columnLock, priority,
606 "CaptionCommand DFx windowId: %d, priority: %d, columnLock: %s, "
611 windowId, priority, columnLock, rowLock, visible, anchorVertical,
1477 private void setCurrentWindowLayout(int windowId) { argument
1478 if (windowId <
[all...]

Completed in 327 milliseconds