HomeSort by relevance Sort by last modified time
    Searched full:window (Results 26 - 50 of 5589) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
no-synchronous-events.js 1 description('Tests that events are never fired sycnhronously from a call to window.addEventListener().');
3 if (window.layoutTestController)
9 window.addEventListener('deviceorientation', function() {
15 window.jsTestIsAsync = true;
16 window.successfullyParsed = true;
  /external/webkit/LayoutTests/http/tests/appcache/resources/
crash-when-navigating-away-then-back.html 6 window.close();
7 window.opener.closedWindow();
12 window.opener.document.getElementById('result').innerHTML = 'SUCCESS';
13 window.close();
14 if (window.layoutTestController)
  /external/qemu/android/skin/
window.h 23 * window is too large, in which case the window will automatically
32 extern void skin_window_enable_touch( SkinWindow* window, int enabled );
33 extern void skin_window_enable_trackball( SkinWindow* window, int enabled );
34 extern void skin_window_enable_dpad( SkinWindow* window, int enabled );
35 extern void skin_window_enable_qwerty( SkinWindow* window, int enabled );
37 extern int skin_window_reset ( SkinWindow* window, SkinLayout* layout );
38 extern void skin_window_free ( SkinWindow* window );
39 extern void skin_window_redraw( SkinWindow* window, SkinRect* rect );
40 extern void skin_window_process_event( SkinWindow* window, SDL_Event* ev )
    [all...]
  /external/webkit/LayoutTests/platform/android-v8/fast/dom/DeviceMotion/
window-property-expected.txt 1 Tests that the window.DeviceMotionEvent and window.ondevicemotion properties are present.
6 FAIL typeof window.DeviceMotionEvent == 'object' should be true. Was false.
7 FAIL typeof window.DeviceMotionEvent == 'function' should be false. Was true.
9 PASS 'DeviceMotionEvent' in window is true
10 PASS window.hasOwnProperty('DeviceMotionEvent') is true
11 PASS typeof window.ondevicemotion == 'object' is true
13 PASS 'ondevicemotion' in window is true
14 FAIL window.hasOwnProperty('ondevicemotion') should be true. Was false.
  /external/webkit/LayoutTests/platform/android-v8/fast/dom/DeviceOrientation/
window-property-expected.txt 1 Tests that the window.DeviceOrientationEvent and window.ondeviceorientation properties are present.
6 FAIL typeof window.DeviceOrientationEvent == 'object' should be true. Was false.
7 FAIL typeof window.DeviceOrientationEvent == 'function' should be false. Was true.
9 PASS 'DeviceOrientationEvent' in window is true
10 PASS window.hasOwnProperty('DeviceOrientationEvent') is true
11 PASS typeof window.ondeviceorientation == 'object' is true
13 PASS 'ondeviceorientation' in window is true
14 FAIL window.hasOwnProperty('ondeviceorientation') should be true. Was false.
  /external/chromium/chrome/browser/ui/cocoa/
focus_tracker_unittest.mm 34 NSWindow* window = test_window();
35 ASSERT_TRUE([window makeFirstResponder:viewA_]);
37 [[FocusTracker alloc] initWithWindow:window]);
39 ASSERT_TRUE([window makeFirstResponder:viewB_]);
40 EXPECT_TRUE([tracker restoreFocusInWindow:window]);
41 EXPECT_EQ(viewA_, [window firstResponder]);
47 NSWindow* window = test_window();
49 [[window contentView] addSubview:text];
51 ASSERT_TRUE([window makeFirstResponder:text]);
53 initWithWindow:window]);
    [all...]
  /external/skia/src/utils/mac/
skia_mac.cpp 7 WindowRef window; local
19 CreateNewWindow(kDocumentWindowClass, attrs, &bounds, &window);
27 (void)create_sk_window(window);
28 SizeWindow(window, 640, 480, false);
31 // The window was created hidden so show it.
32 ShowWindow( window );
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
delayed-permission-allowed.js 3 if (window.layoutTestController)
4 window.layoutTestController.setMockGeolocationPosition(51.478, -0.166, 100);
8 if (window.layoutTestController)
24 window.setTimeout(allowPermission, 100);
26 window.jsTestIsAsync = true;
27 window.successfullyParsed = true;
delayed-permission-denied.js 3 if (window.layoutTestController)
4 window.layoutTestController.setMockGeolocationPosition(51.478, -0.166, 100);
8 if (window.layoutTestController)
27 window.setTimeout(denyPermission, 100);
29 window.jsTestIsAsync = true;
30 window.successfullyParsed = true;
window-close-crash.js 7 if (window.layoutTestController) {
18 window.setTimeout(waitForWindowToClose, 0);
24 window.setTimeout(waitForWindowToClose, 0);
31 debug("Main page opening resources/window-close-popup.html");
32 otherWindow = window.open("resources/window-close-popup.html");
34 window.jsTestIsAsync = true;
35 window.successfullyParsed = true;
  /external/chromium/chrome/browser/
fullscreen_linux.cc 22 XID window) {
25 if (!ui::GetXWindowStack(window, &windows)) {
26 // Window Manager doesn't support _NET_CLIENT_LIST_STACKING, so fall back
30 int status = XQueryTree(ui::GetXDisplay(), window, &root, &parent,
46 // To find the top-most window:
48 // 2) For each window:
50 // 2.2) If it is managed by the Window Manager (has a WM_STATE property).
51 // Return this window as the top-most window.
52 // 2.3) Enumerate all its child windows. If there is a child window that i
61 XID window() const { return window_; } function in class:__anon2711::WindowManagerWindowFinder
112 XID window = finder.top_most_window(); local
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
disconnected-frame-inner.html 5 <body onload="window.parent.onIframeLoaded()", onunload="window.parent.onIframeUnloaded();">
  /external/webkit/LayoutTests/storage/domstorage/events/resources/
setattribute-event-handler.html 5 window.parent.storageEventList.push(e);
8 document.body.setAttribute("onstorage", "handleStorageEvent(window.event);");
  /external/webkit/LayoutTests/storage/domstorage/localstorage/
window-open.html 6 if (window.layoutTestController) {
19 if (!window.localStorage) {
20 log("window.localStorage DOES NOT exist");
24 window.log = log;
26 window.localStorage.setItem("FOO", "BAR");
27 log("Value for FOO is " + window.localStorage.getItem("FOO"));
28 window.open("resources/window-open-second.html");
  /external/webkit/Source/WebCore/manual-tests/inspector-wrappers/
console-str-getter.html 5 window.__defineGetter__("str", doAttack);
6 window.__defineGetter__("expression", doAttack);
console-str-alert-object.html 5 window.str = window.expression = "alert({})";
6 window.alert = function(msg) {
  /external/webkit/LayoutTests/fast/js/resources/
js-test-post-async.js 4 if (window.layoutTestController)
  /external/webkit/LayoutTests/http/tests/resources/
notify-done.html 3 if (window.layoutTestController)
  /external/webkit/LayoutTests/http/tests/ssl/
verify-ssl-enabled.php 2 if (window.layoutTestController)
  /external/webkit/Source/WebCore/manual-tests/
open-url-undefined.html 3 Tests that <code>window.open()</code> does not interpret the missing URL
7 Click the Test button. A new window should open. To pass the test, the address
8 bar of the new window should be empty. If it contains a URL (ending with &ldquo;undefined&rdquo;), WebKit failed the test.
10 <button onclick="window.open()">Test</button>
drop-in-empty-doc.html 4 <p>Click <a href="javascript:window.open('resources/drop-in-empty-doc.xhtml')">here</a> to open a new window. Drag and drop a file over the new window. It should not crash.
  /external/webkit/Source/WebCore/manual-tests/resources/
nested-plug-ins-inner-frame.html 1 <embed id="plugin" width='100' height='100' src='spinbox.swf' wmode='window'>
  /external/chromium/chrome/browser/ui/
browser_list_win.cc 7 #include "views/window/window.h"
11 views::Window::CloseAllSecondaryWindows();
  /external/chromium/chrome/browser/ui/tabs/
dock_info_gtk.cc 21 // Base class used to locate a window. A subclass need only override
36 // Returns true if |window| is in the ignore list.
37 bool ShouldIgnoreWindow(XID window) {
38 return (ignore_.find(window) != ignore_.end());
42 virtual bool ShouldStopIterating(XID window) {
55 // Helper class to determine if a particular point of a window is not obscured
56 // by another window.
59 // Returns true if |window| is not obscured by another window at the
61 static bool IsTopMostWindowAtPoint(XID window,
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 51 // fill window
52 CursorWindow window = new CursorWindow(false); local
53 cursor.fillWindow(0, window);
55 // read from cursor window
59 String s = window.getString(i, j);
66 // test cursor window handle startpos != 0
67 window.clear();
68 cursor.fillWindow(1, window);
69 // read from cursor from window
73 String s = window.getString(i, j)
130 CursorWindow window = getOneByOneWindow(); local
142 CursorWindow window = getOneByOneWindow(); local
152 CursorWindow window = new CursorWindow(false); local
    [all...]

Completed in 1182 milliseconds

12 3 4 5 6 7 8 91011>>