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

1 2

  /frameworks/base/core/java/android/view/accessibility/
AccessibilityCache.java 60 final int windowId = window.getId();
61 AccessibilityWindowInfo oldWindow = mWindowCache.get(windowId);
65 mWindowCache.put(windowId, AccessibilityWindowInfo.obtain(window));
111 final int windowId = event.getWindowId();
115 clearSubTreeLocked(windowId, sourceId);
117 refreshCachedNodeLocked(windowId, sourceId);
138 private void refreshCachedNodeLocked(int windowId, long sourceId) {
143 LongSparseArray<AccessibilityNodeInfo> nodes = mNodeCache.get(windowId);
157 clearSubTreeLocked(windowId, sourceId);
164 * @param windowId The id of the window hosting the node
    [all...]
IAccessibilityManager.aidl 61 IBinder getWindowToken(int windowId);
AccessibilityRecord.java 173 * @param windowId The window id.
177 public void setWindowId(int windowId) {
178 mSourceWindowId = windowId;
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 42 boolean clearWindowContentFrameStats(int windowId);
43 WindowContentFrameStats getWindowContentFrameStats(int windowId);
UiAutomationConnection.java 160 public boolean clearWindowContentFrameStats(int windowId) throws RemoteException {
168 IBinder token = mAccessibilityManager.getWindowToken(windowId);
179 public WindowContentFrameStats getWindowContentFrameStats(int windowId) throws RemoteException {
187 IBinder token = mAccessibilityManager.getWindowToken(windowId);
UiAutomation.java 711 * @param windowId The window id.
720 public boolean clearWindowContentFrameStats(int windowId) {
726 Log.i(LOG_TAG, "Clearing content frame stats for window: " + windowId);
729 return mUiAutomationConnection.clearWindowContentFrameStats(windowId);
746 * final int windowId = getWindows().get(0).getId();
749 * uiAutimation.clearWindowContentFrameStats(windowId);
754 * WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
757 * @param windowId The window id.
765 public WindowContentFrameStats getWindowContentFrameStats(int windowId) {
771 Log.i(LOG_TAG, "Getting content frame stats for window: " + windowId);
    [all...]
  /sdk/emulator/opengl/tests/emulator_test_renderer/
main.cpp 43 FBNativeWindowType windowId = NULL;
78 windowId = wminfo.window;
85 windowId = wminfo.info.x11.window;
87 windowId = wminfo.nsWindowPtr;
102 inited = createOpenGLSubwindow(windowId, 0, 0,
156 stat = createOpenGLSubwindow(windowId,
169 stat = createOpenGLSubwindow(windowId,
  /external/chromium_org/extensions/renderer/resources/
extension_custom_bindings.js 39 var windowId = WINDOW_ID_NONE;
45 if (properties.windowId != null) {
46 windowId = properties.windowId;
49 return GetExtensionViews(windowId, type);
56 apiFunctions.setHandleRequest('getExtensionTabs', function(windowId) {
57 if (windowId == null)
58 windowId = WINDOW_ID_NONE;
59 return GetExtensionViews(windowId, 'TAB');
  /external/chromium_org/chrome/common/extensions/docs/examples/api/processes/show_tabs/
popup.js 44 displayTabInfo(tab.windowId, tab, outputDiv);
53 function displayTabInfo(windowId, tab, outputDiv) {
58 "<b><a href='#' onclick='showTab(window, " + windowId + ", " + tab.id +
64 function showTab(origWindow, windowId, tabId) {
66 //chrome.windows.update(windowId, {focused: true});
  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
tabs_api.js 65 'windowId': parseInt(document.getElementById('windowId_' + id).value)
79 'windowId': parseInt(document.getElementById('windowId_' + id).value),
89 if (!isInt(args.windowId))
90 delete args.windowId;
147 chrome.windows.onFocusChanged.addListener(function(windowId) {
148 focusedWindowId = windowId;
149 appendToLog('windows.onFocusChanged -- window: ' + windowId);
153 chrome.windows.onRemoved.addListener(function(windowId) {
154 appendToLog('windows.onRemoved -- window: ' + windowId);
160 'tabs.onCreated -- window: ' + tab.windowId + ' tab: ' + tab.id
    [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);
  /sdk/emulator/opengl/host/renderer/
main.cpp 35 fprintf(stderr, "Usage: %s -windowid <windowid> [options]\n", progName);
36 fprintf(stderr, " -windowid <windowid> - window id to render into\n");
50 FBNativeWindowType windowId = 0;
57 if (!strcmp(argv[i], "-windowid")) {
84 windowId = (FBNativeWindowType)iWindowId;
85 if (!windowId) {
122 inited = FrameBuffer::setupSubWindow(windowId,
  /cts/tests/tests/uiautomation/src/android/app/uiautomation/cts/
UiAutomationTest.java 61 final int windowId = findAppWindowId(uiAutomation.getWindows());
62 assertTrue(windowId >= 0);
65 assertTrue(uiAutomation.clearWindowContentFrameStats(windowId));
76 WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
119 final int windowId = findAppWindowId(uiAutomation.getWindows());
120 assertTrue(windowId >= 0);
123 assertTrue(uiAutomation.clearWindowContentFrameStats(windowId));
126 WindowContentFrameStats stats = uiAutomation.getWindowContentFrameStats(windowId);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
tabs_api_handler.js 119 * @param {number} windowId
121 onFocusChanged: function(windowId) {
125 if (windowId == chrome.windows.WINDOW_ID_NONE) {
128 chrome.windows.get(windowId, function(window) {
129 chrome.tabs.getSelected(windowId, function(tab) {
  /sdk/emulator/opengl/tests/translator_tests/GLES_V2/
triangleV2.cpp 359 HWND windowId = NULL;
361 Window windowId = 0;
363 void* windowId = NULL;
383 windowId = wminfo.window;
385 windowId = wminfo.info.x11.window;
387 windowId = createGLView(wminfo.nsWindowPtr,0,0,WINDOW_WIDTH,WINDOW_HEIGHT);
403 egl_surface = eglCreateWindowSurface(d,configs[0],windowId,NULL);
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
AccessibilityManagerService.java 531 final int windowId = sNextWindowId++;
537 windowId, connection, UserHandle.USER_ALL);
539 mGlobalInteractionConnections.put(windowId, wrapper);
540 mGlobalWindowTokens.put(windowId, windowToken.asBinder());
543 + " with windowId: " + windowId + " and token: " + windowToken.asBinder());
547 windowId, connection, resolvedUserId);
550 userState.mInteractionConnections.put(windowId, wrapper);
551 userState.mWindowTokens.put(windowId, windowToken.asBinder());
554 + " with windowId: " + windowId + " and userId:" + mCurrentUserI
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/ttsEngine/console_tts_engine/
console_tts_engine.js 79 ttsWindow = chrome.extension.getViews({"windowId": ttsId})[0];
107 var removedListener = function(windowId, removeInfo) {
108 if (ttsId == windowId) {
  /frameworks/base/core/java/android/accessibilityservice/
IAccessibilityServiceConnection.aidl 57 AccessibilityWindowInfo getWindow(int windowId);
  /sdk/emulator/opengl/tests/translator_tests/GLES_CM/
triangleCM.cpp 152 HWND windowId = NULL;
154 Window windowId = 0;
156 void* windowId = NULL;
176 windowId = wminfo.window;
178 windowId = wminfo.info.x11.window;
180 windowId = createGLView(wminfo.nsWindowPtr,0,0,WINDOW_WIDTH,WINDOW_HEIGHT);
193 egl_surface = eglCreateWindowSurface(d,configs[0],windowId,NULL);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/windows/merge_windows/
background.js 37 {"windowId": targetWindow.id, "index": tabPosition});
  /frameworks/base/core/java/android/transition/
Transition.java 38 import android.view.WindowId;
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
chrome_extension_externs.js 315 * @param {number?} windowId Window Id.
323 chrome.tabs.captureVisibleTab = function(windowId, options, callback) {};
367 * @param {number?} windowId Window id.
370 chrome.tabs.getAllInWindow = function(windowId, callback) {};
383 * @param {number?} windowId Window id.
386 chrome.tabs.getSelected = function(windowId, callback) {};
391 * An object with 'windowId' (number) and 'tabs'
411 * and optional 'windowId' keys.
419 * 'active', 'pinned', 'highlighted', 'status', 'title', 'url', 'windowId',
847 Tab.prototype.windowId;
    [all...]
  /external/chromium_org/chrome/browser/resources/feedback/js/
feedback.js 91 * @param {string} windowId A string with the ID of the window we are opening.
95 function windowOpener(windowId, url) {
98 chrome.app.window.create(url, {id: windowId});
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
bg.js 393 function windowFocusChanged(windowId) {
394 if (windowId == selectedWindowId) {
397 selectedWindowId = windowId;
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 138 int windowId = Integer.parseInt(windowString);
142 return client.findAccessibilityNodeInfoByAccessibilityId(connectionId, windowId, viewId,

Completed in 3135 milliseconds

1 2