HomeSort by relevance Sort by last modified time
    Searched defs:windowId (Results 1 - 10 of 10) sorted by null

  /sdk/chimpchat/src/com/android/chimpchat/core/
SelectorAccessibilityIds.java 25 private int windowId;
29 * @param windowId the window id of the node you want to select
32 public SelectorAccessibilityIds(int windowId, int accessibilityId) {
33 this.windowId = windowId;
44 Lists.newArrayList(Integer.toString(windowId), Integer.toString(accessibilityId)));
  /development/tools/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");
52 FBNativeWindowType windowId = NULL;
59 if (!strcmp(argv[i], "-windowid")) {
91 windowId = (FBNativeWindowType)iWindowId;
92 if (!windowId) {
129 inited = FrameBuffer::setupSubWindow(windowId,
  /development/tools/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,
  /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);
  /development/tools/emulator/opengl/tests/translator_tests/GLES_CM/
triangleCM.cpp 139 HWND windowId = NULL;
141 Window windowId = NULL;
143 void* windowId = NULL;
163 windowId = wminfo.window;
165 windowId = wminfo.info.x11.window;
167 windowId = createGLView(wminfo.nsWindowPtr,0,0,WINDOW_WIDTH,WINDOW_HEIGHT);
180 egl_surface = eglCreateWindowSurface(d,configs[0],windowId,NULL);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkViews.java 241 int windowId = Integer.parseInt(windowString);
244 .findAccessibilityNodeInfoByAccessibilityId(sConnectionId, windowId, viewId);
  /development/tools/emulator/opengl/tests/translator_tests/GLES_V2/
triangleV2.cpp 357 HWND windowId = NULL;
359 Window windowId = NULL;
361 void* windowId = NULL;
381 windowId = wminfo.window;
383 windowId = wminfo.info.x11.window;
385 windowId = createGLView(wminfo.nsWindowPtr,0,0,WINDOW_WIDTH,WINDOW_HEIGHT);
401 egl_surface = eglCreateWindowSurface(d,configs[0],windowId,NULL);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
DeviceBridge.java 371 String windowId = line.substring(0, index);
375 id = (int) Long.parseLong(windowId, 16);
377 id = Integer.parseInt(windowId, 16);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyDevice.java 393 args = {"windowId", "accessibility id"},
400 int windowId = ap.getInt(0);
402 IChimpView view = impl.getView(By.accessibilityIds(windowId, accessibilityId));
  /frameworks/base/services/java/com/android/server/accessibility/
AccessibilityManagerService.java 441 final int windowId = sNextWindowId++;
442 AccessibilityConnectionWrapper wrapper = new AccessibilityConnectionWrapper(windowId,
445 mWindowIdToWindowTokenMap.put(windowId, addedWindowToken.asBinder());
446 mWindowIdToInteractionConnectionWrapperMap.put(windowId, wrapper);
448 Slog.i(LOG_TAG, "Adding interaction connection to windowId: " + windowId);
450 return windowId;
459 final int windowId = mWindowIdToWindowTokenMap.keyAt(i);
461 mWindowIdToInteractionConnectionWrapperMap.get(windowId);
463 removeAccessibilityInteractionConnectionLocked(windowId);
    [all...]

Completed in 1427 milliseconds