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

1 2

  /external/chromium_org/ui/views/examples/
button_example.cc 75 if (event.IsShiftDown()) {
94 } else if (event.IsShiftDown()) {
bubble_example.cc 91 arrow_index = (arrow_index + count + (event.IsShiftDown() ? -1 : 1)) % count;
  /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/chrome/browser/extensions/
extension_keybinding_apitest.cc 477 EXPECT_TRUE(accelerator.IsShiftDown());
512 EXPECT_TRUE(accelerator.IsShiftDown());
525 EXPECT_TRUE(accelerator.IsShiftDown());
560 EXPECT_TRUE(accelerator.IsShiftDown());
620 EXPECT_TRUE(accelerator.IsShiftDown());
656 EXPECT_TRUE(accelerator.IsShiftDown());
673 EXPECT_TRUE(accelerator.IsShiftDown());
709 EXPECT_TRUE(accelerator.IsShiftDown());
726 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 580 if (!command.accelerator().IsShiftDown())
    [all...]
  /external/chromium_org/ui/views/focus/
focus_manager.cc 63 if (event.IsShiftDown())
88 AdvanceFocus(event.IsShiftDown());
597 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 400 if (model()->is_keyword_hint() && !event.IsShiftDown()) {
408 if (event.IsShiftDown() &&
413 model()->OnUpOrDownKeyPressed(event.IsShiftDown() ? -1 : 1);
705 const bool shift = event.IsShiftDown();
797 ((model()->is_keyword_hint() && !event.IsShiftDown()) ||
    [all...]
  /external/chromium_org/ui/app_list/views/
search_result_list_view.cc 124 if (event.IsShiftDown())
search_result_view.cc 182 + (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/chrome/browser/ui/views/
find_bar_view.cc 418 !key_event.IsShiftDown(),
  /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 856 if (event.IsShiftDown() && event.IsControlDown()) {
858 } else if (event.IsShiftDown()) {
    [all...]
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine.cc 146 ext_event->shift_key = event.IsShiftDown();
  /external/chromium_org/chrome/common/extensions/
command.cc 324 if (accelerator.IsShiftDown()) {
  /external/chromium_org/ui/events/
event.h 85 bool IsShiftDown() const { return (flags_ & EF_SHIFT_DOWN) != 0; }
  /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();
598 MoveCursorTo(event.location(), event.IsShiftDown());
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
global_menu_bar_x11.cc 517 if (accelerator.IsShiftDown())
  /external/chromium_org/ui/views/controls/combobox/
combobox.cc 431 e.IsShiftDown() || e.IsControlDown() || e.IsAltDown()) {

Completed in 1163 milliseconds

1 2