• Home
  • Raw
  • Download

Lines Matching refs:WritablePath

48 	temporariesSet   map[WritablePath]bool
54 outDir WritablePath
57 sboxManifestPath WritablePath
66 temporariesSet: make(map[WritablePath]bool),
145 func (r *RuleBuilder) Sbox(outputDir WritablePath, manifestPath WritablePath) *RuleBuilder {
212 func (r *RuleBuilder) Temporary(path WritablePath) {
308 func (r *RuleBuilder) outputSet() map[string]WritablePath {
309 outputs := make(map[string]WritablePath)
338 func (r *RuleBuilder) symlinkOutputSet() map[string]WritablePath {
339 symlinkOutputs := make(map[string]WritablePath)
373 func (r *RuleBuilder) depFileSet() map[string]WritablePath {
374 depFiles := make(map[string]WritablePath)
493 var depFile WritablePath
763 file WritablePath
811 func (c *RuleBuilderCommand) PathForOutput(path WritablePath) string {
1104 func (c *RuleBuilderCommand) Output(path WritablePath) *RuleBuilderCommand {
1130 func (c *RuleBuilderCommand) DepFile(path WritablePath) *RuleBuilderCommand {
1137 func (c *RuleBuilderCommand) ImplicitOutput(path WritablePath) *RuleBuilderCommand {
1152 func (c *RuleBuilderCommand) ImplicitSymlinkOutput(path WritablePath) *RuleBuilderCommand {
1169 func (c *RuleBuilderCommand) SymlinkOutput(path WritablePath) *RuleBuilderCommand {
1187 func (c *RuleBuilderCommand) ImplicitDepFile(path WritablePath) *RuleBuilderCommand {
1221 func (c *RuleBuilderCommand) FlagWithOutput(flag string, path WritablePath) *RuleBuilderCommand {
1228 func (c *RuleBuilderCommand) FlagWithDepFile(flag string, path WritablePath) *RuleBuilderCommand {
1238 func (c *RuleBuilderCommand) FlagWithRspFileInputList(flag string, rspFile WritablePath, paths Path…
1324 func writeRspFileRule(ctx BuilderContext, rspFile WritablePath, paths Paths) { argument