Searched refs:SourcePath (Results 1 – 7 of 7) sorted by relevance
/build/soong/java/config/ |
D | config.go | 224 func JavaCmd(ctx android.PathContext) android.SourcePath { 229 func JavadocCmd(ctx android.PathContext) android.SourcePath { 233 func javaTool(ctx android.PathContext, tool string) android.SourcePath { 238 return ctx.Config().OnceSourcePath(key, func() android.SourcePath { 246 func javaToolchain(ctx android.PathContext) android.SourcePath { 247 return ctx.Config().OnceSourcePath(javaToolchainKey, func() android.SourcePath { 254 func javaHome(ctx android.PathContext) android.SourcePath { 255 return ctx.Config().OnceSourcePath(javaHomeKey, func() android.SourcePath {
|
/build/soong/android/ |
D | onceper.go | 104 func (once *OncePer) OnceSourcePath(key OnceKey, value func() SourcePath) SourcePath { 105 return once.Once(key, func() interface{} { return value() }).(SourcePath)
|
D | paths.go | 726 type SourcePath struct { struct 730 var _ Path = SourcePath{} 732 func (p SourcePath) withRel(rel string) SourcePath { argument 739 func safePathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) { 741 ret := SourcePath{basePath{p, ctx.Config(), ""}} 755 func pathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) { 757 ret := SourcePath{basePath{p, ctx.Config(), ""}} 772 func existsWithDependencies(ctx PathContext, path SourcePath) (exists bool, err error) { argument 797 func PathForSource(ctx PathContext, pathComponents ...string) SourcePath { 849 func (p SourcePath) String() string { argument [all …]
|
D | config.go | 689 func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath { 698 func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) { 708 func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
|
D | paths_test.go | 824 f func(ctx PathContext, pathComponents ...string) (SourcePath, error)
|
/build/soong/cc/ |
D | ndk_prebuilt.go | 37 …kLibDir(ctx android.ModuleContext, toolchain config.Toolchain, version string) android.SourcePath { 157 func getNdkStlLibDir(ctx android.ModuleContext) android.SourcePath {
|
/build/soong/java/ |
D | java_resources.go | 45 excludeFiles = append(excludeFiles, dir.(android.SourcePath).Join(ctx, "**/*").String())
|