HomeSort by relevance Sort by last modified time
    Searched defs:Window (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium/chrome/browser/resources/ntp4/tools/
externs.js 40 Window.prototype.addEventListener = function(type, listener, opt_useCapture) {};
  /external/chromium/chrome/browser/resources/touch_ntp/tools/
externs.js 40 Window.prototype.addEventListener = function(type, listener, opt_useCapture) {};
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 19 public class Window {
20 public static final Window FOCUSED_WINDOW = new Window("<Focused Window>", -1);
25 public Window(String title, int hashCode) {
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/device/
Window.java 22 * Used for storing a window from the window manager service on the device.
25 public class Window {
33 public Window(IDevice device, String title, int hashCode) {
60 public static Window getFocusedWindow(IDevice device) {
61 return new Window(device, "<Focused Window>", -1);
66 * different instances and automatically reselecting the same window doesn't
71 if (other instanceof Window) {
72 return mHashCode == ((Window) other).mHashCod
    [all...]
DeviceBridge.java 260 return String.format("service call window %d i32 %d", SERVICE_CODE_START_SERVER, port); //$NON-NLS-1$
264 return String.format("service call window %d", SERVICE_CODE_STOP_SERVER); //$NON-NLS-1$
268 return String.format("service call window %d", SERVICE_CODE_IS_SERVER_RUNNING); //$NON-NLS-1$
356 public static Window[] loadWindows(IDevice device) {
357 ArrayList<Window> windows = new ArrayList<Window>();
381 Window w = new Window(device, line.substring(index + 1), id);
387 // get the focused window, which was done using a special type of
388 // window with hash code -1
    [all...]
  /external/clang/test/FixIt/
typo.c 17 struct Window {
22 struct Window window = { variable in typeref:struct:Window
23 .bunds. // expected-error{{field designator 'bunds' does not refer to any field in type 'struct Window'; did you mean 'bounds'?}}
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
xteststr.h 31 #define Window CARD32
66 Window window B32;
94 Window root B32;
116 #undef Window
Xagstr.h 55 #define Window CARD32
120 Window default_root B32;
157 Window window B32;
167 Window window B32;
177 #undef Window
shapestr.h 39 #define Window CARD32
77 Window dest B32;
92 Window dest B32;
107 Window dest B32;
110 Window src B32;
121 Window dest B32;
131 Window window B32;
140 CARD8 boundingShaped; /* window has bounding shape */
141 CARD8 clipShaped; /* window has clip shape *
    [all...]
multibufst.h 51 #define Window CARD32
120 CARD32 window B32; /* associated window */
146 CARD32 window B32; /* associated window */
163 CARD32 window B32; /* associated window */
172 CARD32 window B32; /* associated window */
216 CARD32 window B32
    [all...]
XIproto.h 57 #define Window CARD32
377 Window window B32;
392 Window window B32;
419 Window window B32;
435 Window window B32;
551 Window grabWindow B32
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
xteststr.h 31 #define Window CARD32
66 Window window B32;
94 Window root B32;
116 #undef Window
Xagstr.h 55 #define Window CARD32
120 Window default_root B32;
157 Window window B32;
167 Window window B32;
177 #undef Window
shapestr.h 39 #define Window CARD32
77 Window dest B32;
92 Window dest B32;
107 Window dest B32;
110 Window src B32;
121 Window dest B32;
131 Window window B32;
140 CARD8 boundingShaped; /* window has bounding shape */
141 CARD8 clipShaped; /* window has clip shape *
    [all...]
multibufst.h 51 #define Window CARD32
120 CARD32 window B32; /* associated window */
146 CARD32 window B32; /* associated window */
163 CARD32 window B32; /* associated window */
172 CARD32 window B32; /* associated window */
216 CARD32 window B32
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
xteststr.h 31 #define Window CARD32
66 Window window B32;
94 Window root B32;
116 #undef Window
Xagstr.h 55 #define Window CARD32
120 Window default_root B32;
157 Window window B32;
167 Window window B32;
177 #undef Window
shapestr.h 39 #define Window CARD32
77 Window dest B32;
92 Window dest B32;
107 Window dest B32;
110 Window src B32;
121 Window dest B32;
131 Window window B32;
140 CARD8 boundingShaped; /* window has bounding shape */
141 CARD8 clipShaped; /* window has clip shape *
    [all...]
multibufst.h 51 #define Window CARD32
120 CARD32 window B32; /* associated window */
146 CARD32 window B32; /* associated window */
163 CARD32 window B32; /* associated window */
172 CARD32 window B32; /* associated window */
216 CARD32 window B32
    [all...]
  /external/chromium/chrome/browser/sessions/
tab_restore_service.cc 66 // . When the user closes a window a kCommandSelectedNavigationInTab command
88 // Payload used for the start of a window close. This is the old struct that is
104 // Payload used for the start of a window close. This struct must be POD,
140 if (i->second->type == TabRestoreService::WINDOW) {
141 TabRestoreService::Window* window = local
142 static_cast<TabRestoreService::Window*>(i->second);
143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin();
144 for ( ; j != window->tabs.end(); ++j) {
145 // If the ID matches one of this window's tabs, remove it from the list
343 Window* window = static_cast<Window*>(entry); local
957 Window* window = static_cast<Window*>(*i); local
    [all...]
tab_restore_service.h 30 // invoked and a Window is created to represent the window.
32 // To restore a tab/window from the TabRestoreService invoke RestoreEntryById
49 WINDOW
64 // The time when the window or tab was closed.
103 // Represents a previously open window.
104 struct Window : public Entry {
105 Window();
106 virtual ~Window();
108 // The tabs that comprised the window, in order
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/photon/
SDL_ph_video.h 76 PtWidget_t *Window; /* used to handle input events */
121 int currently_hided; /* 1 - window hided (minimazed), 0 - normal */
122 int currently_maximized; /* 1 - window hided (minimazed), 0 - normal */
129 #define window (this->hidden->Window) macro
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceChooser.java 51 import org.eclipse.jface.window.Window;
217 assert CLEAR_RETURN_CODE != Window.OK && CLEAR_RETURN_CODE != Window.CANCEL;
524 if (d.open() == Window.OK) {
548 if (dialog.open() != Window.OK) {
837 } else if (result == Window.OK) {
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 102 for (var i = generics[g].length; i--;) Native.genericize(window[g], generics[g][i], true);
291 The Browser Core. Contains Browser initialization, Window and Document, and the Browser Hash.
301 Platform: {name: (window.orientation != undefined) ? 'ipod' : (navigator.platform.match(/mac|win|linux/i) || ['other'])[0].toLowerCase()},
303 Features: {xpath: !!(document.evaluate), air: !!(window.runtime), query: !!(document.querySelector)},
310 return (!window.opera) ? false : ((arguments.callee.caller) ? 960 : ((document.getElementsByClassName) ? 950 : 925));
314 return (!window.ActiveXObject) ? false : ((window.XMLHttpRequest) ? 5 : 4);
369 if (window.execScript){
370 window.execScript(text);
389 var Window = new Native(
    [all...]
  /frameworks/base/core/java/android/view/
Window.java 34 * Abstract base class for a top-level window look and behavior policy. An
36 * window manager. It provides standard UI policies such as a background, title
41 * Window. Eventually that class will be refactored and a factory method
42 * added for creating Window instances without knowing about a particular
45 public abstract class Window {
71 * Flag for requesting an Action Bar that overlays window content.
72 * Normally an Action Bar will sit in the space above window content, but if this
74 * the window content itself. This is useful if you would like your app to have more control
92 * If overlay is enabled, the action mode UI will be allowed to cover existing window content.
129 private Window mContainer
    [all...]

Completed in 412 milliseconds

1 2 3