Home | History | Annotate | Download | only in frame

Lines Matching refs:accelerators

463   // The standard Ctrl-X, Ctrl-V and Ctrl-C are not defined as accelerators
1111 // This piece of code is based on the fact that accelerators registered
2186 ACCEL* accelerators = static_cast<ACCEL*>(malloc(sizeof(ACCEL) * count));
2187 CopyAcceleratorTable(accelerator_table, accelerators, count);
2194 bool alt_down = (accelerators[i].fVirt & FALT) == FALT;
2195 bool ctrl_down = (accelerators[i].fVirt & FCONTROL) == FCONTROL;
2196 bool shift_down = (accelerators[i].fVirt & FSHIFT) == FSHIFT;
2198 static_cast<ui::KeyboardCode>(accelerators[i].key),
2200 accelerator_table_[accelerator] = accelerators[i].cmd;
2207 free(accelerators);
2337 // Collect information about the relative popularity of various accelerators