Lines Matching refs:subdir
223 genPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleGenPath argument
226 objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath argument
234 func GenPathWithExt(ctx ModuleOutPathContext, subdir string, p Path, ext string) ModuleGenPath {
236 return path.genPathWithExt(ctx, subdir, ext)
244 func ObjPathWithExt(ctx ModuleOutPathContext, subdir string, p Path, ext string) ModuleObjPath {
246 return path.objPathWithExt(ctx, subdir, ext)
1251 func (p OutputPath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1252 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1429 func (p SourcePath) genPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleGenPath {
1430 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1433 func (p SourcePath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1434 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1455 func (p ModuleOutPath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1456 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1549 func (p ModuleGenPath) genPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleGenPath {
1551 return PathForModuleGen(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))
1554 func (p ModuleGenPath) objPathWithExt(ctx ModuleOutPathContext, subdir, ext string) ModuleObjPath {
1555 return PathForModuleObj(ctx, subdir, pathtools.ReplaceExtension(p.path, ext))