Home | History | Annotate | Download | only in android

Lines Matching defs:Join

102 	// directory, and OutputPath.Join("foo").Rel() would return "foo".
233 prefix := filepath.Join(ctx.Config().srcDir, ctx.ModuleDir()) + "/"
260 path := filepath.Join(ctx.Config().srcDir, ctx.ModuleDir(), def)
467 p.path = filepath.Join(p.path, rel)
609 return filepath.Join(p.config.srcDir, p.path)
612 // Join creates a new SourcePath with paths... joined with the current path. The
614 func (p SourcePath) Join(ctx PathContext, paths ...string) SourcePath {
634 dir := filepath.Join(p.config.srcDir, p.path, relDir)
681 return filepath.Join(p.config.buildDir, p.path)
688 // Join creates a new OutputPath with paths... joined with the current path. The
690 func (p OutputPath) Join(ctx PathContext, paths ...string) OutputPath {
741 return filepath.Join(*p.config.productVariables.DistDir, p.path)
992 // TODO: filepath.Join isn't necessarily correct with embedded ninja
995 return filepath.Join(pathComponents...), nil