| /third_party/python/Lib/idlelib/ |
| D | config-keys.def | 11 copy=<Control-Key-c> <Control-Key-C> 12 cut=<Control-Key-x> <Control-Key-X> 13 paste=<Control-Key-v> <Control-Key-V> 15 center-insert=<Control-Key-l> <Control-Key-L> 16 close-all-windows=<Control-Key-q> <Control-Key-Q> 18 do-nothing=<Control-Key-F12> 19 end-of-file=<Control-Key-d> <Control-Key-D> 24 interrupt-execution=<Control-Key-c> <Control-Key-C> 26 restart-shell=<Control-Key-F6> 29 open-new-window=<Control-Key-n> <Control-Key-N> [all …]
|
| /third_party/alsa-utils/alsamixer/ |
| D | mixer_controls.c | 33 struct control *controls; 200 static void create_name(struct control *control) in create_name() argument 205 index = snd_mixer_selem_get_index(control->elem); in create_name() 207 control->name = casprintf("%s %u", snd_mixer_selem_get_name(control->elem), index); in create_name() 209 control->name = cstrdup(snd_mixer_selem_get_name(control->elem)); in create_name() 211 while ((s = strstr(control->name, "IEC958")) != NULL) in create_name() 215 static unsigned int create_controls_for_elem(snd_mixer_elem_t *elem, struct control *control) in create_controls_for_elem() argument 220 struct control *front_control = NULL; in create_controls_for_elem() 233 control->elem = elem; in create_controls_for_elem() 234 control->flags = TYPE_ENUM; in create_controls_for_elem() [all …]
|
| D | mixer_widget.c | 200 _("Left Move to the previous control"), in show_help() 201 _("Right Move to the next control"), in show_help() 239 static struct control *get_focus_control(unsigned int type) in get_focus_control() 250 static void change_enum_to_percent(struct control *control, int value) in change_enum_to_percent() argument 258 i = ffs(control->enum_channel_bits) - 1; in change_enum_to_percent() 259 err = snd_mixer_selem_get_enum_item(control->elem, i, &index); in change_enum_to_percent() 266 items = snd_mixer_selem_get_enum_items(control->elem); in change_enum_to_percent() 274 if (control->enum_channel_bits & (1 << i)) in change_enum_to_percent() 275 snd_mixer_selem_set_enum_item(control->elem, i, new_index); in change_enum_to_percent() 278 static void change_enum_relative(struct control *control, int delta) in change_enum_relative() argument [all …]
|
| D | mixer_display.c | 245 struct control *control; in display_focus_item_info() local 262 control = &controls[focus_control_index]; in display_focus_item_info() 264 if (control->flags & TYPE_ENUM) { in display_focus_item_info() 265 err = snd_mixer_selem_get_enum_item(control->elem, ffs(control->enum_channel_bits) - 1, &index); in display_focus_item_info() 267 err = snd_mixer_selem_get_enum_item_name(control->elem, index, sizeof buf - 1, buf); in display_focus_item_info() 270 } else if (control->flags & (TYPE_PVOLUME | TYPE_CVOLUME)) { in display_focus_item_info() 273 if (control->flags & TYPE_PVOLUME) in display_focus_item_info() 277 if (!(control->flags & HAS_VOLUME_1)) { in display_focus_item_info() 278 err = get_vol_func(control->elem, control->volume_channels[0], &db); in display_focus_item_info() 285 err = get_vol_func(control->elem, control->volume_channels[0], &db); in display_focus_item_info() [all …]
|
| /third_party/pcre2/pcre2/maint/ucptestdata/ |
| D | testoutput1 | 2 U+0000 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 3 U+0001 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 4 U+0002 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 5 U+0003 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 6 U+0004 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 7 U+0005 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 8 U+0006 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 9 U+0007 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 10 U+0008 BN Control: Control, common, Control, [ascii, patternwhitespace, whitespace] 11 U+0009 S Control: Control, common, Control, [ascii, graphemebase, patternsyntax, sentenceterminal… [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/ |
| D | vktSubgroupUniformControlFlowTests.cpp | 141 // that support the subgroup size control extension and variants for those in checkSupport() 151 TCU_THROW(NotSupportedError, "Implementation does not support subgroup size control"); in checkSupport() 158 …TCU_THROW(NotSupportedError, "These tests are not enabled for subgroup size control implementation… in checkSupport() 243 bool control = controls[c]; in createSubgroupUniformControlFlowTests() local 245 const char* subdir = (control ? large_control_dir : large_dir); in createSubgroupUniformControlFlowTests() 247 group.add("subgroup_reconverge00", "if/else diverge", small, control, stage); in createSubgroupUniformControlFlowTests() 248 group.add("subgroup_reconverge01", "do while diverge", small, control, stage); in createSubgroupUniformControlFlowTests() 249 group.add("subgroup_reconverge02", "while true with break", small, control, stage); in createSubgroupUniformControlFlowTests() 250 group.add("subgroup_reconverge03", "if/else diverge, volatile", small, control, stage); in createSubgroupUniformControlFlowTests() 251 group.add("subgroup_reconverge04", "early return and if/else diverge", small, control, stage); in createSubgroupUniformControlFlowTests() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | inheritance1.types | 2 class Control { 3 >Control : Control 8 interface SelectableControl extends Control { 13 class Button extends Control implements SelectableControl { 15 >Control : Control 20 class TextBox extends Control { 22 >Control : Control 27 class ImageBase extends Control implements SelectableControl{ 29 >Control : Control 31 class Image1 extends Control { [all …]
|
| D | interfaceExtendsClass1.symbols | 2 class Control { 3 >Control : Symbol(Control, Decl(interfaceExtendsClass1.ts, 0, 0)) 6 >state : Symbol(Control.state, Decl(interfaceExtendsClass1.ts, 0, 15)) 8 interface SelectableControl extends Control { 10 >Control : Symbol(Control, Decl(interfaceExtendsClass1.ts, 0, 0)) 15 class Button extends Control { 17 >Control : Symbol(Control, Decl(interfaceExtendsClass1.ts, 0, 0)) 22 class TextBox extends Control { 24 >Control : Symbol(Control, Decl(interfaceExtendsClass1.ts, 0, 0)) 29 class Image extends Control { [all …]
|
| D | inheritance1.errors.txt | 2 Property 'select' is missing in type 'Control' but required in type 'SelectableControl'. 5 …heritance1.ts(31,1): error TS2741: Property 'select' is missing in type 'Control' but required in … 6 …heritance1.ts(37,1): error TS2741: Property 'select' is missing in type 'Control' but required in … 7 …heritance1.ts(40,1): error TS2741: Property 'select' is missing in type 'Control' but required in … 10 …3,1): error TS2741: Property 'state' is missing in type 'Locations' but required in type 'Control'. 11 …heritance1.ts(55,1): error TS2741: Property 'select' is missing in type 'Control' but required in … 13 …,1): error TS2741: Property 'state' is missing in type 'Locations1' but required in type 'Control'. 14 …heritance1.ts(61,1): error TS2741: Property 'select' is missing in type 'Control' but required in … 18 class Control { 21 interface SelectableControl extends Control { [all …]
|
| D | interfaceExtendsClass1.types | 2 class Control { 3 >Control : Control 8 interface SelectableControl extends Control { 12 class Button extends Control { 14 >Control : Control 19 class TextBox extends Control { 21 >Control : Control 26 class Image extends Control { 28 >Control : Control
|
| /third_party/alsa-utils/bat/tests/asound_state/ |
| D | asound.state.Broadwell | 2 control.1 { 12 control.2 { 22 control.3 { 32 control.4 { 42 control.5 { 52 control.6 { 63 control.7 { 73 control.8 { 84 control.9 { 95 control.10 { [all …]
|
| D | asound.state.Skylake | 2 control.1 { 18 control.2 { 29 control.3 { 41 control.4 { 57 control.5 { 68 control.6 { 84 control.7 { 95 control.8 { 111 control.9 { 121 control.10 { [all …]
|
| D | asound.state.Haswell | 2 control.1 { 12 control.2 { 22 control.3 { 32 control.4 { 42 control.5 { 52 control.6 { 63 control.7 { 73 control.8 { 84 control.9 { 95 control.10 { [all …]
|
| /third_party/pulseaudio/src/modules/alsa/mixer/samples/ |
| D | VIA 8237--Analog Devices AD1888 | 1 Simple mixer control 'Master',0 8 Simple mixer control 'Master Mono',0 13 Simple mixer control 'Master Surround',0 20 Simple mixer control 'Headphone Jack Sense',0 24 Simple mixer control 'PCM',0 31 Simple mixer control 'Surround',0 38 Simple mixer control 'Surround Jack Mode',0 42 Simple mixer control 'Center',0 47 Simple mixer control 'LFE',0 52 Simple mixer control 'Line',0 [all …]
|
| D | VIA 8237--C-Media Electronics CMI9761A+ | 1 Simple mixer control 'Master',0 8 Simple mixer control 'PCM',0 15 Simple mixer control 'Surround',0 21 Simple mixer control 'Surround Jack Mode',0 25 Simple mixer control 'Center',0 30 Simple mixer control 'LFE',0 35 Simple mixer control 'Line',0 43 Simple mixer control 'CD',0 51 Simple mixer control 'Mic',0 59 Simple mixer control 'Mic Boost (+20dB)',0 [all …]
|
| D | ATI IXP--Realtek ALC655 rev 0 | 1 Simple mixer control 'Master',0 8 Simple mixer control 'Master Mono',0 13 Simple mixer control 'PCM',0 20 Simple mixer control 'Surround',0 27 Simple mixer control 'Surround Jack Mode',0 31 Simple mixer control 'Center',0 36 Simple mixer control 'LFE',0 41 Simple mixer control 'Line',0 49 Simple mixer control 'CD',0 57 Simple mixer control 'Mic',0 [all …]
|
| D | Ensoniq AudioPCI--Cirrus Logic CS4297A rev 3 | 1 Simple mixer control 'Master',0 8 Simple mixer control 'Master Mono',0 13 Simple mixer control 'Headphone',0 20 Simple mixer control '3D Control - Center',0 26 Simple mixer control '3D Control - Depth',0 32 Simple mixer control '3D Control - Switch',0 36 Simple mixer control 'PCM',0 43 Simple mixer control 'Line',0 51 Simple mixer control 'CD',0 59 Simple mixer control 'Mic',0 [all …]
|
| D | Intel 82801CA-ICH3--Analog Devices AD1881A | 1 Simple mixer control 'Master',0 8 Simple mixer control 'Master Mono',0 13 Simple mixer control '3D Control - Center',0 19 Simple mixer control '3D Control - Depth',0 25 Simple mixer control '3D Control - Switch',0 29 Simple mixer control 'PCM',0 36 Simple mixer control 'PCM Out Path & Mute',0 40 Simple mixer control 'Line',0 48 Simple mixer control 'CD',0 56 Simple mixer control 'Mic',0 [all …]
|
| /third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
| D | test_VIDIOC_CTRL.c | 39 struct v4l2_control control; in do_get_control() local 73 memset(&control, 0xff, sizeof(control)); in do_get_control() 74 control.id = id; in do_get_control() 75 ret_get = ioctl(get_video_fd(), VIDIOC_G_CTRL, &control); in do_get_control() 91 CU_ASSERT(queryctrl.minimum <= control.value); in do_get_control() 92 CU_ASSERT(control.value <= queryctrl.maximum); in do_get_control() 97 /* This control only performs an action, does not have in do_get_control() 148 struct v4l2_control control; in test_VIDIOC_G_CTRL_NULL() local 154 memset(&control, 0xff, sizeof(control)); in test_VIDIOC_G_CTRL_NULL() 155 control.id = id; in test_VIDIOC_G_CTRL_NULL() [all …]
|
| /third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
| D | sctp_indata.c | 71 sctp_add_chk_to_control(struct sctp_queued_to_read *control, 363 struct sctp_queued_to_read *control) in sctp_place_control_in_stream() argument 369 flags = (control->sinfo_flags >> 8); in sctp_place_control_in_stream() 378 TAILQ_INSERT_TAIL(q, control, next_instrm); in sctp_place_control_in_stream() 379 control->on_strm_q = SCTP_ON_UNORDERED; in sctp_place_control_in_stream() 386 control->end_added = 1; in sctp_place_control_in_stream() 387 control->first_frag_seen = 1; in sctp_place_control_in_stream() 388 control->last_frag_seen = 1; in sctp_place_control_in_stream() 392 TAILQ_INSERT_HEAD(q, control, next_instrm); in sctp_place_control_in_stream() 394 control->on_strm_q = SCTP_ON_UNORDERED; in sctp_place_control_in_stream() [all …]
|
| /third_party/musl/porting/linux/user/src/thread/ |
| D | pthread_once.c | 3 static void undo(void *control) in undo() argument 6 * resetting control to the initial state. */ in undo() 7 if (a_swap(control, 0) == 3) in undo() 8 __wake(control, -1, 1); in undo() 11 hidden int __pthread_once_full(pthread_once_t *control, void (*init)(void)) in __pthread_once_full() argument 19 for (;;) switch (a_cas(control, 0, 1)) { in __pthread_once_full() 21 pthread_cleanup_push(undo, control); in __pthread_once_full() 25 if (a_swap(control, 2) == 3) in __pthread_once_full() 26 __wake(control, -1, 1); in __pthread_once_full() 30 a_cas(control, 1, 3); in __pthread_once_full() [all …]
|
| /third_party/python/Lib/encodings/ |
| D | iso8859_6.py | 65 '\x11' # 0x11 -> DEVICE CONTROL ONE 66 '\x12' # 0x12 -> DEVICE CONTROL TWO 67 '\x13' # 0x13 -> DEVICE CONTROL THREE 68 '\x14' # 0x14 -> DEVICE CONTROL FOUR 176 '\x80' # 0x80 -> <control> 177 '\x81' # 0x81 -> <control> 178 '\x82' # 0x82 -> <control> 179 '\x83' # 0x83 -> <control> 180 '\x84' # 0x84 -> <control> 181 '\x85' # 0x85 -> <control> [all …]
|
| D | iso8859_8.py | 65 '\x11' # 0x11 -> DEVICE CONTROL ONE 66 '\x12' # 0x12 -> DEVICE CONTROL TWO 67 '\x13' # 0x13 -> DEVICE CONTROL THREE 68 '\x14' # 0x14 -> DEVICE CONTROL FOUR 176 '\x80' # 0x80 -> <control> 177 '\x81' # 0x81 -> <control> 178 '\x82' # 0x82 -> <control> 179 '\x83' # 0x83 -> <control> 180 '\x84' # 0x84 -> <control> 181 '\x85' # 0x85 -> <control> [all …]
|
| D | tis_620.py | 65 '\x11' # 0x11 -> DEVICE CONTROL ONE 66 '\x12' # 0x12 -> DEVICE CONTROL TWO 67 '\x13' # 0x13 -> DEVICE CONTROL THREE 68 '\x14' # 0x14 -> DEVICE CONTROL FOUR 176 '\x80' # 0x80 -> <control> 177 '\x81' # 0x81 -> <control> 178 '\x82' # 0x82 -> <control> 179 '\x83' # 0x83 -> <control> 180 '\x84' # 0x84 -> <control> 181 '\x85' # 0x85 -> <control> [all …]
|
| /third_party/node/deps/v8/src/compiler/ |
| D | js-type-hint-lowering.h | 39 // Flags that control the mode of operation. 52 // value, effect and control can be obtained by the {value}, {effect} and 53 // {control} methods. 56 // should connect {effect} and {control} nodes to the end. 64 Node* control() const { return control_; } in control() function 73 Node* control) { in SideEffectFree() argument 75 DCHECK_NOT_NULL(control); in SideEffectFree() 78 control); in SideEffectFree() 86 static LoweringResult Exit(Node* control) { in Exit() argument 88 control); in Exit() [all …]
|