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

1 2

  /frameworks/base/core/java/android/view/accessibility/
AccessibilityCache.java 80 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) {
163 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId);
177 clearSubTreeLocked(windowId, sourceId);
184 * @param windowId The id of the window hosting the node
    [all...]
IAccessibilityManager.aidl 61 IBinder getWindowToken(int windowId, int userId);
AccessibilityRecord.java 179 * @param windowId The window id.
183 public void setWindowId(int windowId) {
184 mSourceWindowId = windowId;
  /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 41 boolean clearWindowContentFrameStats(int windowId);
42 WindowContentFrameStats getWindowContentFrameStats(int windowId);
UiAutomation.java 773 * @param windowId The window id.
782 public boolean clearWindowContentFrameStats(int windowId) {
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) {
833 Log.i(LOG_TAG, "Getting content frame stats for window: " + windowId);
    [all...]
UiAutomationConnection.java 167 public boolean clearWindowContentFrameStats(int windowId) throws RemoteException {
176 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
187 public WindowContentFrameStats getWindowContentFrameStats(int windowId) throws RemoteException {
196 IBinder token = mAccessibilityManager.getWindowToken(windowId, callingUserId);
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/cc/
CaptionTrackRenderer.java 169 private void setCurrentWindowLayout(int windowId) {
170 if (windowId < 0 || windowId >= mCaptionWindowLayouts.length) {
173 CaptionWindowLayout windowLayout = mCaptionWindowLayouts[windowId];
178 Log.d(TAG, "setCurrentWindowLayout to " + windowId);
272 int windowId = window.id;
273 if (windowId < 0 || windowId >= mCaptionWindowLayouts.length) {
276 CaptionWindowLayout windowLayout = mCaptionWindowLayouts[windowId];
281 mCurrentWindowLayout = mCaptionWindowLayouts[windowId] = windowLayout
    [all...]
Cea708Parser.java 459 int windowId = mCommand - Cea708Data.CODE_C1_CW0;
460 emitCaptionEvent(new CaptionEvent(CAPTION_EMIT_TYPE_COMMAND_CWX, windowId));
462 Log.d(TAG, String.format("CaptionCommand CWX windowId: %d", windowId));
664 int windowId = mCommand - Cea708Data.CODE_C1_DF0;
679 new CaptionWindow(windowId, visible, rowLock, columnLock, priority,
684 "CaptionCommand DFx windowId: %d, priority: %d, columnLock: %s, "
    [all...]
  /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 548 final int windowId = sNextWindowId++;
554 windowId, connection, UserHandle.USER_ALL);
556 mGlobalInteractionConnections.put(windowId, wrapper);
557 mGlobalWindowTokens.put(windowId, windowToken.asBinder());
560 + " with windowId: " + windowId + " and token: " + windowToken.asBinder());
564 windowId, connection, resolvedUserId);
567 userState.mInteractionConnections.put(windowId, wrapper);
568 userState.mWindowTokens.put(windowId, windowToken.asBinder());
571 + " with windowId: " + windowId + " and userId:" + mCurrentUserI
    [all...]
  /cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationTest.java 80 final int windowId = findAppWindowId(uiAutomation.getWindows());
81 assertTrue(windowId >= 0);
84 assertTrue(uiAutomation.clearWindowContentFrameStats(windowId));
94 WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
141 final int windowId = findAppWindowId(uiAutomation.getWindows());
142 assertTrue(windowId >= 0);
145 assertTrue(uiAutomation.clearWindowContentFrameStats(windowId));
148 WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 60 AccessibilityWindowInfo getWindow(int windowId);
  /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/transition/
Transition.java 39 import android.view.WindowId;
    [all...]
  /prebuilts/devtools/tools/lib/
chimpchat.jar 
monkeyrunner.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 
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 138 int windowId = Integer.parseInt(windowString);
142 return client.findAccessibilityNodeInfoByAccessibilityId(connectionId, windowId, viewId,
  /external/autotest/client/site_tests/power_LoadTest/extension/
test.js 73 chrome.tabs.create({'windowId': win.id, url: task.tabs[i]});
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-htmlunit-driver/2.42.2/
selenium-htmlunit-driver-2.42.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.4.0-beta6/
monkeyrunner-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.5.0/
monkeyrunner-24.5.0.jar 

Completed in 327 milliseconds

1 2