Searched refs:ui (Results 1 - 25 of 5208) sorted by relevance

1234567891011>>

/external/chromium_org/mojo/spy/ui/
H A D__init__.py5 from ui import tvcm_stub
/external/chromium_org/ui/base/clipboard/
H A Dcustom_data_helper_linux.cc6 #include "ui/base/clipboard/custom_data_helper.h"
8 namespace ui { namespace
13 } // namespace ui
/external/chromium_org/chrome/test/remoting/
H A Dkey_code_map.h6 // 1. ui/events/keycodes/dom4/keycode_converter_data.h
7 // 2. ui/events/keycodes/keyboard_codes.h
13 #include "ui/events/keycodes/keyboard_codes.h"
29 ui::KeyboardCode vkey_code;
37 {'a', 'A', "KeyA", ui::VKEY_A}, // aA
38 {'b', 'B', "KeyB", ui::VKEY_B}, // bB
39 {'c', 'C', "KeyC", ui::VKEY_C}, // cC
40 {'d', 'D', "KeyD", ui::VKEY_D}, // dD
41 {'e', 'E', "KeyE", ui::VKEY_E}, // eE
42 {'f', 'F', "KeyF", ui
[all...]
/external/chromium_org/mojo/examples/keyboard/
H A Dkeys.cc8 #include "ui/events/event_constants.h"
9 #include "ui/events/keycodes/keyboard_codes.h"
17 { ui::VKEY_Q, 1, 0, 'q' },
18 { ui::VKEY_W, 1, 0, 'w' },
19 { ui::VKEY_E, 1, 0, 'e' },
20 { ui::VKEY_R, 1, 0, 'r' },
21 { ui::VKEY_T, 1, 0, 't' },
22 { ui::VKEY_Y, 1, 0, 'y' },
23 { ui::VKEY_U, 1, 0, 'u' },
24 { ui
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Daccelerator_table.cc5 #include "chrome/browser/ui/views/accelerator_table.h"
9 #include "ui/base/accelerators/accelerator.h"
10 #include "ui/events/event_constants.h"
24 { ui::VKEY_LEFT, ui::EF_ALT_DOWN, IDC_BACK },
25 { ui::VKEY_BACK, ui::EF_NONE, IDC_BACK },
26 { ui::VKEY_D, ui::EF_CONTROL_DOWN, IDC_BOOKMARK_PAGE },
27 { ui
[all...]
H A Devent_utils.cc5 #include "chrome/browser/ui/views/event_utils.h"
7 #include "ui/events/event.h"
11 bool IsPossibleDispositionEvent(const ui::Event& event) {
13 (ui::EF_LEFT_MOUSE_BUTTON | ui::EF_MIDDLE_MOUSE_BUTTON));
/external/chromium_org/ui/base/ime/
H A Dtext_input_client.cc5 #include "ui/base/ime/text_input_client.h"
7 namespace ui { namespace
12 } // namespace ui
/external/chromium_org/ui/base/models/
H A Ddialog_model.cc5 #include "ui/base/models/dialog_model.h"
7 namespace ui { namespace
12 } // namespace ui
/external/chromium_org/ui/base/
H A Dtheme_provider.cc5 #include "ui/base/theme_provider.h"
7 namespace ui { namespace
16 } // namespace ui
/external/chromium_org/ui/base/touch/
H A Dtouch_device.cc5 #include "ui/base/touch/touch_device.h"
7 namespace ui { namespace
19 } // namespace ui
H A Dtouch_device_ozone.cc5 #include "ui/base/touch/touch_device.h"
7 namespace ui { namespace
19 } // namespace ui
H A Dtouch_device_aurax11.cc5 #include "ui/base/touch/touch_device.h"
6 #include "ui/events/x/touch_factory_x11.h"
8 namespace ui { namespace
11 return ui::TouchFactory::GetInstance()->IsTouchDevicePresent();
15 return ui::TouchFactory::GetInstance()->GetMaxTouchPoints();
18 } // namespace ui
/external/chromium_org/ui/base/win/
H A Dinternal_constants.cc5 #include "ui/base/win/internal_constants.h"
7 namespace ui { namespace
12 } // namespace ui
/external/chromium_org/ui/native_theme/
H A Dnative_theme_observer.cc5 #include "ui/native_theme/native_theme_observer.h"
7 namespace ui { namespace
11 } // namespace ui
/external/chromium_org/ui/shell_dialogs/
H A Dbase_shell_dialog.cc5 #include "ui/shell_dialogs/base_shell_dialog.h"
7 namespace ui { namespace
11 } // namespace ui
H A Dselect_file_dialog_factory.cc5 #include "ui/shell_dialogs/select_file_dialog_factory.h"
7 namespace ui { namespace
11 } // namespace ui
H A Dselect_file_policy.cc5 #include "ui/shell_dialogs/select_file_policy.h"
7 namespace ui { namespace
11 } // namespace ui
/external/libunwind/src/ptrace/
H A D_UPT_create.c33 struct UPT_info *ui = malloc (sizeof (struct UPT_info)); local
35 if (!ui)
38 memset (ui, 0, sizeof (*ui));
39 ui->pid = pid;
40 ui->edi.di_cache.format = -1;
41 ui->edi.di_debug.format = -1;
43 ui->edi.ktab.format = -1;
45 return ui;
/external/chromium_org/ui/events/ozone/evdev/
H A Dkey_event_converter_evdev.cc5 #include "ui/events/ozone/evdev/key_event_converter_evdev.h"
11 #include "ui/events/event.h"
12 #include "ui/events/keycodes/dom4/keycode_converter.h"
13 #include "ui/events/keycodes/keyboard_codes.h"
14 #include "ui/events/ozone/evdev/event_modifiers_evdev.h"
16 namespace ui { namespace
22 ui::KeyboardCode KeyboardCodeFromButton(unsigned int code) {
23 static const ui::KeyboardCode kLinuxBaseKeyMap[] = {
24 ui::VKEY_UNKNOWN, // KEY_RESERVED
25 ui
[all...]
/external/chromium_org/content/browser/renderer_host/input/
H A Dweb_input_event_util_posix.cc9 ui::KeyboardCode GetWindowsKeyCodeWithoutLocation(ui::KeyboardCode key_code) {
11 case ui::VKEY_LCONTROL:
12 case ui::VKEY_RCONTROL:
13 return ui::VKEY_CONTROL;
14 case ui::VKEY_LSHIFT:
15 case ui::VKEY_RSHIFT:
16 return ui::VKEY_SHIFT;
17 case ui::VKEY_LMENU:
18 case ui
[all...]
/external/libunwind/src/coredump/
H A D_UCD_destroy.c27 _UCD_destroy (struct UCD_info *ui) argument
29 if (!ui)
32 if (ui->coredump_fd >= 0)
33 close(ui->coredump_fd);
34 free(ui->coredump_filename);
36 invalidate_edi (&ui->edi);
39 for (i = 0; i < ui->phdrs_count; i++)
41 struct coredump_phdr *phdr = &ui->phdrs[i];
47 free(ui->note_phdr);
49 free(ui);
[all...]
/external/chromium_org/ash/accelerators/
H A Daccelerator_table.cc15 { false, ui::VKEY_LMENU, ui::EF_SHIFT_DOWN, NEXT_IME },
16 { false, ui::VKEY_MENU, ui::EF_SHIFT_DOWN, NEXT_IME },
17 { false, ui::VKEY_RMENU, ui::EF_SHIFT_DOWN, NEXT_IME },
19 { false, ui::VKEY_LSHIFT, ui::EF_ALT_DOWN, NEXT_IME },
20 { false, ui::VKEY_SHIFT, ui
[all...]
/external/chromium_org/chrome/browser/chromeos/events/
H A Dkeyboard_driven_event_rewriter_unittest.cc12 #include "ui/events/event.h"
23 std::string GetRewrittenEventAsString(ui::KeyboardCode ui_keycode,
25 ui::EventType ui_type) {
26 ui::KeyEvent keyevent(ui_type, ui_keycode, ui_flags);
27 scoped_ptr<ui::Event> rewritten_event;
28 ui::EventRewriteStatus status =
37 ui::EventRewriteStatus status) {
49 ui::KeyboardCode ui_keycode;
52 { ui::VKEY_A, ui
[all...]
/external/chromium_org/ui/base/cursor/
H A Dcursor_x11.cc5 #include "ui/base/cursor/cursor.h"
7 #include "ui/base/x/x11_util.h"
9 namespace ui { namespace
13 ui::RefCustomXCursor(platform_cursor_);
18 ui::UnrefCustomXCursor(platform_cursor_);
21 } // namespace ui
/external/chromium_org/chrome/test/chromedriver/
H A Dkeycode_text_conversion_x.cc15 #include "ui/base/x/x11_util.h"
16 #include "ui/events/keycodes/keyboard_code_conversion_x.h"
21 ui::KeyboardCode key_code;
30 { ui::VKEY_BACK, 22 },
31 { ui::VKEY_TAB, 23 },
32 { ui::VKEY_RETURN, 36 },
33 { ui::VKEY_SHIFT, 50 },
34 { ui::VKEY_CONTROL, 37 },
35 { ui::VKEY_MENU, 64 },
36 { ui
[all...]

Completed in 7442 milliseconds

1234567891011>>