Lines Matching refs:pkgNames
222 pkgNames map[*packageContext]string) error {
237 err = nw.ScopedAssign("pool", r.Pool.fullName(pkgNames))
243 err = writeVariables(nw, r.Variables, pkgNames)
374 func (b *buildDef) WriteTo(nw *ninjaWriter, pkgNames map[*packageContext]string) error {
377 rule = b.Rule.fullName(pkgNames)
378 outputs = valueList(b.Outputs, pkgNames, outputEscaper)
379 implicitOuts = valueList(b.ImplicitOutputs, pkgNames, outputEscaper)
380 explicitDeps = valueList(b.Inputs, pkgNames, inputEscaper)
381 implicitDeps = valueList(b.Implicits, pkgNames, inputEscaper)
382 orderOnlyDeps = valueList(b.OrderOnly, pkgNames, inputEscaper)
383 validations = valueList(b.Validations, pkgNames, inputEscaper)
387 implicitDeps = append(valueList(b.RuleDef.CommandDeps, pkgNames, inputEscaper), implicitDeps...)
388 …orderOnlyDeps = append(valueList(b.RuleDef.CommandOrderOnly, pkgNames, inputEscaper), orderOnlyDep…
399 args[argVar.fullName(pkgNames)] = value.Value(pkgNames)
402 err = writeVariables(nw, b.Variables, pkgNames)
430 func valueList(list []ninjaString, pkgNames map[*packageContext]string,
435 result[i] = ninjaStr.ValueWithEscaper(pkgNames, escaper)
441 pkgNames map[*packageContext]string) error {
449 err := nw.ScopedAssign(name, variables[name].Value(pkgNames))