/development/tools/otagui/src/components/ |
D | BaseSelect.vue | 9 <option 10 v-for="option in options" 11 :key="option" 12 :value="option" 13 :selected="option === modelValue" 15 {{ option }} 16 </option>
|
D | FileSelect.vue | 12 <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 {
|
D | BaseRadioGroup.vue | 3 v-for="option in options" 4 :key="option.value" 5 :label="option.label" 6 :value="option.value"
|
D | FileList.vue | 9 <option 15 </option>
|
/development/tools/winscope/src/viewers/components/ |
D | user_options_component.ts | 57 getUserOptionButtonColor(option: UserOption) { 58 return option.enabled ? 'primary' : undefined; 61 onUserOptionChange(option: UserOption) { 62 option.enabled = !option.enabled; 64 option.name, 65 option.enabled,
|
D | user_options_component_test.ts | 90 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();
|
D | select_with_filter_component_test.ts | 167 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/ |
D | echarts_data.js | 40 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/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/development/tools/winscope/src/logging/ |
D | analytics.ts | 80 option: string, 85 option, 92 option: string, 97 option, 104 option: string, 109 option,
|
/development/samples/training/testingfun/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/development/samples/devbytes/telephony/SmsSampleProject/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/development/samples/NsdManagerSample/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/development/apps/ShareTest/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/development/samples/PictureInPicture/ComposePip/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/development/vndk/tools/header-checker/src/utils/ |
D | command_line_utils.cpp | 27 static bool IsOptionInCategory(const llvm::cl::Option &option, in IsOptionInCategory() argument 30 option.Categories; in IsOptionInCategory()
|
/development/tools/findunused/ |
D | findunusedstrings | 7 -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/
|
D | findunusedresources | 9 -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/ |
D | utils.ts | 208 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/ |
D | protolog.proto | 21 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.jd | 9 a party-mode option (swipe left), if you want to make things interesting.
|
/development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/ |
D | Camera2BasicFragment.java | 393 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.jd | 10 If executed on an Android M device, an additional option to access contacts is shown
|
/development/samples/browseable/Geofencing/ |
D | _index.jd | 10 … wearable with an option to check in. This notification automatically disappears when he/she leaves
|
/development/tools/ota_analysis/src/components/ |
D | PieChart.vue | 4 :option="getEchartsOption"
|