Home | History | Annotate | Download | only in blueprint

Lines Matching defs:String

35 func (d Deps) String() string {
51 Comment string // The comment that will appear above the definition.
59 Command string // The command that Ninja will run for the rule.
60 Depfile string // The dependency file name.
62 Description string // The description that Ninja will print for the rule.
66 Rspfile string // The response file.
67 RspfileContent string // The response file content.
70 CommandDeps []string // Command-specific implicit dependencies to prepend to builds
71 Comment string // The comment that will appear above the definition.
79 Comment string // The comment that will appear above the definition.
80 Depfile string // The dependency file name.
83 Outputs []string // The list of explicit output targets.
84 ImplicitOutputs []string // The list of implicit output targets.
85 Inputs []string // The list of explicit input dependencies.
86 Implicits []string // The list of implicit input dependencies.
87 OrderOnly []string // The list of order-only dependencies.
88 Args map[string]string // The variable/value pairs to set.
95 Comment string
110 func (p *poolDef) WriteTo(nw *ninjaWriter, name string) error {
130 Comment string
132 Variables map[string]*ninjaString
141 Variables: make(map[string]*ninjaString),
168 r.Variables["deps"] = simpleNinjaString(params.Deps.String())
212 func (r *ruleDef) WriteTo(nw *ninjaWriter, name string,
213 pkgNames map[*packageContext]string) error {
244 Comment string
253 Variables map[string]*ninjaString
306 b.Variables = make(map[string]*ninjaString)
319 b.Variables["deps"] = simpleNinjaString(params.Deps.String())
350 func (b *buildDef) WriteTo(nw *ninjaWriter, pkgNames map[*packageContext]string) error {
370 args := make(map[string]string)
381 var keys []string
401 func valueList(list []*ninjaString, pkgNames map[*packageContext]string,
402 escaper *strings.Replacer) []string {
404 result := make([]string, len(list))
411 func writeVariables(nw *ninjaWriter, variables map[string]*ninjaString,
412 pkgNames map[*packageContext]string) error {
413 var keys []string