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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/ash/wm/
lock_window_state.h 13 // states to maximized (or normal if can't be maximized)/minimized/full-screen
36 // Either full screen, maximized centered or minimized. If the state does not
50 // WM_STATE_TYPE{NORMAL, MINIMIZED, MAXIMIZED}.
mru_window_tracker_unittest.cc 51 // Test that minimized windows are considered least recently used (but kept in
71 // Expect the relative order of minimized windows to remain the same, but all
72 // minimized windows to be at the end of the list.
window_animations.h 73 // is minimized. The bounds are approximate because the minimize animation
  /external/chromium_org/ash/wm/dock/
dock_types.h 34 DOCKED_ACTION_MINIMIZE, // Minimized a docked window.
35 DOCKED_ACTION_RESTORE, // Restored a docked window that was minimized.
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/examples/
window_operations.applescript 9 set minimized of window 1 to true -- Minimizes a window.
10 set minimized of window 1 to false -- Maximizes a window.
  /external/chromium_org/chrome/browser/chromeos/extensions/
wallpaper_private_api_unittest.cc 90 // Window 3 starts minimized, window 1 starts maximized.
104 // All windows except window 0 should be minimized.
116 // Windows 1 and 2 should no longer be minimized. Window 1 should again
117 // be maximized. Window 3 should still be minimized.
144 // All windows except window 0 should be minimized.
154 // All windows except window 0 should be minimized.
167 // Window 1 should be minimized again.
177 // Windows 1 should no longer be minimized.
283 // All windows except window 0 should be minimized.
301 // All windows except window 2 should be minimized
    [all...]
  /external/chromium_org/ui/base/
base_window.h 30 // Returns true if the window is minimized.
37 // Minimized).
44 // currently maximized or minimized) in terms of the screen coordinates.
52 // and minimized windows.
69 // Activates (brings to front) the window. Restores the window from minimized
  /external/chromium_org/ash/wm/maximize_mode/
maximize_mode_window_state.h 14 // states to minimized and maximized. If a window cannot be maximized it will be
45 // Either full screen, maximized centered or minimized. If the state does not
71 // WM_STATE_TYPE{NORMAL, MINIMIZED, MAXIMIZED}.
  /external/chromium_org/ash/accelerators/
accelerator_commands.h 16 // the first unminimized window. Returns true if a window was minimized or
  /external/chromium_org/ash/wm/overview/
scoped_transform_overview_window.h 60 // Restores the window if it was minimized.
63 // Restores this window on exit rather than returning it to a minimized state
64 // if it was minimized on entering overview mode.
102 // If true, the window was minimized and should be restored if the window
  /external/chromium_org/chrome/browser/ui/panels/
panel_browsertest.cc 125 // a bit above the minimized panel as well, so it takes significant
161 expected_expansion_states[index] = Panel::MINIMIZED;
166 // Setup bounds and expansion states for minimized and titlebar-only
172 panels.size(), Panel::MINIMIZED);
183 // Test hover. All panels are currently in minimized state.
186 // Hover mouse on minimized panel.
193 // Hover mouse above the panel. Verify all panels are minimized.
200 // Hover mouse below minimized panel.
215 // Hover mouse above panel. Verify all panels are minimized.
223 // Test restore. All panels are currently in minimized state
    [all...]
panel_bounds_animation.cc 27 // Detect animation that happens when expansion state is set to MINIMIZED
33 panel_->expansion_state() == Panel::MINIMIZED) {
docked_panel_collection.cc 84 // This method does not handle minimized panels.
253 // Ensure minimized panel does not get the focus. If minimizing all,
254 // the active panel will be deactivated once when all panels are minimized
255 // rather than per minimized panel.
276 case Panel::MINIMIZED:
294 if (state == Panel::MINIMIZED)
318 panel->SetExpansionState(Panel::MINIMIZED);
351 Panel::TITLE_ONLY : Panel::MINIMIZED);
361 // is minimized. See comments in OnPanelExpansionStateChanged.
371 // When a single panel is minimized, it is deactivated to ensure tha
    [all...]
docked_panel_collection.h 81 // Brings up or down the titlebars for all minimized panels.
85 // hide bottom bar is present, we want to move the minimized panel to the
144 // Keep track of the minimized panels to control mouse watching.
181 // Delayed transitions support. Sometimes transitions between minimized and
panel_manager.h 52 // Returns true if a panel can be system-minimized by the desktop
117 // Brings up or down the titlebars for all minimized panels.
229 // minimized panels. Mouse movement is only tracked when there is a minimized
stacked_panel_collection.cc 289 // panel in the stack that is not minimized.
419 // is minimized. See comments in OnPanelExpansionStateChanged.
429 // When a single panel is minimized, it is deactivated to ensure that
430 // a minimized panel does not have focus. However, when minimizing all,
431 // the deactivation is only done once after all panels are minimized,
432 // rather than per minimized panel, both for efficiency and to avoid
433 // temporary activations of random not-yet-minimized panels.
640 DCHECK_NE(Panel::MINIMIZED, panel->expansion_state());
642 // Ensure minimized panel does not get the focus. If minimizing all,
643 // the active panel will be deactivated once when all panels are minimized
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_window_controller_cocoa.h 107 // Minimized/Restored states.
130 // Helper for NSWindow, returns NO for minimized panels in some cases, so they
131 // are not un-minimized when another panel is minimized.
138 // and whether the panel is minimized. The first version wraps the second
155 // Returns true if the window is minimized to the dock.
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32windowpicker.cc 26 // Skip windows that are invisible, minimized, have no title, or are owned,
27 // unless they have the app window style set. Except for minimized windows,
29 // TODO: Figure out how to grab a thumbnail of a minimized window and
  /external/chromium_org/third_party/webrtc/base/
win32windowpicker.cc 32 // Skip windows that are invisible, minimized, have no title, or are owned,
33 // unless they have the app window style set. Except for minimized windows,
35 // TODO: Figure out how to grab a thumbnail of a minimized window and
  /external/chromium_org/chrome/renderer/resources/extensions/
app_window_custom_bindings.js 236 return appWindowData.minimized;
302 minimized: params.minimized,
346 if (!oldData.minimized && update.minimized)
352 (oldData.minimized && !update.minimized) ||
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_view.cc 52 // user resizing, it will be treated as minimized.
429 // The height of the title-only or minimized panel is smaller than the minimum
442 // and minimized panel without additional height being added by the system.
496 // the OS activating a minimized panel when this one is
513 // Set the flags "NoActivate" to make sure the minimized panels do not get
515 // minimized panels do appear in the taskbar and Alt-Tab menu if it is not
842 // can be restored to this size once it is shrunk to minimized state.
847 // minimized state.
877 // treate it as minimized. This could occur when the user is dragging
887 // titlebar height, treat it as minimized. This could occur when the use
    [all...]
  /external/chromium_org/ash/frame/caption_buttons/
frame_caption_button_container_view.h 30 // Whether the frame can be minimized (either via the maximize/restore button
38 // |minimize_allowed| indicates whether the frame can be minimized (either via
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
dogleg.h 71 /* at which the quadratic is minimized. */
92 /* at which the quadratic is minimized. */
  /external/chromium_org/ui/events/x/
device_list_cache_x.h 36 // A class to cache the current XInput device list. This minimized the
  /external/jdiff/src/jdiff/
Comments.java 522 * tag.equalsIgnoreCase("tr") || // Is sometimes minimized
523 * tag.equalsIgnoreCase("th") || // Is sometimes minimized
524 * tag.equalsIgnoreCase("td") || // Is sometimes minimized
525 * tag.equalsIgnoreCase("dt") || // Is sometimes minimized
526 * tag.equalsIgnoreCase("dd") || // Is sometimes minimized
527 * tag.equalsIgnoreCase("img") || // Is sometimes minimized
528 * tag.equalsIgnoreCase("code") || // Is sometimes minimized (error)
529 * tag.equalsIgnoreCase("font") || // Is sometimes minimized (error)
530 * tag.equalsIgnoreCase("ul") || // Is sometimes minimized
531 * tag.equalsIgnoreCase("ol") || // Is sometimes minimized
    [all...]

Completed in 1188 milliseconds

1 2 3 4 5 6 7 8 9