Home
last modified time | relevance | path

Searched refs:Textf (Results 1 – 6 of 6) sorted by relevance

/build/soong/cc/
Dcflag_artifacts.go72 rule.Command().Textf("rm -f %s", filepath.String())
76 Textf("echo '# Modules using %s'", flag).
80 Textf("echo '# Modules not using %s'", flag).
97 Textf("for m in %s; do echo $m",
106 rule.Command().Textf("rm -f %s", filepath.String())
/build/soong/java/
Drobolectric.go209 Textf(`echo "android_merged_manifest=%s" >>`, manifest.String()).Output(outputFile).Text("&&").
210 Textf(`echo "android_resource_apk=%s" >>`, resourceApk.String()).Output(outputFile).
226 rule.Command().Textf("mkdir -p $(dirname %s)", configFile.String())
229 Textf(`echo "android_merged_manifest=%s-AndroidManifest.xml" &&`, ctx.ModuleName()).
230 Textf(`echo "android_resource_apk=%s.apk"`, ctx.ModuleName()).
Dapp.go1399 Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
1404 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1426 Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
1431 Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
1990 Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
1991 Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
1992Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs,…
Dlint.go264 Textf(`echo " <uses-sdk android:minSdkVersion='%s' android:targetSdkVersion='%s'/>" &&`,
Ddexpreopt_bootjars.go455 cmd.Textf(`|| ( echo %s ; false )`, proptools.ShellEscape(failureMessage))
/build/soong/android/
Drule_builder.go542 func (c *RuleBuilderCommand) Textf(format string, a ...interface{}) *RuleBuilderCommand { func