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

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityCache.java80 final int windowId = window.getId();
81 AccessibilityWindowInfo oldWindow = mWindowCache.get(windowId);
85 mWindowCache.put(windowId, AccessibilityWindowInfo.obtain(window));
131 final int windowId = event.getWindowId();
135 clearSubTreeLocked(windowId, sourceId);
137 refreshCachedNodeLocked(windowId, sourceId);
158 private void refreshCachedNodeLocked(int windowId, long sourceId) { argument
163 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId);
177 clearSubTreeLocked(windowId, sourceId);
184 * @param windowId Th
188 getNode(int windowId, long accessibilityNodeId) argument
240 getWindow(int windowId) argument
332 clearNodesForWindowLocked(int windowId) argument
357 clearSubTreeLocked(int windowId, long rootNodeId) argument
[all...]
H A DAccessibilityRecord.java179 * @param windowId The window id.
183 public void setWindowId(int windowId) { argument
184 mSourceWindowId = windowId;
/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java167 public boolean clearWindowContentFrameStats(int windowId) throws RemoteException { argument
176 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
187 public WindowContentFrameStats getWindowContentFrameStats(int windowId) throws RemoteException { argument
196 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
H A DUiAutomation.java773 * @param windowId The window id.
782 public boolean clearWindowContentFrameStats(int windowId) { argument
788 Log.i(LOG_TAG, "Clearing content frame stats for window: " + windowId);
791 return mUiAutomationConnection.clearWindowContentFrameStats(windowId);
808 * final int windowId = getWindows().get(0).getId();
811 * uiAutimation.clearWindowContentFrameStats(windowId);
816 * WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
819 * @param windowId The window id.
827 public WindowContentFrameStats getWindowContentFrameStats(int windowId) { argument
833 Log.i(LOG_TAG, "Getting content frame stats for window: " + windowId);
[all...]
/frameworks/support/transition/ics/android/support/transition/
H A DTransitionPort.java802 WindowIdPort windowId = WindowIdPort.getWindowId(sceneRoot);
805 if (info.view != null && windowId.equals(info.windowId)) {
835 WindowIdPort windowId = WindowIdPort.getWindowId(sceneRoot);
838 if (info.view != null && windowId.equals(info.windowId)) {
1235 WindowIdPort windowId; field in class:TransitionPort.AnimationInfo
1237 AnimationInfo(View view, String name, WindowIdPort windowId, TransitionValues values) { argument
1241 this.windowId = windowId;
[all...]
/frameworks/base/core/java/android/transition/
H A DTransition.java1679 WindowId windowId = sceneRoot.getWindowId();
1682 if (info.view != null && windowId != null && windowId.equals(info.windowId)) {
1712 WindowId windowId = sceneRoot.getWindowId();
1715 if (info.view != null && windowId != null && windowId.equals(info.windowId)) {
1745 WindowId windowId = sceneRoot.getWindowId();
1750 if (oldInfo != null && oldInfo.view != null && oldInfo.windowId
2384 WindowId windowId; field in class:Transition.AnimationInfo
2387 AnimationInfo(View view, String name, Transition transition, WindowId windowId, TransitionValues values) 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...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java574 final int windowId = sNextWindowId++;
580 windowId, connection, UserHandle.USER_ALL);
582 mGlobalInteractionConnections.put(windowId, wrapper);
583 mGlobalWindowTokens.put(windowId, windowToken.asBinder());
586 + " with windowId: " + windowId + " and token: " + windowToken.asBinder());
590 windowId, connection, resolvedUserId);
593 userState.mInteractionConnections.put(windowId, wrapper);
594 userState.mWindowTokens.put(windowId, windowToken.asBinder());
597 + " with windowId
756 getWindowToken(int windowId, int userId) argument
849 getWindowBounds(int windowId, Rect outBounds) argument
1021 removeAccessibilityInteractionConnectionLocked(int windowId, int userId) argument
1837 getCompatibleMagnificationSpecLocked(int windowId) argument
1996 AccessibilityConnectionWrapper(int windowId, IAccessibilityInteractionConnection connection, int userId) argument
2517 getWindow(int windowId) argument
3406 getConnectionLocked(int windowId) argument
3430 resolveAccessibilityWindowIdForFindFocusLocked(int windowId, int focusType) argument
3669 clearAccessibilityFocusNotLocked(int windowId) argument
3724 getAccessibilityFocusNotLocked(int windowId) argument
3860 computePartialInteractiveRegionForWindowLocked(int windowId, Region outRegion) argument
3903 updateActiveAndAccessibilityFocusedWindowLocked(int windowId, long nodeId, int eventType, int eventAction) argument
4010 setActiveWindowLocked(int windowId) argument
4024 setAccessibilityFocusedWindowLocked(int windowId) argument
4055 canGetAccessibilityNodeInfoLocked(Service service, int windowId) argument
4136 isRetrievalAllowingWindow(int windowId) argument
4147 findWindowById(int windowId) argument
[all...]

Completed in 1198 milliseconds