Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 45) sorted by relevance

12

/development/tools/otagui/src/components/
DBaseSelect.vue9 <option
10 v-for="option in options"
11 :key="option"
12 :value="option"
13 :selected="option === modelValue"
15 {{ option }}
16 </option>
DFileSelect.vue12 <option
13 v-for="option in options"
14 :key="option.file_name"
15 :value="option.path"
16 :selected="option.path === modelValue"
18 {{ option.file_name }}
19 </option>
111 .dropdown-select > option {
DBaseRadioGroup.vue3 v-for="option in options"
4 :key="option.value"
5 :label="option.label"
6 :value="option.value"
DFileList.vue9 <option
15 </option>
/development/tools/winscope/src/viewers/components/
Duser_options_component.ts57 getUserOptionButtonColor(option: UserOption) {
58 return option.enabled ? 'primary' : undefined;
61 onUserOptionChange(option: UserOption) {
62 option.enabled = !option.enabled;
64 option.name,
65 option.enabled,
Duser_options_component_test.ts90 let option = assertDefined(htmlElement.querySelector('.user-option')); variable
91 expect((option as HTMLButtonElement).disabled).toBeFalse();
95 option = assertDefined(htmlElement.querySelector('.user-option'));
96 expect((option as HTMLInputElement).disabled).toBeTrue();
105 const option = assertDefined( constant
108 option.click();
Dselect_with_filter_component_test.ts167 options.forEach((option, index) => {
168 expect(option.textContent).toContain(`${index}`);
170 expect((option as HTMLElement).className).toContain('hidden-option');
172 expect((option as HTMLElement).className).not.toContain(
/development/tools/ota_analysis/src/services/
Decharts_data.js40 let /** Object */ option = new Object()
41 option.title = {
45 option.tooltip = {
49 option.legend = {
55 option.series = [
73 return option
/development/tools/checkcolor/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/tools/winscope/src/logging/
Danalytics.ts80 option: string,
85 option,
92 option: string,
97 option,
104 option: string,
109 option,
/development/samples/training/testingfun/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/samples/devbytes/telephony/SmsSampleProject/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/samples/NsdManagerSample/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/apps/ShareTest/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/samples/PictureInPicture/ComposePip/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/development/vndk/tools/header-checker/src/utils/
Dcommand_line_utils.cpp27 static bool IsOptionInCategory(const llvm::cl::Option &option, in IsOptionInCategory() argument
30 option.Categories; in IsOptionInCategory()
/development/tools/findunused/
Dfindunusedstrings7 -p option prints out unused strings, otherwise a total count is printed
8 …folder option causes only that app folder to be scanned, default is to scan all folders onder apps/
Dfindunusedresources9 -p option prints out unused resources, otherwise a total count is printed
10 …folder option causes only that app folder to be scanned, default is to scan all folders onder apps/
/development/tools/winscope/src/test/e2e/
Dutils.ts208 for (const option of options) { constant
209 const isEnabled = !(await option.getAttribute('class')).includes(
213 await option.click();
215 await option.click();
296 if (options.some((option) => optionText === option)) {
/development/tools/winscope/protos/protolog/udc/
Dprotolog.proto21 option java_multiple_files = true;
27 option (.android.msg_privacy).dest = DEST_LOCAL;
50 option (.android.msg_privacy).dest = DEST_LOCAL;
/development/samples/browseable/Flashlight/
D_index.jd9 a party-mode option (swipe left), if you want to make things interesting.
/development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
DCamera2BasicFragment.java393 for (Size option : choices) { in chooseOptimalSize()
394 if (option.getWidth() <= maxWidth && option.getHeight() <= maxHeight && in chooseOptimalSize()
395 option.getHeight() == option.getWidth() * h / w) { in chooseOptimalSize()
396 if (option.getWidth() >= textureViewWidth && in chooseOptimalSize()
397 option.getHeight() >= textureViewHeight) { in chooseOptimalSize()
398 bigEnough.add(option); in chooseOptimalSize()
400 notBigEnough.add(option); in chooseOptimalSize()
/development/samples/browseable/RuntimePermissions/
D_index.jd10 If executed on an Android M device, an additional option to access contacts is shown
/development/samples/browseable/Geofencing/
D_index.jd10 … wearable with an option to check in. This notification automatically disappears when he/she leaves
/development/tools/ota_analysis/src/components/
DPieChart.vue4 :option="getEchartsOption"

12