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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
buildSystemOnly.js 6 window.flattenImports = true;
7 window.DEBUG = false
  /external/chromium_org/chrome/test/base/
interactive_test_utils_aura.cc 8 #include "ui/aura/window.h"
13 void HideNativeWindow(gfx::NativeWindow window) {
14 HideNativeWindowAura(window);
17 bool ShowAndFocusNativeWindow(gfx::NativeWindow window) {
18 return ShowAndFocusNativeWindowAura(window);
22 void HideNativeWindowAura(gfx::NativeWindow window) {
23 window->Hide();
26 bool ShowAndFocusNativeWindowAura(gfx::NativeWindow window) {
27 window->Show();
interactive_test_utils_aura.h 10 #include "ui/aura/window.h"
16 void HideNativeWindowAura(gfx::NativeWindow window);
17 bool ShowAndFocusNativeWindowAura(gfx::NativeWindow window);
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_focus_rules.cc 8 #include "ui/aura/window.h"
15 bool DesktopFocusRules::SupportsChildActivation(aura::Window* window) const {
17 return window->GetRootWindow() == window;
  /external/chromium_org/ui/aura/client/
animation_host.cc 21 void SetAnimationHost(Window* window, AnimationHost* animation_host) {
22 DCHECK(window);
23 window->SetProperty(kRootWindowAnimationHostKey, animation_host);
26 AnimationHost* GetAnimationHost(Window* window) {
27 DCHECK(window);
28 return window->GetProperty(kRootWindowAnimationHostKey);
activation_change_observer.cc 7 #include "ui/aura/window.h"
19 Window* window,
21 window->SetProperty(kActivationChangeObserverKey, observer);
24 ActivationChangeObserver* GetActivationChangeObserver(Window* window) {
25 return window ? window->GetProperty(kActivationChangeObserverKey) : NULL;
focus_change_observer.cc 7 #include "ui/aura/window.h"
18 FocusChangeObserver* GetFocusChangeObserver(Window* window) {
19 return window ? window->GetProperty(kFocusChangeObserverKey) : NULL;
22 void SetFocusChangeObserver(Window* window,
24 window->SetProperty(kFocusChangeObserverKey, focus_change_observer);
screen_position_client.cc 19 void SetScreenPositionClient(RootWindow* window,
21 window->SetProperty(kScreenPositionClientKey, client);
24 ScreenPositionClient* GetScreenPositionClient(const RootWindow* window) {
25 return window ? window->GetProperty(kScreenPositionClientKey) : NULL;
  /external/chromium_org/content/plugin/
plugin_carbon_interpose_mac.cc 14 // Returns true if the given window is modal.
15 static bool IsModalWindow(WindowRef window) {
18 OSStatus status = GetWindowModality(window, &modality, &modal_target);
22 static CGRect CGRectForWindow(WindowRef window) {
24 HIWindowGetBounds(window, kWindowContentRgn, kHICoordSpace72DPIGlobal,
32 WindowInfo(WindowRef window) {
33 window_id = HIWindowGetCGWindowID(window);
34 bounds = CGRectForWindow(window);
43 static void OnPluginWindowShown(WindowRef window) {
45 HIWindowGetCGWindowID(window), CGRectForWindow(window)
100 WindowRef window = GetDialogWindow(dialog); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 39 CursorWindow window = new CursorWindow("MyWindow"); local
40 assertEquals("MyWindow", window.getName());
41 assertEquals(0, window.getStartPosition());
42 window.close();
47 CursorWindow window = new CursorWindow(""); local
48 assertEquals("<unnamed>", window.getName());
49 assertEquals(0, window.getStartPosition());
50 window.close();
55 CursorWindow window = new CursorWindow(null); local
56 assertEquals("<unnamed>", window.getName())
64 CursorWindow window = new CursorWindow(true \/*this argument is ignored*\/); local
72 CursorWindow window = new CursorWindow("MyWindow"); local
    [all...]
  /external/chromium_org/ui/aura/
window_tracker.cc 7 #include "ui/aura/window.h"
19 void WindowTracker::Add(Window* window) {
20 if (windows_.count(window))
23 window->AddObserver(this);
24 windows_.insert(window);
27 void WindowTracker::Remove(Window* window) {
28 if (windows_.count(window)) {
29 windows_.erase(window);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
LogNPPSetWindow.cpp 45 NPError LogNPPSetWindow::NPP_SetWindow(NPWindow* window)
48 snprintf(message, 1024, "NPP_SetWindow: %s window, Rect {%i, %i, %i, %i}, Clip Rect {%i, %i, %i, %i}, Type %i",
49 window->window ? "non-NULL" : "NULL", window->x, window->y, window->width, window->height,
50 window->clipRect.left, window->clipRect.top, window->clipRect.right, window->clipRect.bottom
    [all...]
  /external/chromium_org/ash/wm/
property_util.cc 13 #include "ui/aura/window.h"
19 void SetRestoreBoundsInScreen(aura::Window* window, const gfx::Rect& bounds) {
20 window->SetProperty(aura::client::kRestoreBoundsKey, new gfx::Rect(bounds));
23 void SetRestoreBoundsInParent(aura::Window* window, const gfx::Rect& bounds) {
24 SetRestoreBoundsInScreen(window,
25 ScreenAsh::ConvertRectToScreen(window->parent(), bounds));
28 const gfx::Rect* GetRestoreBoundsInScreen(aura::Window* window) {
    [all...]
window_util_unittest.cc 9 #include "ui/aura/window.h"
20 scoped_ptr<aura::Window> window(
22 wm::CenterWindow(window.get());
23 EXPECT_EQ("200,126 100x100", window->bounds().ToString());
24 EXPECT_EQ("200,126 100x100", window->GetBoundsInScreen().ToString());
25 window->SetBoundsInScreen(gfx::Rect(600, 0, 100, 100),
27 wm::CenterWindow(window.get());
28 EXPECT_EQ("250,126 100x100", window->bounds().ToString());
29 EXPECT_EQ("750,126 100x100", window->GetBoundsInScreen().ToString())
    [all...]
ash_activation_controller.cc 34 aura::Window* AshActivationController::WillActivateWindow(
35 aura::Window* window) {
36 aura::Window* window_modal_transient =
37 views::corewm::GetModalTransient(window);
42 if (!window)
43 window = PrepareToActivateLauncher();
45 // Restore minimized window. This needs to be done before CanReceiveEvents()
46 // is called as that function checks window visibility.
47 if (window && wm::IsWindowMinimized(window)
    [all...]
  /external/chromium/chrome/browser/
plugin_carbon_interpose_mac.cc 15 // Returns true if the given window is modal.
16 static bool IsModalWindow(WindowRef window) {
19 OSStatus status = GetWindowModality(window, &modality, &modal_target);
27 static CGRect CGRectForWindow(WindowRef window) {
29 HIWindowGetBounds(window, kWindowContentRgn, kHICoordSpace72DPIGlobal,
37 WindowInfo(WindowRef window) {
38 window_id = HIWindowGetCGWindowID(window);
39 bounds = CGRectForWindow(window);
48 static void OnPluginWindowShown(WindowRef window) {
50 HIWindowGetCGWindowID(window), CGRectForWindow(window)
121 WindowRef window = GetDialogWindow(dialog); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
DOMWindowCrypto.cpp 40 DOMWindowCrypto::DOMWindowCrypto(DOMWindow* window)
41 : DOMWindowProperty(window->frame())
54 DOMWindowCrypto* DOMWindowCrypto::from(DOMWindow* window)
56 DOMWindowCrypto* supplement = static_cast<DOMWindowCrypto*>(Supplement<DOMWindow>::from(window, supplementName()));
58 supplement = new DOMWindowCrypto(window);
59 provideTo(window, supplementName(), adoptPtr(supplement));
64 Crypto* DOMWindowCrypto::crypto(DOMWindow* window)
66 return DOMWindowCrypto::from(window)->crypto();
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
DOMWindowQuota.cpp 43 DOMWindowQuota::DOMWindowQuota(DOMWindow* window)
44 : DOMWindowProperty(window->frame())
58 DOMWindowQuota* DOMWindowQuota::from(DOMWindow* window)
60 DOMWindowQuota* supplement = static_cast<DOMWindowQuota*>(Supplement<DOMWindow>::from(window, supplementName()));
62 supplement = new DOMWindowQuota(window);
63 provideTo(window, supplementName(), adoptPtr(supplement));
69 StorageInfo* DOMWindowQuota::webkitStorageInfo(DOMWindow* window)
71 return DOMWindowQuota::from(window)->webkitStorageInfo();
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
DOMWindowSpeechSynthesis.cpp 39 DOMWindowSpeechSynthesis::DOMWindowSpeechSynthesis(DOMWindow* window)
40 : DOMWindowProperty(window->frame())
54 DOMWindowSpeechSynthesis* DOMWindowSpeechSynthesis::from(DOMWindow* window)
56 DOMWindowSpeechSynthesis* supplement = static_cast<DOMWindowSpeechSynthesis*>(Supplement<DOMWindow>::from(window, supplementName()));
58 supplement = new DOMWindowSpeechSynthesis(window);
59 provideTo(window, supplementName(), adoptPtr(supplement));
65 SpeechSynthesis* DOMWindowSpeechSynthesis::speechSynthesis(DOMWindow* window)
67 return DOMWindowSpeechSynthesis::from(window)->speechSynthesis();
  /external/chromium_org/ui/views/corewm/
visibility_controller.cc 7 #include "ui/aura/window.h"
22 bool ShouldAnimateWindow(aura::Window* window) {
23 return window->parent() && window->parent()->GetProperty(
36 aura::Window* window,
38 return AnimateOnChildWindowVisibilityChanged(window, visible);
41 void VisibilityController::UpdateLayerVisibility(aura::Window* window,
    [all...]
window_animations_unittest.cc 11 #include "ui/aura/window.h"
17 using aura::Window;
36 scoped_ptr<aura::Window> window(
40 window->Show();
41 EXPECT_TRUE(window->layer()->GetTargetVisibility());
42 window->Hide();
43 EXPECT_FALSE(window->layer()->GetTargetVisibility());
44 window->Show();
45 EXPECT_TRUE(window->layer()->GetTargetVisibility())
    [all...]
  /frameworks/base/native/android/
native_window.cpp 35 void ANativeWindow_acquire(ANativeWindow* window) {
36 window->incStrong((void*)ANativeWindow_acquire);
39 void ANativeWindow_release(ANativeWindow* window) {
40 window->decStrong((void*)ANativeWindow_acquire);
43 static int32_t getWindowProp(ANativeWindow* window, int what) {
45 int res = window->query(window, what, &value);
49 int32_t ANativeWindow_getWidth(ANativeWindow* window) {
50 return getWindowProp(window, NATIVE_WINDOW_WIDTH);
53 int32_t ANativeWindow_getHeight(ANativeWindow* window) {
    [all...]
  /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/chromium_org/ui/base/win/
hwnd_subclass_unittest.cc 24 virtual BOOL ProcessWindowMessage(HWND window,
45 // the subclassed window procedure.
71 TestWindow window; local
72 window.Init(NULL, gfx::Rect(0, 0, 100, 100));
73 EXPECT_TRUE(window.hwnd() != NULL);
77 HWNDSubclass::AddFilterToTarget(window.hwnd(), &mf);
79 // We are not filtering, so both the filter and the window should receive
81 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0);
84 EXPECT_TRUE(window.saw_message);
87 window.saw_message = false
100 TestWindow window; local
134 TestWindow window; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
taskbar_decorator.cc 9 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image) {

Completed in 1291 milliseconds

1 2 3 4 5 6 7 8 91011>>