Lines Matching refs:subdir
222 genPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleGenPath argument
225 objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath argument
233 func GenPathWithExt(ctx ModuleOutPathContext, subdir string, p Path, ext string) ModuleGenPath {
235 return path.genPathWithExt(ctx, subdir, ext)
243 func ObjPathWithExt(ctx ModuleOutPathContext, subdir string, p Path, ext string) ModuleObjPath {
245 return path.objPathWithExt(ctx, subdir, ext)
1149 func (p OutputPath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1150 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1326 func (p SourcePath) genPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleGenPath {
1327 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1330 func (p SourcePath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1331 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1352 func (p ModuleOutPath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1353 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1449 func (p ModuleGenPath) genPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleGenPath {
1451 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1454 func (p ModuleGenPath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1455 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))