/build/soong/ui/build/ |
D | build.go | 133 func help(ctx Context, config Config, what int) { 141 func Build(ctx Context, config Config, what int) { 170 what = what & (BuildSoong | BuildNinja) 174 help(ctx, config, what) 177 clean(ctx, config, what) 205 if what&BuildProductConfig != 0 { 212 installClean(ctx, config, what) 217 dataClean(ctx, config, what) 222 if what&BuildSoong != 0 { 227 if what&BuildKati != 0 { [all …]
|
D | cleanbuild.go | 48 func clean(ctx Context, config Config, what int) { 53 func dataClean(ctx Context, config Config, what int) { 64 func installClean(ctx Context, config Config, what int) { 65 dataClean(ctx, config, what)
|
/build/soong/python/tests/testpkg/ |
D | pycmd_test.py | 22 def assert_equal(what, a, b): argument 25 print("Expected %s('%s') == '%s'" % (what, a, b))
|
D | par_test.py | 22 def assert_equal(what, a, b): argument 25 print("Expected %s('%s') == '%s'" % (what, a, b))
|
/build/soong/android/ |
D | apex.go | 103 AvailableFor(what string) bool 218 func CheckAvailableForApex(what string, apex_available []string) bool { 222 return what == AvailableToPlatform 224 return InList(what, apex_available) || 225 (what != AvailableToPlatform && InList(AvailableToAnyApex, apex_available)) 228 func (m *ApexModuleBase) AvailableFor(what string) bool { 229 return CheckAvailableForApex(what, m.ApexProperties.Apex_available)
|
/build/soong/python/tests/ |
D | par_test.py | 23 def assert_equal(what, a, b): argument 26 print("Expected %s('%s') == '%s'" % (what, a, b))
|
D | py-cmd_test.py | 23 def assert_equal(what, a, b): argument 26 print("Expected %s('%s') == '%s'" % (what, a, b))
|
/build/make/tools/releasetools/ |
D | add_img_to_target_files.py | 398 def CreateImage(input_dir, info_dict, what, output_file, block_list=None): argument 399 logger.info("creating %s.img...", what) 401 image_props = build_image.ImagePropFromGlobalDict(info_dict, what) 404 if what == "system": 407 fs_config_prefix = what + "_" 423 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what) 429 os.path.join(input_dir, what.upper()), image_props, output_file.name) 443 image_size_key = what + "_image_size" 448 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip())) 450 info_dict.update(build_image.GlobalDictFromImageProp(image_props, what))
|
D | add_img_to_target_files | 398 def CreateImage(input_dir, info_dict, what, output_file, block_list=None): 399 logger.info("creating %s.img...", what) 401 image_props = build_image.ImagePropFromGlobalDict(info_dict, what) 404 if what == "system": 407 fs_config_prefix = what + "_" 423 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what) 429 os.path.join(input_dir, what.upper()), image_props, output_file.name) 443 image_size_key = what + "_image_size" 448 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip())) 450 info_dict.update(build_image.GlobalDictFromImageProp(image_props, what))
|
/build/soong/cc/ |
D | ndk_prebuilt.go | 95 func (*ndkPrebuiltObjectLinker) availableFor(what string) bool { 113 func (*ndkPrebuiltStlLinker) availableFor(what string) bool {
|
D | cc.go | 2818 func (c *Module) AvailableFor(what string) bool { 2822 return c.ApexModuleBase.AvailableFor(what) || linker.availableFor(what) 2824 return c.ApexModuleBase.AvailableFor(what)
|
D | library.go | 1355 func (library *libraryDecorator) availableFor(what string) bool { 1365 return android.CheckAvailableForApex(what, list)
|
/build/make/ |
D | Usage.txt | 6 Ways to specify what to build: 7 The common way to specify what to build is to set that information in the
|
D | buildspec.mk.default | 31 # User is what we ship. Userdebug is that, with a few flags turned on
|
D | Changes.md | 333 on a `.PHONY` target, it can get quite expensive for what should be a tiny 342 obvious when reading makefiles what is happening, and will help the build 595 root of the source tree, so this can just be replaced with '.' (which is what
|
/build/make/tools/droiddoc/templates-ndk/ |
D | sampleindex.cs | 73 # <p>Decide what to do with this ...</p>
|
/build/make/tools/acp/ |
D | README | 37 to work when what is actually meant is "cp foo.exe bar.exe". Unlike the
|
/build/make/core/ |
D | LINUX_KERNEL_COPYING | 62 want its recipients to know that what they have is not the original, so 93 Whether that is true depends on what the Program does. 242 This section is intended to make thoroughly clear what is believed to 309 <one line to give the program's name and a brief idea of what it does.> 355 library. If this is what you want to do, use the GNU Library General
|
D | config.mk | 424 $(info *** - Look at buildspec.mk.default to see what has changed)
|
/build/make/tools/droiddoc/templates-pdk/ |
D | sdkpage.cs | 87 href="<?cs var:toroot ?>sdk/ndk/overview.html">What is the NDK?</a> for more information about what
|
/build/ |
D | buildspec.mk.default | 31 # User is what we ship. Userdebug is that, with a few flags turned on
|
/build/make/tools/droiddoc/templates-ndk/assets/ |
D | GPL-LICENSE.txt | 46 want its recipients to know that what they have is not the original, so 77 Whether that is true depends on what the Program does. 226 This section is intended to make thoroughly clear what is believed to
|
/build/soong/java/ |
D | droiddoc.go | 1104 `You have tried to change the API from what has been previously approved.\n\n`+ 1172 `You have tried to change the API from what has been previously released in\n` + 1759 `You have tried to change the API from what has been previously approved.\n\n`+
|
D | java.go | 712 func (j *Module) AvailableFor(what string) bool { 713 if what == android.AvailableToPlatform && Bool(j.deviceProperties.Hostdex) { 719 return j.ApexModuleBase.AvailableFor(what)
|
/build/soong/docs/ |
D | perf.md | 139 Kati prints out what triggered the slow path to be taken -- this can be a
|