/build/blueprint/optional/ |
D | optional.go | 34 func (o *ShallowOptional[T]) IsPresent() bool { 35 return o.inner != nil 39 func (o *ShallowOptional[T]) IsEmpty() bool { 40 return o.inner == nil 44 func (o *ShallowOptional[T]) Get() T { 45 if o.inner == nil { 48 return *o.inner 53 func (o *ShallowOptional[T]) GetOrDefault(other T) T { 54 if o.inner == nil { 57 return *o.inner
|
/build/soong/android/ |
D | override_module.go | 76 func (o *OverrideModuleBase) setModuleDir(d string) { 77 o.moduleDir = d 80 func (o *OverrideModuleBase) ModuleDir() string { 81 return o.moduleDir 84 func (o *OverrideModuleBase) getOverridingProperties() []interface{} { 85 return o.overridingProperties 88 func (o *OverrideModuleBase) setOverridingProperties(properties []interface{}) { 89 o.overridingProperties = properties 92 func (o *OverrideModuleBase) getOverrideModuleProperties() *OverrideModuleProperties { 93 return &o.moduleProperties [all …]
|
D | depset_generic.go | 32 func (o DepSetOrder) String() string { 33 switch o { 41 panic(fmt.Errorf("Invalid DepSetOrder %d", o))
|
/build/make/tools/droiddoc/templates-pdk/assets/ |
D | jquery-resizable.min.js | 12 …o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=… 19 …o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidde… field 29 …o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK… argument 40 …o=0;o=/sw|ne|nw|se|n|s/.test(m)?n.outerHeight():n.outerWidth();var l=["padding",/ne|nw|n/.test(m)?… argument
|
D | android-developer-resource-browser.js | 177 itemFormatter = itemFormatter || function(o){ return o; }; 224 function makeArray(o) { argument 225 if (!o) 228 if (typeof o === 'object' && 'splice' in o) { 229 return o; 231 return [o];
|
/build/make/tools/ |
D | extract_kernel.py | 120 o, _ = sp.communicate(input=input_bytes[idx:]) 127 return o 133 o, _ = sp.communicate(input=input_bytes) 135 return o 154 o = func(input_bytes) 155 if o: 156 return o 160 o = decompress_dump(func, decompressed) 161 if o: 162 return o [all …]
|
D | merge-event-log-tags.py | 56 for o, a in opts: 57 if o == "-h": 60 elif o == "-o": 62 elif o == "-m": 65 print("unhandled option %s" % (o,), file=sys.stderr)
|
D | java-event-log-tags.py | 44 for o, a in opts: 45 if o == "-h": 48 elif o == "-o": 51 print("unhandled option %s" % (o,), file=sys.stderr)
|
/build/bazel/scripts/ |
D | elf_compare.sh | 108 for o in "${missing[@]}"; do 109 printf " %s\n" "${ref_objects[$o]}" 115 for o in "${extra[@]}"; do 116 printf " %s\n" "${our_objects[$o]}" 125 for o in "${common[@]}"; do echo "${ref_objects[$o]} ${our_objects[$o]}"; done |\
|
/build/make/tools/releasetools/ |
D | sign_apex.py | 84 def option_handler(o, a): argument 85 if o == '--avbtool': 87 elif o == '--container_key': 93 elif o == '--payload_key': 95 elif o == '--payload_extra_args': 97 elif o == '--codename_to_api_level_map': 104 elif o in ("-e", "--extra_apks"): 111 elif o == '--sign_tool': 113 elif o == '--container_pw':
|
D | find_shareduid_violation.py | 129 def option_handler(o, a): argument 130 if o == "--product_out": 132 elif o == "--aapt": 134 elif o == "--copy_out_system": 136 elif o == "--copy_out_vendor": 138 elif o == "--copy_out_product": 140 elif o == "--copy_out_system_ext":
|
D | ota_from_target_files.py | 1196 def option_handler(o, a): argument 1197 if o in ("-i", "--incremental_from"): 1199 elif o == "--full_radio": 1201 elif o == "--full_bootloader": 1203 elif o == "--wipe_user_data": 1205 elif o == "--downgrade": 1208 elif o == "--override_timestamp": 1210 elif o in ("-o", "--oem_settings"): 1212 elif o == "--oem_no_mount": 1214 elif o in ("-e", "--extra_script"): [all …]
|
D | sign_target_files_apks.py | 1448 def option_handler(o, a): argument 1449 if o in ("-e", "--extra_apks"): 1454 elif o == "--extra_apex_payload_key": 1458 elif o == "--skip_apks_with_path_prefix": 1464 elif o in ("-d", "--default_key_mappings"): 1466 elif o in ("-k", "--key_mapping"): 1468 elif o in ("-o", "--replace_ota_keys"): 1470 elif o in ("-t", "--tag_changes"): 1478 elif o == "--replace_verity_public_key": 1481 elif o == "--replace_verity_private_key": [all …]
|
D | payload_signer.py | 40 def ParseOptions(o, a): argument 41 if o in ("-k", "--package_key"): 43 elif o == "--payload_signer": 45 elif o == "--payload_signer_args": 47 elif o == "--payload_signer_maximum_signature_size": 49 elif o == "--payload_signer_key_size":
|
/build/make/tools/releasetools/merge/ |
D | merge_target_files.py | 528 def option_handler(o, a): argument 529 if o == '--system-target-files': 533 elif o == '--framework-target-files': 535 elif o == '--system-item-list': 539 elif o == '--framework-item-list': 541 elif o == '--system-misc-info-keys': 545 elif o == '--framework-misc-info-keys': 547 elif o == '--other-target-files': 551 elif o == '--vendor-target-files': 553 elif o == '--other-item-list': [all …]
|
D | merge_builds.py | 162 def option_handler(o, a): argument 163 if o == "--framework_images": 165 elif o == "--product_out_framework": 167 elif o == "--product_out_vendor": 169 elif o == "--build_vbmeta": 171 elif o == "--framework_misc_info_keys": 173 elif o == "--avb_resolve_rollback_index_location_conflict":
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | Str.java | 57 public boolean equals(Object o) { in equals() argument 58 if (!(o instanceof Str)) { in equals() 61 final Str that = (Str)o; in equals()
|
/build/make/core/ |
D | aapt2.mk | 29 $(eval o := $(call aapt2-compiled-resource-out-file,$(r),$(my_compiled_res_base_dir)))\ 30 $(eval $(call aapt2-compile-one-resource-file-rule,$(r),$(o)))\ 31 $(o)) 35 $(eval o := $(call aapt2-compiled-resource-out-file,$(r),$(my_compiled_res_base_dir)))\ 36 $(eval $(call aapt2-compile-one-resource-file-rule,$(r),$(o)))\ 37 $(o))
|
/build/soong/ui/status/ |
D | status.go | 266 for _, o := range s.outputs { 267 o.Flush() 292 for _, o := range s.outputs { 293 o.StartAction(action, s.counts) 304 for _, o := range s.outputs { 305 o.FinishAction(result, s.counts) 313 for _, o := range s.outputs { 314 o.Message(level, msg)
|
/build/make/tools/compliance/cmd/checkshare/ |
D | checkshare_test.go | 43 func (o *outcome) String() string { 44 return fmt.Sprintf("%s %s and must share from %s", o.target, o.privacyCondition, o.shareCondition) 51 for _, o := range ol { 52 result = result + o.String() + "\n"
|
/build/soong/bin/ |
D | soongdbg | 276 text = json.dumps(module, default=lambda o: o.__dict__) 281 o = json.loads(proc.stdout) 282 if type(o) == list: 283 for row in o: 286 elif type(o) == dict: 289 if o: 290 result.append(str(o).strip()) 360 json.dump([m for m in modules], sys.stdout, indent=4, default=lambda o: o.__dict__) 363 json.dump(m, sys.stdout, indent=4, default=lambda o: o.__dict__)
|
/build/soong/tradefed/ |
D | autogen.go | 73 func (o Option) Config() string { 74 if o.Key != "" { 75 return fmt.Sprintf(`<option name="%s" key="%s" value="%s" />`, o.Name, o.Key, o.Value) 77 return fmt.Sprintf(`<option name="%s" value="%s" />`, o.Name, o.Value)
|
/build/bazel/rules/cc/ |
D | yasm_test.bzl | 34 "-o", 38 action.argv[-2].endswith(paths.replace_extension(src, ".o")), 39 "-o argument is expected to end with the src file as a .o",
|
/build/bazel/ci/ |
D | rbc_regression_test.sh | 41 while getopts "qr" o; do 42 case "${o}" in
|
/build/soong/java/ |
D | aapt2.go | 65 Command: `${config.Aapt2Cmd} compile -o $outDir $cFlags $in`, 139 `${config.Aapt2Cmd} compile -o $out $cFlags --dir $resZipDir`, 170 `${config.Aapt2Cmd} link -o $out $flags --proguard $proguardOptions ` + 184 Command: `${config.ExtractJarPackagesCmd} -i $in -o $out --prefix '--extra-packages '`, 283 …args["postamble"] = `&& ${config.SoongZipCmd} -write_if_changed -jar -o $aapt2GenJar -C $aapt2GenD… 313 `--output-format $format $in -o $out`,
|