HomeSort by relevance Sort by last modified time
    Searched refs:windowId (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/view/accessibility/
AccessibilityCache.java 107 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) {
193 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId);
207 clearSubTreeLocked(windowId, sourceId);
214 * @param windowId The id of the window hosting the node
    [all...]
IAccessibilityManager.aidl 64 IBinder getWindowToken(int windowId, int userId);
  /external/autotest/client/deps/graphics/graphics_test_extension/
background.js 24 console.log("Set window " + sender.tab.windowId + " to fullscreen.");
25 chrome.windows.update(sender.tab.windowId, {state: "fullscreen"});
27 console.log("Update window " + sender.tab.windowId + ": " +
29 chrome.windows.update(sender.tab.windowId, message.updateInfo);
31 console.log("Move window " + sender.tab.windowId +
46 chrome.windows.update(sender.tab.windowId, {
51 chrome.windows.update(sender.tab.windowId, {state: "fullscreen"});
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 42 boolean clearWindowContentFrameStats(int windowId);
43 WindowContentFrameStats getWindowContentFrameStats(int windowId);
UiAutomationConnection.java 174 public boolean clearWindowContentFrameStats(int windowId) throws RemoteException {
183 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
194 public WindowContentFrameStats getWindowContentFrameStats(int windowId) throws RemoteException {
203 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
UiAutomation.java 762 * @param windowId The window id.
771 public boolean clearWindowContentFrameStats(int windowId) {
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) {
822 Log.i(LOG_TAG, "Getting content frame stats for window: " + windowId);
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/cc/
CaptionTrackRenderer.java 164 private void setCurrentWindowLayout(int windowId) {
165 if (windowId < 0 || windowId >= mCaptionWindowLayouts.length) {
168 CaptionWindowLayout windowLayout = mCaptionWindowLayouts[windowId];
173 Log.d(TAG, "setCurrentWindowLayout to " + windowId);
271 int windowId = window.id;
272 if (windowId < 0 || windowId >= mCaptionWindowLayouts.length) {
275 CaptionWindowLayout windowLayout = mCaptionWindowLayouts[windowId];
280 mCurrentWindowLayout = mCaptionWindowLayouts[windowId] = windowLayout
    [all...]
Cea708Parser.java 486 int windowId = mCommand - Cea708Data.CODE_C1_CW0;
487 emitCaptionEvent(new CaptionEvent(CAPTION_EMIT_TYPE_COMMAND_CWX, windowId));
489 Log.d(TAG, String.format("CaptionCommand CWX windowId: %d", windowId));
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/accessibility/
AccessibilityInteractionClientTest.java 62 final int windowId = 0x1234;
65 nodeFromConnection.setSourceNodeId(accessibilityNodeId, windowId);
69 MOCK_CONNECTION_ID, windowId, accessibilityNodeId, true, 0, null);
AccessibilityServiceConnectionImpl.java 71 public AccessibilityWindowInfo getWindow(int windowId) {
AccessibilityCacheTest.java 548 private AccessibilityNodeInfo getNodeWithA11yAndWindowId(int a11yId, int windowId) {
550 AccessibilityNodeInfo.obtain(getMockViewWithA11yAndWindowIds(a11yId, windowId));
555 private View getMockViewWithA11yAndWindowIds(int a11yId, int windowId) {
558 when(mockView.getAccessibilityWindowId()).thenReturn(windowId);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
WindowsLoader.java 61 String windowId = line.substring(0, index);
65 id = (int) Long.parseLong(windowId, 16);
67 id = Integer.parseInt(windowId, 16);
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityManagerService.java 683 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: " + windowId + " and userId:" + mCurrentUserI
    [all...]
AbstractAccessibilityServiceConnection.java 151 * @param windowId The id of the window of interest
154 @Nullable MagnificationSpec getCompatibleMagnificationSpecLocked(int windowId);
174 * @param windowId The id of the window of interest
178 RemoteAccessibilityConnection getConnectionLocked(int windowId);
404 public AccessibilityWindowInfo getWindow(int windowId) {
415 AccessibilityWindowInfo window = mSecurityPolicy.findA11yWindowInfoById(windowId);
    [all...]
  /cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationTest.java 82 final int windowId = findAppWindowId(uiAutomation.getWindows());
83 assertTrue(windowId >= 0);
86 assertTrue(uiAutomation.clearWindowContentFrameStats(windowId));
96 WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
143 final int windowId = findAppWindowId(uiAutomation.getWindows());
144 assertTrue(windowId >= 0);
147 assertTrue(uiAutomation.clearWindowContentFrameStats(windowId));
150 WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 61 AccessibilityWindowInfo getWindow(int windowId);
  /frameworks/base/core/java/android/transition/
Transition.java 39 import android.view.WindowId;
    [all...]
  /frameworks/base/media/java/android/media/
Cea708CaptionRenderer.java 381 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,
    [all...]
  /frameworks/base/core/java/android/view/autofill/
AutofillManager.java 490 * @param windowId The accessibility window id where to search
494 @Nullable View autofillClientFindViewByAccessibilityIdTraversal(int viewId, int windowId);
    [all...]
  /frameworks/support/transition/src/main/java/androidx/transition/
Transition.java     [all...]
  /prebuilts/devtools/tools/lib/
chimpchat.jar 
  /prebuilts/gradle-plugin/com/android/tools/chimpchat/24.4.0-beta6/
chimpchat-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/chimpchat/24.5.0/
chimpchat-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/chimpchat/25.0.0-alpha1/
chimpchat-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/chimpchat/25.3.0/
chimpchat-25.3.0.jar 

Completed in 242 milliseconds

1 2 3 4