Home
last modified time | relevance | path

Searched refs:key (Results 1 – 14 of 14) sorted by relevance

/scripts/kconfig/lxdialog/
A Dmenubox.c270 key = wgetch(menu); in dialog_menu()
272 if (key < 256 && isalpha(key)) in dialog_menu()
273 key = tolower(key); in dialog_menu()
295 key == KEY_UP || key == KEY_DOWN || in dialog_menu()
296 key == '-' || key == '+' || in dialog_menu()
297 key == KEY_PPAGE || key == KEY_NPAGE)) { in dialog_menu()
301 if (key == KEY_UP || key == '-') { in dialog_menu()
310 } else if (key == KEY_DOWN || key == '+') { in dialog_menu()
360 switch (key) { in dialog_menu()
386 switch (key) { in dialog_menu()
[all …]
A Dchecklist.c195 while (key != KEY_ESC) { in dialog_checklist()
196 key = wgetch(dialog); in dialog_checklist()
200 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
204 if (i < max_choice || key == KEY_UP || key == KEY_DOWN || in dialog_checklist()
205 key == '+' || key == '-') { in dialog_checklist()
206 if (key == KEY_UP || key == '-') { in dialog_checklist()
231 } else if (key == KEY_DOWN || key == '+') { in dialog_checklist()
273 switch (key) { in dialog_checklist()
301 key = KEY_ESC; in dialog_checklist()
304 key = on_key_esc(dialog); in dialog_checklist()
[all …]
A Dyesno.c31 int i, x, y, key = 0, button = 0; in dialog_yesno() local
65 while (key != KEY_ESC) { in dialog_yesno()
66 key = wgetch(dialog); in dialog_yesno()
67 switch (key) { in dialog_yesno()
80 button = ((key == KEY_LEFT ? --button : ++button) < 0) ? 1 : (button > 1 ? 0 : button); in dialog_yesno()
90 key = on_key_esc(dialog); in dialog_yesno()
100 return key; /* ESC pressed */ in dialog_yesno()
A Dinputbox.c35 int input_x = 0, key = 0, button = -1; in dialog_inputbox() local
106 while (key != KEY_ESC) { in dialog_inputbox()
107 key = wgetch(dialog); in dialog_inputbox()
110 switch (key) { in dialog_inputbox()
184 if (key < 0x100 && isprint(key)) { in dialog_inputbox()
190 instr[pos] = key; in dialog_inputbox()
192 instr[len] = key; in dialog_inputbox()
220 switch (key) { in dialog_inputbox()
274 key = KEY_ESC; in dialog_inputbox()
277 key = on_key_esc(dialog); in dialog_inputbox()
A Dtextbox.c46 int i, x, y, cur_x, cur_y, key = 0; in dialog_textbox() local
128 key = wgetch(dialog); in dialog_textbox()
129 switch (key) { in dialog_textbox()
205 if (key == '0') in dialog_textbox()
237 if (key == keys[i]) { in dialog_textbox()
259 return key; in dialog_textbox()
A Dutil.c549 int key; in on_key_esc() local
555 key = wgetch(win); in on_key_esc()
562 if (key == KEY_ESC && key2 == ERR) in on_key_esc()
564 else if (key != ERR && key != KEY_ESC && key2 == ERR) in on_key_esc()
565 ungetch(key); in on_key_esc()
/scripts/kconfig/
A Dnconf.c312 .key = F_HELP,
324 .key = F_INSTS,
330 .key = F_CONF,
336 .key = F_BACK,
342 .key = F_SAVE,
348 .key = F_LOAD,
360 .key = F_EXIT,
473 if (*key == KEY_F(function_keys[i].key) || in process_special_keys()
474 *key == '0' + function_keys[i].key){ in process_special_keys()
1024 if (key == '/' || (state->in_search && key == 27)) { in do_match()
[all …]
A Dqconf.h28 QList<int> readSizes(const QString& key, bool *ok);
29 bool writeSizes(const QString& key, const QList<int>& value);
A Dmconf.c374 int key = '0' + (pos->index % JUMP_NB) + 1; in update_text() local
376 sprintf(header, "(%c)", key); in update_text()
377 data->keys[k] = key; in update_text()
A Dqconf.cc56 QList<int> ConfigSettings::readSizes(const QString& key, bool *ok) in readSizes() argument
60 if (contains(key)) in readSizes()
62 QStringList entryList = value(key).toStringList(); in readSizes()
79 bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value) in writeSizes() argument
86 setValue(key, stringList); in writeSizes()
286 switch (e->key()) { in keyPressEvent()
714 if (ev->key() == Qt::Key_Escape && mode != fullMode && mode != listMode) { in keyPressEvent()
726 switch (ev->key()) { in keyPressEvent()
/scripts/dtc/pylibfdt/
A Dsetup.py80 key = m.group('key')
83 if 'plus' in m.groupdict() and key in makevars:
84 makevars[key] += ' ' + value
86 makevars[key] = value
/scripts/
A Dmailmapper106 key=lambda x: commits_per_name[x] if x else 0)[1]
A Dgen_compile_commands.py226 json.dump(sorted(compile_commands, key=lambda x: x["file"]), f, indent=2, sort_keys=True)
A Dcheckpatch.pl433 for my $key (keys %debug) {
435 eval "\${dbg_$key} = '$debug{$key}';";

Completed in 26 milliseconds