/build/soong/ui/build/ |
D | build.go | 134 func help(ctx Context, config Config, what int) { 142 func Build(ctx Context, config Config, what int) { 171 what = what & (BuildSoong | BuildNinja) 175 help(ctx, config, what) 178 clean(ctx, config, what) 206 if what&BuildProductConfig != 0 { 213 installClean(ctx, config, what) 218 dataClean(ctx, config, what) 223 if what&BuildSoong != 0 { 228 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 217 func CheckAvailableForApex(what string, apex_available []string) bool { 221 return what == AvailableToPlatform 223 return InList(what, apex_available) || 224 (what != AvailableToPlatform && InList(AvailableToAnyApex, apex_available)) 227 func (m *ApexModuleBase) AvailableFor(what string) bool { 228 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 | 367 def CreateImage(input_dir, info_dict, what, output_file, block_list=None): 368 logger.info("creating %s.img...", what) 370 image_props = build_image.ImagePropFromGlobalDict(info_dict, what) 373 if what == "system": 376 fs_config_prefix = what + "_" 392 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what) 398 os.path.join(input_dir, what.upper()), image_props, output_file.name) 412 image_size_key = what + "_image_size" 417 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip())) 419 info_dict.update(build_image.GlobalDictFromImageProp(image_props, what))
|
D | add_img_to_target_files.py | 367 def CreateImage(input_dir, info_dict, what, output_file, block_list=None): argument 368 logger.info("creating %s.img...", what) 370 image_props = build_image.ImagePropFromGlobalDict(info_dict, what) 373 if what == "system": 376 fs_config_prefix = what + "_" 392 uuid_seed = what + "-" + build_info.GetPartitionFingerprint(what) 398 os.path.join(input_dir, what.upper()), image_props, output_file.name) 412 image_size_key = what + "_image_size" 417 what in shlex.split(info_dict.get("dynamic_partition_list", "").strip())) 419 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 | 2789 func (c *Module) AvailableFor(what string) bool { 2793 return c.ApexModuleBase.AvailableFor(what) || linker.availableFor(what) 2795 return c.ApexModuleBase.AvailableFor(what)
|
D | library.go | 1344 func (library *libraryDecorator) availableFor(what string) bool { 1354 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 | 233 on a `.PHONY` target, it can get quite expensive for what should be a tiny 242 obvious when reading makefiles what is happening, and will help the build 495 root of the source tree, so this can just be replaced with '.' (which is what
|
/build/make/tools/acp/ |
D | README | 37 to work when what is actually meant is "cp foo.exe bar.exe". Unlike the
|
/build/make/tools/droiddoc/templates-ndk/ |
D | sampleindex.cs | 73 # <p>Decide what to do with this ...</p>
|
/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 | 412 $(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 | 1087 `You have tried to change the API from what has been previously approved.\n\n`+ 1155 `You have tried to change the API from what has been previously released in\n` + 1753 `You have tried to change the API from what has been previously approved.\n\n`+
|
D | java.go | 673 func (j *Module) AvailableFor(what string) bool { 674 if what == android.AvailableToPlatform && Bool(j.deviceProperties.Hostdex) { 680 return j.ApexModuleBase.AvailableFor(what)
|
/build/soong/docs/ |
D | perf.md | 104 Kati prints out what triggered the slow path to be taken -- this can be a
|