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 | 683 type SourcePath struct { struct 687 var _ Path = SourcePath{} 689 func (p SourcePath) withRel(rel string) SourcePath { argument 696 func safePathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) { 698 ret := SourcePath{basePath{p, ctx.Config(), ""}} 712 func pathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) { 714 ret := SourcePath{basePath{p, ctx.Config(), ""}} 729 func existsWithDependencies(ctx PathContext, path SourcePath) (exists bool, err error) { argument 754 func PathForSource(ctx PathContext, pathComponents ...string) SourcePath { 806 func (p SourcePath) String() string { argument [all …]
|
D | config.go | 690 func (c *config) DefaultAppCertificateDir(ctx PathContext) SourcePath { 699 func (c *config) DefaultAppCertificate(ctx PathContext) (pem, key SourcePath) { 709 func (c *config) ApexKeyDir(ctx ModuleContext) SourcePath {
|
D | paths_test.go | 784 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 { 156 func getNdkStlLibDir(ctx android.ModuleContext) android.SourcePath {
|
/build/soong/java/ |
D | java_resources.go | 45 excludeFiles = append(excludeFiles, dir.(android.SourcePath).Join(ctx, "**/*").String())
|