Home
last modified time | relevance | path

Searched full:control (Results 1 – 25 of 5746) sorted by relevance

12345678910>>...230

/third_party/python/Lib/idlelib/
Dconfig-keys.def11 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/
Dmixer_controls.c33 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 …]
Dmixer_widget.c200 _("Left Move to the previous control"), in show_help()
201 _("Right Move to the next control"), in show_help()
240 static struct control *get_focus_control(unsigned int type) in get_focus_control()
251 static void change_enum_to_percent(struct control *control, int value) in change_enum_to_percent() argument
259 i = ffs(control->enum_channel_bits) - 1; in change_enum_to_percent()
260 err = snd_mixer_selem_get_enum_item(control->elem, i, &index); in change_enum_to_percent()
267 items = snd_mixer_selem_get_enum_items(control->elem); in change_enum_to_percent()
275 if (control->enum_channel_bits & (1 << i)) in change_enum_to_percent()
276 snd_mixer_selem_set_enum_item(control->elem, i, new_index); in change_enum_to_percent()
279 static void change_enum_relative(struct control *control, int delta) in change_enum_relative() argument
[all …]
Dmixer_display.c245 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/
Dtestoutput12 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_no_buildgn/vulkan/subgroups/
DvktSubgroupUniformControlFlowTests.cpp141 // 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/vk-gl-cts/external/vulkancts/modules/vulkan/subgroups/
DvktSubgroupUniformControlFlowTests.cpp139 // that support the subgroup size control extension and variants for those in checkSupport()
149 TCU_THROW(NotSupportedError, "Implementation does not support subgroup size control"); in checkSupport()
156 …TCU_THROW(NotSupportedError, "These tests are not enabled for subgroup size control implementation… in checkSupport()
240 bool control = controls[c]; in createSubgroupUniformControlFlowTests() local
242 const char* subdir = (control ? large_control_dir : large_dir); in createSubgroupUniformControlFlowTests()
245 group.add("subgroup_reconverge00", small, control, stage); in createSubgroupUniformControlFlowTests()
247 group.add("subgroup_reconverge01", small, control, stage); in createSubgroupUniformControlFlowTests()
249 group.add("subgroup_reconverge02", small, control, stage); in createSubgroupUniformControlFlowTests()
251 group.add("subgroup_reconverge03", small, control, stage); in createSubgroupUniformControlFlowTests()
253 group.add("subgroup_reconverge04", small, control, stage); in createSubgroupUniformControlFlowTests()
[all …]
/third_party/typescript/tests/baselines/reference/
Dinheritance1.types2 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 …]
DinterfaceExtendsClass1.symbols2 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 …]
Dinheritance1.errors.txt2 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 …]
/third_party/alsa-utils/bat/tests/asound_state/
Dasound.state.Broadwell2 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 …]
Dasound.state.Skylake2 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 …]
Dasound.state.Haswell2 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/
DVIA 8237--Analog Devices AD18881 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 …]
DVIA 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 …]
DATI IXP--Realtek ALC655 rev 01 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 …]
DEnsoniq AudioPCI--Cirrus Logic CS4297A rev 31 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 …]
DIntel 82801CA-ICH3--Analog Devices AD1881A1 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/
Dtest_VIDIOC_CTRL.c39 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/python/Lib/encodings/
Diso8859_8.py65 '\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 …]
Diso8859_6.py65 '\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 …]
Dcp875.py52 '\x9c' # 0x04 -> CONTROL
54 '\x86' # 0x06 -> CONTROL
56 '\x97' # 0x08 -> CONTROL
57 '\x8d' # 0x09 -> CONTROL
58 '\x8e' # 0x0A -> CONTROL
65 '\x11' # 0x11 -> DEVICE CONTROL ONE
66 '\x12' # 0x12 -> DEVICE CONTROL TWO
67 '\x13' # 0x13 -> DEVICE CONTROL THREE
68 '\x9d' # 0x14 -> CONTROL
69 '\x85' # 0x15 -> CONTROL
[all …]
/third_party/musl/src/thread/
Dpthread_once.c3 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/musl/porting/linux/user/src/thread/
Dpthread_once.c3 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/node/deps/v8/src/compiler/
Djs-type-hint-lowering.h39 // 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 …]

12345678910>>...230