Home
last modified time | relevance | path

Searched full:controls (Results 1 – 25 of 4260) sorted by relevance

12345678910>>...171

/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_EXT_CTRLS.c31 struct v4l2_ext_controls controls; in test_VIDIOC_G_EXT_CTRLS_zero() local
34 memset(&controls, 0xff, sizeof(controls)); in test_VIDIOC_G_EXT_CTRLS_zero()
35 controls.ctrl_class = V4L2_CTRL_CLASS_USER; in test_VIDIOC_G_EXT_CTRLS_zero()
36 controls.count = 0; in test_VIDIOC_G_EXT_CTRLS_zero()
37 controls.controls = NULL; in test_VIDIOC_G_EXT_CTRLS_zero()
39 ret_get = ioctl(get_video_fd(), VIDIOC_G_EXT_CTRLS, &controls); in test_VIDIOC_G_EXT_CTRLS_zero()
48 CU_ASSERT_EQUAL(controls.ctrl_class, V4L2_CTRL_CLASS_USER); in test_VIDIOC_G_EXT_CTRLS_zero()
49 CU_ASSERT_EQUAL(controls.count, 0); in test_VIDIOC_G_EXT_CTRLS_zero()
50 // The value of controls.error_idx is not defined when ret_get == 0 in test_VIDIOC_G_EXT_CTRLS_zero()
51 CU_ASSERT_EQUAL(controls.reserved[0], 0); in test_VIDIOC_G_EXT_CTRLS_zero()
[all …]
/external/strace/xlat/
Dv4l2_control_classes.in2 V4L2_CTRL_CLASS_USER 0x00980000 /* Old-style 'user' controls */
3 V4L2_CTRL_CLASS_MPEG 0x00990000 /* MPEG-compression controls */
4 V4L2_CTRL_CLASS_CAMERA 0x009a0000 /* Camera class controls */
5 V4L2_CTRL_CLASS_FM_TX 0x009b0000 /* FM Modulator controls */
6 V4L2_CTRL_CLASS_FLASH 0x009c0000 /* Camera flash controls */
7 V4L2_CTRL_CLASS_JPEG 0x009d0000 /* JPEG-compression controls */
8 V4L2_CTRL_CLASS_IMAGE_SOURCE 0x009e0000 /* Image source controls */
9 V4L2_CTRL_CLASS_IMAGE_PROC 0x009f0000 /* Image processing controls */
10 V4L2_CTRL_CLASS_DV 0x00a00000 /* Digital Video controls */
11 V4L2_CTRL_CLASS_FM_RX 0x00a10000 /* FM Receiver controls */
[all …]
/external/libxkbcommon/test/data/compat/
Daccessx3 action= LockControls(controls=AccessXKeys);
10 action= LockControls(controls=AccessXKeys);
14 action= LockControls(controls=AccessXFeedback);
18 action= LockControls(controls=RepeatKeys);
22 action= LockControls(controls=SlowKeys);
26 action= LockControls(controls=BounceKeys);
30 action= LockControls(controls=StickyKeys);
34 action= LockControls(controls=MouseKeys);
38 action= LockControls(controls=MouseKeysAccel);
42 action= LockControls(controls=Overlay1);
[all …]
/external/angle/third_party/glslang/src/gtests/
DTestFixture.h184 // the target under the semantics conveyed via |controls|. Returns true
187 const std::string& entryPointName, EShMessages controls,
195 if ((controls & EShMsgDebugInfo) && shaderName != nullptr) {
204 defaultVersion, isForwardCompatible, controls);
208 // |stage| into the target under the semantics specified via |controls|.
214 const std::string& entryPointName, EShMessages controls,
236 if (controls & EShMsgSpvRules) {
237 if (controls & EShMsgVulkanRules) {
238 shader.setEnvInput((controls & EShMsgReadHlsl) ? glslang::EShSourceHlsl
244 shader.setEnvInput((controls & EShMsgReadHlsl) ? glslang::EShSourceHlsl
[all …]
/external/deqp-deps/glslang/gtests/
DTestFixture.h184 // the target under the semantics conveyed via |controls|. Returns true
187 const std::string& entryPointName, EShMessages controls,
195 if ((controls & EShMsgDebugInfo) && shaderName != nullptr) {
204 defaultVersion, isForwardCompatible, controls);
208 // |stage| into the target under the semantics specified via |controls|.
214 const std::string& entryPointName, EShMessages controls,
236 if (controls & EShMsgSpvRules) {
237 if (controls & EShMsgVulkanRules) {
238 shader.setEnvInput((controls & EShMsgReadHlsl) ? glslang::EShSourceHlsl
244 shader.setEnvInput((controls & EShMsgReadHlsl) ? glslang::EShSourceHlsl
[all …]
/external/libchrome/base/task_scheduler/
Dscheduler_worker_unittest.cc374 class Controls : public RefCountedThreadSafe<Controls> { class in base::internal::__anone6cd75be0211::ControllableCleanupDelegate
376 Controls() = default;
406 friend class RefCountedThreadSafe<Controls>;
407 ~Controls() = default;
420 DISALLOW_COPY_AND_ASSIGN(Controls);
424 : task_tracker_(task_tracker), controls_(new Controls()) {} in ControllableCleanupDelegate()
484 scoped_refptr<Controls> controls() { return controls_; } in controls() function in base::internal::__anone6cd75be0211::ControllableCleanupDelegate
489 scoped_refptr<Controls> controls_;
516 scoped_refptr<ControllableCleanupDelegate::Controls> controls = in TEST() local
517 delegate->controls(); in TEST()
[all …]
/external/tinyalsa_new/tests/src/
Dmixer_test.cc147 MixerControlsTest() : number_of_controls(0), controls(nullptr) {} in MixerControlsTest()
156 controls = std::make_unique<const mixer_ctl *[]>(number_of_controls); in SetUp()
157 ASSERT_NE(controls, nullptr); in SetUp()
160 controls[i] = mixer_get_ctl_const(mixer_object, i); in SetUp()
161 EXPECT_EQ(mixer_ctl_get_id(controls[i]), i); in SetUp()
162 EXPECT_STRNE(mixer_ctl_get_name(controls[i]), ""); in SetUp()
163 EXPECT_NE(controls[i], nullptr); in SetUp()
168 controls = nullptr; in TearDown()
173 std::unique_ptr<const mixer_ctl *[]> controls; member in tinyalsa::testing::MixerControlsTest
178 const char *name = mixer_ctl_get_name(controls[i]); in TEST_P()
[all …]
/external/cronet/base/task/thread_pool/
Dworker_thread_waitable_event_unittest.cc407 class Controls : public RefCountedThreadSafe<Controls> { class in base::internal::__anon1cd693180211::ControllableCleanupDelegate
409 Controls() = default;
410 Controls(const Controls&) = delete;
411 Controls& operator=(const Controls&) = delete;
441 friend class RefCountedThreadSafe<Controls>;
442 ~Controls() = default;
457 : task_tracker_(task_tracker), controls_(new Controls()) {} in ControllableCleanupDelegate()
527 scoped_refptr<Controls> controls() { return controls_; } in controls() function in base::internal::__anon1cd693180211::ControllableCleanupDelegate
532 scoped_refptr<Controls> controls_;
562 scoped_refptr<ControllableCleanupDelegate::Controls> controls = in TEST() local
[all …]
/external/easymock/src/org/easymock/
DEasyMockSupport.java27 /** List of all controls created */
28 protected final List<IMocksControl> controls = new ArrayList<IMocksControl>( field in EasyMockSupport
144 controls.add(ctrl); in createStrictControl()
155 controls.add(ctrl); in createControl()
168 controls.add(ctrl); in createNiceControl()
173 * Switches all registered mock objects (more exactly: the controls of the
178 for (IMocksControl c : controls) { in replayAll()
184 * Resets all registered mock objects (more exactly: the controls of the
188 for (IMocksControl c : controls) { in resetAll()
194 * Verifies all registered mock objects (more exactly: the controls of the
[all …]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/doc/spec/
Dr10386.htm85 …_EXT_CTRLS, VIDIOC_TRY_EXT_CTRLS&nbsp;--&nbsp;Get or set the value of several controls, try control
171 controls atomically. Control IDs are grouped into control classes (see
175 >) and all controls in the control array
189 >controls</CODE
195 HREF="r10386.htm#V4L2-EXT-CONTROLS"
204 >controls</CODE
207 >To get the current value of a set of controls applications
221 >To change the value of a set of controls applications
236 > ioctl. The controls
246 >To check if the a set of controls have correct values
[all …]
/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2beta/src/main/java/com/google/cloud/retail/v2beta/
DListControlsResponse.java79 * All the Controls for a given catalog.
82 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
92 * All the Controls for a given catalog.
95 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
106 * All the Controls for a given catalog.
109 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
119 * All the Controls for a given catalog.
122 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
132 * All the Controls for a given catalog.
135 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
[all …]
DListControlsResponseOrBuilder.java30 * All the Controls for a given catalog.
33 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
40 * All the Controls for a given catalog.
43 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
50 * All the Controls for a given catalog.
53 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
60 * All the Controls for a given catalog.
63 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
71 * All the Controls for a given catalog.
74 * <code>repeated .google.cloud.retail.v2beta.Control controls = 1;</code>
/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2/src/main/java/com/google/cloud/retail/v2/
DListControlsResponse.java79 * All the Controls for a given catalog.
82 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
92 * All the Controls for a given catalog.
95 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
106 * All the Controls for a given catalog.
109 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
119 * All the Controls for a given catalog.
122 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
132 * All the Controls for a given catalog.
135 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
[all …]
DListControlsResponseOrBuilder.java30 * All the Controls for a given catalog.
33 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
40 * All the Controls for a given catalog.
43 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
50 * All the Controls for a given catalog.
53 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
60 * All the Controls for a given catalog.
63 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
70 * All the Controls for a given catalog.
73 * <code>repeated .google.cloud.retail.v2.Control controls = 1;</code>
/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2alpha/src/main/java/com/google/cloud/retail/v2alpha/
DListControlsResponse.java79 * All the Controls for a given catalog.
82 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
92 * All the Controls for a given catalog.
95 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
106 * All the Controls for a given catalog.
109 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
119 * All the Controls for a given catalog.
122 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
132 * All the Controls for a given catalog.
135 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
[all …]
DListControlsResponseOrBuilder.java30 * All the Controls for a given catalog.
33 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
40 * All the Controls for a given catalog.
43 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
50 * All the Controls for a given catalog.
53 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
60 * All the Controls for a given catalog.
63 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
71 * All the Controls for a given catalog.
74 * <code>repeated .google.cloud.retail.v2alpha.Control controls = 1;</code>
/external/tinyalsa_new/utils/
Dtinymix.14 tinymix \- view and edit mixer controls for a specified mixer.
11 \fBtinymix\fR can be used to view and/or edit a list of mixer controls for a specified mixer.
40 Prints the contents of all mixer controls.
43 \fBcontrols\fR
44 Prints the names and IDs of all mixer controls.
49 \fBtinymix controls\fR
53 \fBtinymix -D 1 controls\fR
/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/
Dassuredworkloads.v1.json362 …"description": "Optional. Compliance controls that should be applied to the resources managed by t…
379 "FedRAMP High data protection controls",
380 "FedRAMP Moderate data protection controls",
381 "Assured Workloads For US Regions data protection controls",
382 "Health Insurance Portability and Accountability Act controls",
383 "Health Information Trust Alliance controls",
384 "Assured Workloads For EU Regions and Support controls",
385 "Assured Workloads For Canada Regions and Support controls"
449 "FedRAMP High data protection controls",
450 "FedRAMP Moderate data protection controls",
[all …]
/external/google-cloud-java/java-document-ai/proto-google-cloud-document-ai-v1beta2/src/main/java/com/google/cloud/documentai/v1beta2/
DProcessDocumentRequestOrBuilder.java175 * Controls table extraction behavior. If not specified, the system will
189 * Controls table extraction behavior. If not specified, the system will
203 * Controls table extraction behavior. If not specified, the system will
217 * Controls form extraction behavior. If not specified, the system will
230 * Controls form extraction behavior. If not specified, the system will
243 * Controls form extraction behavior. If not specified, the system will
256 * Controls entity extraction behavior. If not specified, the system will
270 * Controls entity extraction behavior. If not specified, the system will
284 * Controls entity extraction behavior. If not specified, the system will
298 * Controls OCR behavior. If not specified, the system will decide reasonable
[all …]
/external/cronet/components/metrics/structured/
Dstructured_metrics_features.h22 // Controls whether event sequence logging is enabled or not.
27 // Controls whether fast pair logging is enabled or not.
30 // Controls whether nearby share logging is enabled or not.
33 // Controls whether the structured metrics service is recorder instead of the
37 // Controls whether Phone Hub Structured Metrics is enabled or not.
40 // Controls the minimum number of logs to be stored.
43 // Controls the minimum size of all logs that can be stored in bytes.
46 // Controls the maximum size of a single log in bytes.
/external/skia/demos.skia.org/demos/mesh2d/
Dindex.html18 .controls {
21 .controls-left { width: 50%; }
22 .controls-right { width: 50%; }
23 .controls-right select { width: 100%; }
49 <div class="controls">
50 <div class="controls-left">
56 <div class="controls-right">
172 this.controls = [
206 for (let i = this.controls.length - 1; i >= 0; --i) {
207 const dx = this.controls[i].pos[0] - mouse_pos[0],
[all …]
/external/autotest/metadata/utils/
Dextract_configs.py36 controls = control_files.load_all()
37 logging.info('Loaded %d control files', len(controls))
38 categorized = dict(_categorize_control_files(controls))
59 def _categorize_control_files(controls: List[control_files.Control]
62 for c in controls:
98 def _generate_category_def(controls: List[control_files.Control]) -> str:
99 controls = sorted(controls, key=lambda c: c.name)
105 } for c in controls
/external/google-cloud-java/java-document-ai/proto-google-cloud-document-ai-v1beta1/src/main/java/com/google/cloud/documentai/v1beta1/
DProcessDocumentRequestOrBuilder.java141 * Controls table extraction behavior. If not specified, the system will
155 * Controls table extraction behavior. If not specified, the system will
169 * Controls table extraction behavior. If not specified, the system will
183 * Controls form extraction behavior. If not specified, the system will
196 * Controls form extraction behavior. If not specified, the system will
209 * Controls form extraction behavior. If not specified, the system will
222 * Controls entity extraction behavior. If not specified, the system will
236 * Controls entity extraction behavior. If not specified, the system will
250 * Controls entity extraction behavior. If not specified, the system will
264 * Controls OCR behavior. If not specified, the system will decide reasonable
[all …]
/external/skia/tools/unicode_comparison/go/generate_table/
Dmain.go73 Controls Ratio member
85 Controls: Ratio{0, 1},
101 cd.Controls.Add(other.Controls)
110 Controls []Range member
126 Controls []int member
248 return r.FormattedChunks(r.Delta.Data.Missing.Controls, "control", "missing", false)
252 return r.FormattedChunks(r.Delta.Data.Extra.Controls, "control", "extra", false)
315 len(r.Delta.Data.Missing.Controls) == 0 &&
321 len(r.Delta.Data.Extra.Controls) == 0
330 len(r.Delta.Data.Missing.Controls) +
[all …]
/external/google-cloud-java/java-retail/proto-google-cloud-retail-v2beta/src/main/proto/google/cloud/retail/v2beta/
Dcontrol_service.proto48 post: "/v2beta/{parent=projects/*/locations/*/catalogs/*}/controls"
60 delete: "/v2beta/{name=projects/*/locations/*/catalogs/*/controls/*}"
73 patch: "/v2beta/{control.name=projects/*/locations/*/catalogs/*/controls/*}"
82 get: "/v2beta/{name=projects/*/locations/*/catalogs/*/controls/*}"
87 // Lists all Controls by their parent
91 get: "/v2beta/{parent=projects/*/locations/*/catalogs/*}/controls"
135 // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}`
145 // `projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}/controls/{control_id}`
173 // * List controls that are used in a single ServingConfig:
180 // All the Controls for a given catalog.
[all …]

12345678910>>...171