Searched defs:shift (Results 26 - 50 of 657) sorted by path

1234567891011>>

/external/chromium_org/chrome/browser/
H A Dbrowser_keyevents_browsertest.cc76 bool shift; member in struct:__anon2957::KeyEventTestData
274 browser(), test.key, test.ctrl, test.shift, test.alt, test.command));
282 " VKEY:0x%02x, ctrl:%d, shift:%d, alt:%d, command:%d\n"
285 data.key, data.ctrl, data.shift, data.alt, data.command,
306 // shift-a
329 // shift-a
H A Dprocess_info_snapshot_mac.cc90 int shift = 0; local
93 shift = 0;
97 shift = 1;
100 shift = 2;
103 shift = 3;
106 shift = 4;
109 shift = 5;
112 shift = 6;
119 for (int i = 0; i < shift; i++)
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_network_interceptor.cc140 int64_t shift = ticks % length; local
143 (ticks / length) * kPacketSize + (i < shift ? kPacketSize : 0));
146 throttled_transactions_.begin() + shift, throttled_transactions_.end());
/external/chromium_org/chrome/browser/extensions/
H A Dapp_icon_loader_impl.cc109 const color_utils::HSL shift = {-1, 0, 0.6}; local
110 image = gfx::ImageSkiaOperations::CreateHSLShiftedImage(image, shift);
H A Dextension_action.cc47 color_utils::HSL shift = {-1, 0, 0.5}; variable
49 SkBitmapOperations::CreateHSLShiftedBitmap(icon_rep.sk_bitmap(), shift),
H A Dextension_commands_global_registry_apitest.cc35 // Send a simulated key press and release event, where |control|, |shift| or
39 bool shift,
57 if (shift)
37 SendNativeKeyEventToXDisplay(ui::KeyboardCode key, bool control, bool shift, bool alt) argument
H A Dextension_icon_manager.cc128 color_utils::HSL shift = {-1, 0, 0.6}; local
129 result = SkBitmapOperations::CreateHSLShiftedBitmap(result, shift);
/external/chromium_org/chrome/browser/history/
H A Dvisit_filter.cc200 base::TimeDelta shift = base::TimeDelta::FromDays( local
204 day_base -= shift;
/external/chromium_org/chrome/browser/ui/app_list/
H A Dextension_app_item.cc108 const color_utils::HSL shift = {-1, 0, 0.6}; member in namespace:__anon4948
126 shift)),
189 const color_utils::HSL shift = {-1, 0, 0.6}; local
190 icon = gfx::ImageSkiaOperations::CreateHSLShiftedImage(icon, shift);
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dapp_result.cc175 const color_utils::HSL shift = {-1, 0, 0.6}; local
176 icon = gfx::ImageSkiaOperations::CreateHSLShiftedImage(icon, shift);
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_ui.cc298 // Applies an HSL shift to a GdkColor (instead of an SkColor)
299 void GdkColorHSLShift(const color_utils::HSL& shift, GdkColor* frame_color) { argument
301 GdkColorToSkColor(*frame_color), shift);
/external/chromium_org/chrome/browser/ui/
H A Dmetro_pin_tab_helper_win.cc92 color_utils::HSL shift = {-1, -1, kBoxFade}; local
93 paint.setColor(color_utils::HSLShift(dominant_color, shift));
/external/chromium_org/chrome/browser/ui/views/
H A Dkeyboard_access_browsertest.cc145 bool shift,
181 bool shift,
212 browser(), ui::VKEY_F, false, shift, true, false)); local
217 browser(), menu_key, false, shift, false, false));
220 if (shift) {
222 // focus when typing a menu key with modifier keys, such as shift keys or
180 TestMenuKeyboardAccess(bool alternate_key_sequence, bool shift, bool focus_omnibox) argument
/external/chromium_org/chrome/browser/ui/views/omnibox/
H A Domnibox_view_views.cc690 // into view and shift the contents jarringly.
705 const bool shift = event.IsShiftDown(); local
718 if (shift && model()->popup_model()->IsOpen())
734 if (control || alt || shift)
739 if (control || alt || shift)
750 if (shift && !control && !read_only()) {
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_icon_source.cc51 color_utils::HSL shift = {-1, 0, 0.6}; local
52 return SkBitmapOperations::CreateHSLShiftedBitmap(*image, shift);
/external/chromium_org/chrome/common/extensions/
H A Dcommand.cc198 bool shift = (modifiers & ui::EF_SHIFT_DOWN) != 0; local
207 (shift && !ctrl && !alt && !command)) {
220 (shift || ctrl || alt || command)) {
/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils.cc36 bool shift,
42 return SendKeyPressToWindowSync(window, key, control, shift, alt, command);
48 bool shift,
55 window, key, control, shift, alt, command, runner->QuitClosure());
59 window, key, control, shift, alt, command, runner->QuitClosure());
77 bool shift,
84 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
33 SendKeyPressSync(const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
45 SendKeyPressToWindowSync(const gfx::NativeWindow window, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command) argument
74 SendKeyPressAndWait(const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, int type, const content::NotificationSource& source) argument
H A Dinteractive_test_utils.h34 // Makes focus shift to the given View without clicking it.
53 bool shift,
63 bool shift,
74 bool shift,
95 bool shift,
107 bool shift,
115 if (!SendKeyPressSync(browser, key, control, shift, alt, command))
103 SendKeyPressAndWaitWithDetails( const Browser* browser, ui::KeyboardCode key, bool control, bool shift, bool alt, bool command, int type, const content::NotificationSource& source, const content::Details<U>& details) argument
/external/chromium_org/chrome/test/remoting/
H A Dkey_code_conv.cc16 char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift) {
24 *shift = false;
31 *shift = true;
15 GetKeyValuesFromChar( char c, const char** code, ui::KeyboardCode* vkey_code, bool* shift) argument
H A Dremote_desktop_browsertest.cc378 bool shift,
386 shift, local
394 bool shift; local
395 GetKeyValuesFromChar(c, &code, &keyboard_code, &shift);
397 SimulateKeyPressWithCode(keyboard_code, code, false, shift, false, false);
374 SimulateKeyPressWithCode( ui::KeyboardCode keyCode, const char* code, bool control, bool shift, bool alt, bool command) argument
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_leveldb_coding.cc413 int shift = 0; local
417 ret |= static_cast<int64>(c) << shift;
418 shift += 8;
430 int shift = 0; local
437 ret |= static_cast<int64>(c & 0x7f) << shift;
438 shift += 7;
/external/chromium_org/content/public/test/
H A Dbrowser_test_utils.cc311 bool shift,
315 web_contents, key_code, NULL, control, shift, alt, command);
322 bool shift,
340 if (shift) {
398 if (shift) {
308 SimulateKeyPress(WebContents* web_contents, ui::KeyboardCode key_code, bool control, bool shift, bool alt, bool command) argument
318 SimulateKeyPressWithCode(WebContents* web_contents, ui::KeyboardCode key_code, const char* code, bool control, bool shift, bool alt, bool command) argument
/external/chromium_org/media/base/simd/
H A Dconvert_rgb_to_yuv_sse2.cc69 static inline int RGBToU(int r, int g, int b, int shift) { argument
73 u >>= FIX_SHIFT + shift; local
77 static inline int RGBToV(int r, int g, int b, int shift) { argument
81 v >>= FIX_SHIFT + shift; local
204 // Down shift back to 8bits range.
266 // Right shift 14 because of 12 from fixed point and 2 from subsampling.
/external/chromium_org/media/blink/
H A Dbuffered_resource_loader.cc374 int shift = 0; local
377 DCHECK_LT(shift, max_enum); // Sanity check.
380 shift,
385 ++shift;
/external/chromium_org/media/cast/net/rtcp/
H A Drtcp_builder.cc308 int shift = static_cast<uint8>(*packet_it - packet_id) - 1; local
309 if (shift >= 0 && shift <= 7) {
311 bitmask |= (1 << shift);

Completed in 478 milliseconds

1234567891011>>