Lines Matching full:ctrl
29 "Command key is not supported. Note: Ctrl means Command on Mac";
83 // they specified Ctrl and it got normalized to Command (to get Ctrl on
91 // The developer specified "Ctrl+foo" for Default and it got normalized
196 bool ctrl = (modifiers & ui::EF_CONTROL_DOWN) != 0;
200 // We support Ctrl+foo, Alt+foo, Ctrl+Shift+foo, Alt+Shift+foo, but not
201 // Ctrl+Alt+foo and not Shift+foo either. For a more detailed reason why we
202 // don't support Ctrl+Alt+foo see this article:
206 if (key == ui::VKEY_UNKNOWN || (ctrl && alt) || (command && alt) ||
207 (shift && !ctrl && !alt && !command)) {
220 (shift || ctrl || alt || command)) {
232 // For Mac, we convert "Ctrl" to "Command" and "MacCtrl" to "Ctrl". Other
306 // Ctrl and Alt are mutually exclusive.
468 Ctrl to Command we must detect when the developer