/external/chromium_org/ash/display/ |
screen_position_controller.cc | 26 // Return true if the window or its ancestor has |kStayInSameRootWindowkey| 28 bool ShouldStayInSameRootWindow(const aura::Window* window) { 29 return window && 30 (window->GetProperty(internal::kStayInSameRootWindowKey) || 31 ShouldStayInSameRootWindow(window->parent())); 37 aura::Window* window) { 38 aura::Window* dst_root = Shell::GetInstance()->display_controller()-> 40 aura::Window::Windows transient_children = window->transient_children() [all...] |
/external/chromium_org/ash/wm/ |
default_window_resizer.cc | 11 #include "ui/aura/window.h" 25 DefaultWindowResizer::Create(aura::Window* window, 29 Details details(window, location, window_component, source); 35 if (bounds != details_.window->bounds()) { 37 wm::GetWindowState(details_.window)->ClearRestoreBounds(); 39 details_.window->SetBounds(bounds); 50 details_.window->SetBounds(details_.initial_bounds_in_parent); 53 wm::GetWindowState(details_.window)->SetRestoreBoundsInScreen( 57 aura::Window* DefaultWindowResizer::GetTarget() [all...] |
window_util.h | 13 class Window; 25 // We force at least this many DIPs for any window on the screen. 30 // Utility functions for window activation. 31 ASH_EXPORT void ActivateWindow(aura::Window* window); 32 ASH_EXPORT void DeactivateWindow(aura::Window* window); 33 ASH_EXPORT bool IsActiveWindow(aura::Window* window); 34 ASH_EXPORT aura::Window* GetActiveWindow() [all...] |
window_animations.cc | 26 #include "ui/aura/window.h" 53 // Brightness/grayscale values for hide/show window animations. 74 void AddLayerAnimationsForMinimize(aura::Window* window, bool show) { 76 // moved while the window was minimized. 77 gfx::Rect bounds = window->bounds(); 78 gfx::Rect target_bounds = GetMinimizeAnimationTargetBoundsInScreen(window); 80 ScreenAsh::ConvertRectFromScreen(window->parent(), target_bounds); 108 base::TimeDelta duration = window->layer()->GetAnimator()-> 118 window->layer()->GetAnimator()->ScheduleAnimation [all...] |
/external/chromium_org/chrome/browser/automation/ |
testing_automation_provider_gtk.cc | 27 GtkWindow* window = window_tracker_->GetResource(handle); local 28 if (window) { 29 GtkWidget* widget = ViewIDUtil::GetWidget(GTK_WIDGET(window), 43 gtk_widget_translate_coordinates(widget, GTK_WIDGET(window), 55 GtkWindow* window = window_tracker_->GetResource(handle); local 56 if (window) { 57 gtk_window_move(window, bounds.x(), bounds.height()); 58 gtk_window_resize(window, bounds.width(), bounds.height());
|
/external/chromium_org/chrome/browser/ui/window_snapshot/ |
window_snapshot.cc | 16 gfx::NativeWindow window, 21 return ui::GrabWindowSnapshot(window, png_representation,
|
/external/chromium_org/chrome/common/extensions/docs/server2/test_data/github_file_system/ |
expected_read.txt | 2 * Listens for the app launching then creates the window 5 * @see http://developer.chrome.com/trunk/apps/app.window.html 8 chrome.app.window.create('main.html',
|
/external/chromium_org/content/test/ |
content_browser_test_utils.cc | 35 void NavigateToURLBlockUntilNavigationsComplete(Shell* window, 38 WaitForLoadStop(window->web_contents()); 39 TestNavigationObserver same_tab_observer(window->web_contents(), 42 window->LoadURL(url); 46 void NavigateToURL(Shell* window, const GURL& url) { 47 NavigateToURLBlockUntilNavigationsComplete(window, url, 1); 50 void WaitForAppModalDialog(Shell* window) { 53 window->GetJavaScriptDialogManager());
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
jquery.isonscreen.js | 17 left: $(window).scrollLeft(), 18 top: $(window).scrollTop(), 19 width: $(window).width(), 20 height: $(window).height() 39 left: $(window).scrollLeft(), 40 top: $(window).scrollTop(), 41 width: $(window).width(), 42 height: $(window).height()
|
/external/chromium_org/ui/aura/client/ |
activation_change_observer.h | 11 class Window; 17 // Called when |active| gains focus, or there is no active window 19 // previous active window or NULL if there was no previously active 20 // window. 21 virtual void OnWindowActivated(Window* gained_active, 22 Window* lost_active) = 0; 24 // Called when during window activation the currently active window is 25 // selected for activation. This can happen when a window requested for 26 // activation cannot be activated because a system modal window is active [all...] |
activation_delegate.h | 15 class Window; 19 // to a window's activation state. 22 // Returns true if the window should be activated. 29 // Sets/Gets the ActivationDelegate on the Window. No ownership changes. 30 AURA_EXPORT void SetActivationDelegate(Window* window, 32 AURA_EXPORT ActivationDelegate* GetActivationDelegate(Window* window);
|
animation_host.h | 16 class Window; 19 // Interface for top level window host of animation. Communicates additional 21 // window closes on hide. 24 // Ensure the host window is at least this large so that transitions have 27 // the window bounds for the top left corner. 29 // window bounds for the bottom right. 34 // Called after the window has faded out on a hide. 41 AURA_EXPORT void SetAnimationHost(Window* window, 43 AURA_EXPORT AnimationHost* GetAnimationHost(Window* window) [all...] |
focus_change_observer.h | 11 class Window; 18 virtual void OnWindowFocused(Window* gained_focus, Window* lost_focus) = 0; 24 AURA_EXPORT FocusChangeObserver* GetFocusChangeObserver(Window* window); 26 Window* window,
|
/external/chromium_org/ui/base/cocoa/ |
focus_tracker.h | 14 // no longer in the view hierarchy or are not in the correct window. 21 // |window| is the window that we are saving focus for. This 23 - (id)initWithWindow:(NSWindow*)window; 27 // longer in the view hierarchy under |window|. 28 - (BOOL)restoreFocusInWindow:(NSWindow*)window;
|
/external/chromium_org/ui/views/corewm/ |
shadow_types.h | 8 #include "ui/aura/window.h" 12 class Window; 18 // Different types of drop shadows that can be drawn under a window by the 26 VIEWS_EXPORT void SetShadowType(aura::Window* window, ShadowType shadow_type); 27 VIEWS_EXPORT ShadowType GetShadowType(aura::Window* window); 30 // window. If unset, no shadow is displayed.
|
/external/chromium_org/ui/views/ |
event_utils.h | 18 // reposted. |event| should be in screen coordinates. |window| is the target 19 // window that the event will be forwarded to. Only some events are supported. 20 VIEWS_EXPORT bool RepostLocatedEvent(gfx::NativeWindow window, 25 VIEWS_EXPORT bool RepostLocatedEventWin(HWND window,
|
/external/chromium_org/ui/wm/test/ |
wm_test_helper.cc | 23 aura::client::SetWindowTreeClient(root_window_->window(), this); 26 aura::client::SetFocusClient(root_window_->window(), focus_client_.get()); 30 root_window_->window()->SetEventFilter(root_window_event_filter_); 35 root_window_->window()); 39 new aura::client::DefaultActivationClient(root_window_->window())); 42 new aura::client::DefaultCaptureClient(root_window_->window())); 49 aura::Window* WMTestHelper::GetDefaultParent(aura::Window* context, 50 aura::Window* window, [all...] |
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
pvmp3_mdct_18.cpp | 41 const int32 *window sine window used in the mdct, three types are allowed 132 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window) 198 vec[ i] = fxp_mac32_Q32(tmp, (vec[i+10]), window[ i]); 208 vec[ 6] = fxp_mac32_Q32(tmp, vec[16] << 1, window[ i]); 215 vec[ 7] = fxp_mac32_Q32(tmp, tmp4 << 1, window[ 7]); 217 vec[ 8] = fxp_mac32_Q32(tmp1, vec[17] << 1, window[ 8]); 222 vec[ 9] = fxp_mac32_Q32(tmp, vec[17] << 1, window[ 9]); 224 vec[17] = fxp_mac32_Q32(tmp1, vec[10] << 1, window[17]); 226 vec[16] = fxp_mac32_Q32(tmp2, vec[11] << 1, window[16]) [all...] |
/frameworks/native/include/ui/ |
FramebufferNativeWindow.h | 68 static int setSwapInterval(ANativeWindow* window, int interval); 69 static int dequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, int* fenceFd); 70 static int queueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd); 71 static int query(const ANativeWindow* window, int what, int* value); 72 static int perform(ANativeWindow* window, int operation, ...); 74 static int dequeueBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer** buffer); 75 static int queueBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer* buffer); 76 static int lockBuffer_DEPRECATED(ANativeWindow* window, ANativeWindowBuffer* buffer);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
SyncWindow.java | 29 public static int toDays(int window) { 30 switch(window) {
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewManager.java | 20 import com.android.hierarchyviewer.device.Window; 30 public static void invalidate(IDevice device, Window window, String params) { 31 sendCommand("INVALIDATE", device, window, params); 34 public static void requestLayout(IDevice device, Window window, String params) { 35 sendCommand("REQUEST_LAYOUT", device, window, params); 38 public static void outputDisplayList(IDevice device, Window window, String params) { 39 sendCommand("OUTPUT_DISPLAYLIST", device, window, params) [all...] |
/external/chromium_org/chrome/test/base/ |
interactive_test_utils.cc | 15 BrowserWindow* window = browser->window(); local 16 if (!window) 19 *native_window = window->GetNativeWindow(); 26 gfx::NativeWindow window = NULL; local 27 if (!GetNativeWindow(browser, &window)) 30 return ui_test_utils::ShowAndFocusNativeWindow(window); 39 gfx::NativeWindow window = NULL; local 40 if (!GetNativeWindow(browser, &window)) 42 return SendKeyPressToWindowSync(window, key, control, shift, alt, command) [all...] |
/external/chromium_org/content/test/data/indexeddb/ |
bug_109187.js | 5 window.indexedDB = window.indexedDB || window.webkitIndexedDB; 17 window.index1 = store.createIndex('index1Name', 'prop1'); 18 window.index2 = store.createIndex( 20 shouldBeFalse("window.index1.multiEntry"); 21 shouldBeTrue("window.index2.multiEntry");
|
/external/chromium_org/tools/page_cycler/indexed_db/ |
common.js | 10 window.indexedDB = window.indexedDB || window.webkitIndexedDB; 11 window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange; 13 if ('indexedDB' in window)
|
/external/chromium_org/ui/base/gtk/ |
event_synthesis_gtk.cc | 11 GdkEvent* SynthesizeKeyEvent(GdkWindow* window, 16 event->key.window = window; 17 if (window) 18 g_object_ref(window); 41 void SynthesizeKeyPressEvents(GdkWindow* window, 47 SynthesizeKeyEvent(window, true, GDK_Control_L, 0)); 50 events->push_back(SynthesizeKeyEvent(window, true, GDK_Shift_L, 58 SynthesizeKeyEvent(window, true, GDK_Alt_L, state)); 68 events->push_back(SynthesizeKeyEvent(window, true, gdk_key, state)) [all...] |