Home
last modified time | relevance | path

Searched refs:Text (Results 1 – 25 of 41) sorted by relevance

12

/build/blueprint/bootstrap/bpdoc/
Dreader_test.go69 if mt.Text != "foo docs.\n\n" {
70 t.Errorf("unexpected docs %q", mt.Text)
85 if ps.Text != "props docs.\n" {
86 t.Errorf("unexpected docs %q", ps.Text)
92 …if ps.Properties[0].Name != "a" || ps.Properties[0].Text != "A docs.\n\n" || ps.Properties[0].Defa…
94 ps.Properties[0].Name, ps.Properties[0].Text, ps.Properties[0].Default)
105 if pkg.Text != "bpdoc docs.\n" {
106 t.Errorf("unexpected docs %q", pkg.Text)
Dbpdoc.go21 Text string member
38 Text template.HTML member
48 Text string member
57 Text template.HTML member
298 s.OtherTexts = append(s.OtherTexts, child.Text)
Dproperties.go57 p.Text == other.Text && p.Default == other.Default &&
164 Text: t.Doc,
198 text = f.Doc.Text()
231 Text: formatText(text),
Dreader.go58 Text: goPkg.Doc,
80 Text: formatText(text),
/build/soong/java/
Dlint.go94 HTML, Text, XML *android.DepSet member
98 HTML, Text, XML *android.DepSetBuilder member
104 Text: android.NewDepSetBuilder(android.POSTORDER),
111 l.Text.Direct(text)
120 if depSets.Text != nil {
121 l.Text.Transitive(depSets.Text)
132 Text: l.Text.Build(),
180 resListRule.Command().Text("cp").FlagWithRspFileInputList("", l.resources).Output(resourcesList)
260 rule.Command().Text("(").
261 Text(`echo "<?xml version='1.0' encoding='utf-8'?>" &&`).
[all …]
Dhiddenapi_singleton.go197 Text("list").
288 rule.Command().Text("rm").Flag("-f").Output(outputPath)
289 rule.Command().Text("touch").Output(outputPath)
330 Text("(").
331 Text("if").
332 Text("cmp -s").Input(tempPath).Output(outputPath).Text(";").
333 Text("then").
334 Text("rm").Input(tempPath).Text(";").
335 Text("else").
336 Text("mv").Input(tempPath).Output(outputPath).Text(";").
[all …]
Ddroiddoc.go699 rule.Command().Text("rm -rf").Text(outDir.String())
700 rule.Command().Text("mkdir -p").Text(outDir.String())
894 rule.Command().Text("cp").
901 rule.Command().Text("cp").
1006 rule.Command().Text("rm -rf").Text(outDir.String()).Text(stubsDir.String())
1007 rule.Command().Text("mkdir -p").Text(outDir.String()).Text(stubsDir.String())
1074 rule.Command().Text("( true")
1098 Text("touch").Output(d.checkCurrentApiTimestamp).
1099 Text(") || (").
1100 Text("echo").Flag("-e").Flag(`"` + msg + `"`).
[all …]
Dproto.go39 rule.Command().Text("rm -rf").Flag(outDir.String())
40 rule.Command().Text("mkdir -p").Flag(outDir.String())
44 rule.Command().Text("mkdir -p").Flag(filepath.Dir(depFile.String()))
58 rule.Command().Text("rm -rf").Flag(outDir.String())
Dsdk.go570 Text("rm -f").Output(aidl)
581 Text("rm -f").Output(path)
583 Text("cat").
585 Text("| sort -u >").
610 Text("rm -f").Output(out)
614 cmd.Text("echo REL >").Output(out)
617 cmd.Text("echo PDK >").Output(out)
624 cmd.Text("cat").
626 Text("| md5sum | cut -d' ' -f1 >").
631 cmd.Text("echo").
[all …]
Dgen.go62 rule.Command().Text("rm -rf").Flag(outDir.String())
63 rule.Command().Text("mkdir -p").Flag(outDir.String())
64 rule.Command().Text("FLAGS=' " + aidlFlags + "'")
90 rule.Command().Text("rm -rf").Flag(outDir.String())
Ddexpreopt_bootjars.go376 rule.Command().Text("mkdir").Flag("-p").Flag(symbolsDir.String())
377 rule.Command().Text("rm").Flag("-f").
381 rule.Command().Text("rm").Flag("-f").
391 cmd.Text(`ANDROID_LOG_TAGS="*:e"`)
394 cmd.Text(`ANDROID_LOG_TAGS="*:v"`)
518 …rule.Command().Text("cat").Inputs(global.BootImageProfiles).Text(">").Output(combinedBootImageProf…
534 Text(`ANDROID_LOG_TAGS="*:e"`).
584 Text(`ANDROID_LOG_TAGS="*:e"`).
680 Text("echo").FlagWithArg("Output in ", output.String())
Drobolectric.go132 rule.Command().Text("rm -f").Output(outputFile)
134 Textf(`echo "android_merged_manifest=%s" >>`, manifest.String()).Output(outputFile).Text("&&").
/build/soong/dexpreopt/
Ddexpreopt.go135 Text(`ANDROID_LOG_TAGS="*:e"`).
156 cmd.Text(fmt.Sprintf(`|| echo "Profile out of date for %s"`, module.DexPath))
174 Text(`ANDROID_LOG_TAGS="*:e"`).
188 cmd.Text(fmt.Sprintf(`|| echo "Profile out of date for %s"`, module.DexPath))
299 rule.Command().Text("mkdir -p").Flag(filepath.Dir(dexPathHost.String()))
300 rule.Command().Text("cp -f").Input(module.DexPath).Output(dexPathHost)
314 Text(`class_loader_context_arg=--class-loader-context=\&`).
315 Text(`stored_class_loader_context_arg=""`)
318Text("class_loader_context_arg=--class-loader-context=PCL[" + strings.Join(classLoaderContextHost.…
320Text("stored_class_loader_context_arg=--stored-class-loader-context=PCL[" + strings.Join(classLoad…
[all …]
/build/soong/python/
Dproto.go29 rule.Command().Text("rm -rf").Flag(outDir.String())
30 rule.Command().Text("mkdir -p").Flag(outDir.String())
45 rule.Command().Text("rm -rf").Flag(outDir.String())
/build/soong/android/
Drule_builder.go162 r.Command().Text("rm").Flag("-f").Outputs(temporariesList)
532 func (c *RuleBuilderCommand) Text(text string) *RuleBuilderCommand { func
543 return c.Text(fmt.Sprintf(format, a...))
549 return c.Text(flag)
556 c.Text(*flag)
566 c.Text(flag)
575 return c.Text(flag + arg)
591 return c.Text(flag + strings.Join(list, sep))
598 return c.Text(path.String())
622 return c.Text(c.addInput(path))
[all …]
Drule_builder_test.go53 rule.Command().Text("echo success")
250 Text("FOO=foo").
251 Text("echo $FOO").
259 Text("FOO=foo").
260 Text("echo $FOO").
296 Text("Text").
300 Text("command2").
308 cmd.Text("after command2")
310 cmd.Text("old cmd")
314 Text("command3").
/build/blueprint/bootstrap/
Dwritedocs.go123 <p>{{.Text}}</p>
137 <p>{{.Text}}</p>
139 <p>{{.Text}}</p>
166 <p>{{.Text}}</p>
174 <p>{{.Text}}</p>
Dcleanup.go98 if !scanner.Scan() || scanner.Text() != expectedFirstLine {
104 line := scanner.Text()
/build/make/tools/fs_config/
Dfs_config.go52 rule.Command().Text("rm -rf").Output(path)
53 rule.Command().Text("touch").Output(path)
/build/soong/sysprop/
Dsysprop_library.go242 Text("( cmp").Flag("-s").
245 Text("|| ( echo").Flag("-e").
247 Text("; exit 38) )")
256 Text("( ").
260 Text(" || ( echo").Flag("-e").
262 Text("; exit 38) )")
267 Text("touch").
/build/soong/cc/
Dgen.go79 rule.Command().Text(sedCmd).Input(outFile)
80 rule.Command().Text(sedCmd).Input(headerFile)
90 rule.Command().Text(sedCmd).Input(locationHeader)
96 rule.Command().Text(sedCmd).Input(positionHeader)
100 cmd.Text("BISON_PKGDATADIR=prebuilts/build-tools/common/bison").
Dcflag_artifacts.go100 Text("; done")
128 Text("cat").
/build/soong/ui/tracer/
Dmicrofactory.go78 fields := strings.SplitN(s.Text(), " ", 3)
80 t.log.Verboseln("Unknown line in microfactory trace:", s.Text())
/build/soong/cmd/soong_build/
Dwritedocs.go61 Synopsis: m.Text,
365 {{- .Text}} {{range .OtherTexts}}{{.}}{{end}}
372 {{- if .Text -}}{{if ne .Text "\n"}}, {{end}}{{.Text}}{{- end -}}
/build/soong/dexpreopt/dexpreopt_gen/
Ddexpreopt_gen.go150 dexpreoptRule.Command().Text("mkdir -p").Flag(filepath.Dir(installPath.String()))
151 dexpreoptRule.Command().Text("cp -f").Input(install.From).Output(installPath)

12