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

1 2

  /external/chromium_org/ui/base/accelerators/
accelerator.h 53 bool IsShiftDown() const;
accelerator.cc 88 bool Accelerator::IsShiftDown() const {
218 if (IsShiftDown())
  /external/chromium_org/ui/views/examples/
button_example.cc 84 if (event.IsShiftDown()) {
121 } else if (event.IsShiftDown()) {
146 if (event.IsShiftDown()) {
165 } else if (event.IsShiftDown()) {
bubble_example.cc 91 arrow_index = (arrow_index + count + (event.IsShiftDown() ? -1 : 1)) % count;
  /external/chromium_org/chrome/browser/extensions/
extension_keybinding_apitest.cc 352 EXPECT_TRUE(accelerator.IsShiftDown());
387 EXPECT_TRUE(accelerator.IsShiftDown());
400 EXPECT_TRUE(accelerator.IsShiftDown());
435 EXPECT_TRUE(accelerator.IsShiftDown());
495 EXPECT_TRUE(accelerator.IsShiftDown());
531 EXPECT_TRUE(accelerator.IsShiftDown());
548 EXPECT_TRUE(accelerator.IsShiftDown());
584 EXPECT_TRUE(accelerator.IsShiftDown());
601 EXPECT_TRUE(accelerator.IsShiftDown());
global_shortcut_listener_win.cc 72 modifiers |= accelerator.IsShiftDown() ? MOD_SHIFT : 0;
global_shortcut_listener_x11.cc 35 modifiers |= accelerator.IsShiftDown() ? ShiftMask : 0;
  /external/chromium_org/chrome/browser/extensions/api/commands/
command_service_browsertest.cc 71 EXPECT_TRUE(accelerator.IsShiftDown());
command_service.cc 576 if (!command.accelerator().IsShiftDown())
    [all...]
  /external/chromium_org/ui/views/focus/
focus_manager.cc 63 if (event.IsShiftDown())
84 AdvanceFocus(event.IsShiftDown());
578 if (event.IsShiftDown() || event.IsControlDown() || event.IsAltDown())
  /external/chromium_org/chrome/browser/ui/views/toolbar/
reload_button.cc 145 if (event.IsShiftDown() || event.IsControlDown()) {
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_view_views.cc 389 if (model()->is_keyword_hint() && !event.IsShiftDown()) {
394 if (event.IsShiftDown() &&
399 model()->OnUpOrDownKeyPressed(event.IsShiftDown() ? -1 : 1);
691 const bool shift = event.IsShiftDown();
783 ((model()->is_keyword_hint() && !event.IsShiftDown()) ||
    [all...]
  /external/chromium_org/ui/app_list/views/
search_result_list_view.cc 123 if (event.IsShiftDown())
search_result_view.cc 179 + (event.IsShiftDown() ? -1 : 1);
  /external/chromium_org/ui/views/controls/table/
table_view.cc 817 (!event.IsControlDown() && !event.IsShiftDown())) {
823 if ((event.IsControlDown() && event.IsShiftDown()) || event.IsShiftDown()) {
828 if (event.IsControlDown() && event.IsShiftDown())
  /external/chromium_org/ash/frame/caption_buttons/
frame_caption_button_container_view.cc 189 if (event.IsShiftDown()) {
  /external/chromium_org/chrome/browser/ui/views/
find_bar_view.cc 411 !key_event.IsShiftDown(),
  /external/chromium_org/ui/events/
event.h 80 bool IsShiftDown() const { return (flags_ & EF_SHIFT_DOWN) != 0; }
  /external/chromium_org/ui/views/controls/tabbed_pane/
tabbed_pane.cc 348 const int increment = accelerator.IsShiftDown() ? -1 : 1;
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab.cc 805 if (event.IsShiftDown() && event.IsControlDown()) {
807 } else if (event.IsShiftDown()) {
859 } else if (event.IsOnlyLeftMouseButton() && !event.IsShiftDown() &&
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine.cc 148 ext_event->shift_key = event.IsShiftDown();
  /external/chromium_org/chrome/browser/ui/views/frame/
global_menu_bar_x11.cc 493 if (accelerator.IsShiftDown())
  /external/chromium_org/chrome/common/extensions/
command.cc 311 if (accelerator.IsShiftDown()) {
  /external/chromium_org/ui/views/widget/
root_view.cc 78 (event->key_code() == ui::VKEY_F10 && event->IsShiftDown()))) {
  /external/chromium_org/ui/views/controls/textfield/
textfield.cc 83 const bool shift = event.IsShiftDown();
578 MoveCursorTo(event.location(), event.IsShiftDown());
    [all...]

Completed in 963 milliseconds

1 2