HomeSort by relevance Sort by last modified time
    Searched full:windowid (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /frameworks/base/core/java/android/view/
WindowId.java 37 public class WindowId implements Parcelable {
41 * Subclass for observing changes to the focus state of an {@link WindowId}.
43 * {@link WindowId} objects, since this class is fairly heavy-weight -- the
52 WindowId token;
65 WindowId token;
77 final HashMap<IBinder, WindowId> mRegistrations
78 = new HashMap<IBinder, WindowId>();
85 onFocusGained((WindowId)msg.obj);
88 onFocusLost((WindowId)msg.obj);
109 public abstract void onFocusGained(WindowId token)
    [all...]
  /external/chromium_org/remoting/host/
single_window_input_injector_linux.cc 10 webrtc::WindowId window_id,
single_window_input_injector_win.cc 10 webrtc::WindowId window_id,
single_window_desktop_environment.h 22 webrtc::WindowId window_id);
30 webrtc::WindowId window_id_;
single_window_desktop_environment.cc 31 webrtc::WindowId window_id);
34 webrtc::WindowId window_id_;
72 webrtc::WindowId window_id)
83 webrtc::WindowId window_id)
  /external/chromium_org/third_party/webrtc/base/
x11windowpicker.h 34 virtual bool IsVisible(const WindowId& id);
35 virtual bool MoveToFront(const WindowId& id);
40 uint8* GetWindowIcon(const WindowId& id, int* width, int* height);
41 uint8* GetWindowThumbnail(const WindowId& id, int width, int height);
window.h 30 class WindowId {
43 static WindowId Cast(uint64 id) {
45 return WindowId(reinterpret_cast<WindowId::WindowT>(id));
47 return WindowId(static_cast<WindowId::WindowT>(id));
59 WindowId() : id_(0) {}
60 WindowId(const WindowT& id) : id_(id) {} // NOLINT
63 bool Equals(const WindowId& other) const {
119 inline std::string ToString(const WindowId& window)
    [all...]
windowpicker.h 24 WindowDescription(const WindowId& id, const std::string& title)
27 const WindowId& id() const { return id_; }
28 void set_id(const WindowId& id) { id_ = id; }
33 WindowId id_;
67 virtual bool IsVisible(const WindowId& id) = 0;
68 virtual bool MoveToFront(const WindowId& id) = 0;
macwindowpicker.h 22 virtual bool IsVisible(const WindowId& id);
23 virtual bool MoveToFront(const WindowId& id);
win32windowpicker.h 22 virtual bool IsVisible(const WindowId& id);
23 virtual bool MoveToFront(const WindowId& id);
win32windowpicker_unittest.cc 82 EXPECT_TRUE(window_picker.IsVisible(WindowId(visible_id)));
83 EXPECT_FALSE(window_picker.IsVisible(WindowId(invisible_id)));
95 window_picker.MoveToFront(WindowId(visible_id));
96 window_picker.MoveToFront(WindowId(invisible_id));
  /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...]
  /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');
  /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...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
window_capturer.h 28 typedef webrtc::WindowId WindowId;
31 WindowId id;
51 virtual bool SelectWindow(WindowId id) = 0;
desktop_capture_types.h 25 typedef intptr_t WindowId;
27 const WindowId kNullWindowId = 0;
window_capturer_null.cc 28 virtual bool SelectWindow(WindowId id) OVERRIDE;
53 bool WindowCapturerNull::SelectWindow(WindowId id) {
  /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});
  /development/samples/ApiDemos/src/com/example/android/apis/view/
WindowFocusObserver.java 26 import android.view.WindowId;
27 import android.view.WindowId.FocusObserver;
37 final FocusObserver mObserver = new WindowId.FocusObserver() {
40 public void onFocusGained(WindowId token) {
45 public void onFocusLost(WindowId token) {
96 WindowId token = getWindow().getDecorView().getWindowId();
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
screencastid.h 4 // Defines variant class ScreencastId that combines WindowId and DesktopId.
27 explicit ScreencastId(const rtc::WindowId& id)
35 const rtc::WindowId& window() const { return window_; }
81 rtc::WindowId window_;
  /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,
  /frameworks/base/core/java/android/app/
IUiAutomationConnection.aidl 42 boolean clearWindowContentFrameStats(int windowId);
43 WindowContentFrameStats getWindowContentFrameStats(int windowId);
  /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/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) {
  /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);

Completed in 584 milliseconds

1 2 3 4 5 6