Lines Matching refs:Commands
29 commands []*RuleBuilderCommand
87 // Command returns a new RuleBuilderCommand for the rule. The commands will be ordered in the rule by when they were
92 r.commands = append(r.commands, command)
125 for _, c := range r.commands {
147 for _, c := range r.commands {
179 for _, c := range r.commands {
195 for _, c := range r.commands {
220 // Commands returns a slice containing a the built command line for each call to RuleBuilder.Command.
221 func (r *RuleBuilder) Commands() []string {
222 var commands []string
223 for _, c := range r.commands {
224 commands = append(commands, string(c.buf))
226 return commands
263 commands := r.Commands()
273 commands = append(commands, string(cmd.buf))
288 if len(commands) > 0 {
291 Command: strings.Join(proptools.NinjaEscapeList(commands), " && "),
426 // commands in a single RuleBuilder then RuleBuilder.Build will add an extra command to merge the depfiles together.
448 // are added to commands in a single RuleBuilder then RuleBuilder.Build will add an extra command to merge the