Searched refs:SourcePath (Results 1 – 7 of 7) sorted by relevance
/build/soong/java/config/ |
D | config.go | 226 func JavaCmd(ctx android.PathContext) android.SourcePath { 231 func JavadocCmd(ctx android.PathContext) android.SourcePath { 235 func javaTool(ctx android.PathContext, tool string) android.SourcePath { 240 return ctx.Config().OnceSourcePath(key, func() android.SourcePath { 248 func javaToolchain(ctx android.PathContext) android.SourcePath { 249 return ctx.Config().OnceSourcePath(javaToolchainKey, func() android.SourcePath { 256 func javaHome(ctx android.PathContext) android.SourcePath { 257 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 | 931 type SourcePath struct { struct 938 func (p SourcePath) RelativeToTop() Path { argument 943 var _ Path = SourcePath{} 945 func (p SourcePath) withRel(rel string) SourcePath { argument 952 func safePathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) { 954 ret := SourcePath{basePath{p, ""}, ctx.Config().srcDir} 968 func pathForSource(ctx PathContext, pathComponents ...string) (SourcePath, error) { 970 ret := SourcePath{basePath{p, ""}, ctx.Config().srcDir} 985 func existsWithDependencies(ctx PathContext, path SourcePath) (exists bool, err error) { argument 1011 func PathForSource(ctx PathContext, pathComponents ...string) SourcePath { [all …]
|
D | paths_test.go | 991 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 { 155 func getNdkStlLibDir(ctx android.ModuleContext) android.SourcePath {
|
/build/soong/java/ |
D | java_resources.go | 45 excludeFiles = append(excludeFiles, dir.(android.SourcePath).Join(ctx, "**/*").String())
|
D | droidstubs.go | 798 srcDir := android.PathForModuleSrc(ctx).(android.SourcePath).Join(ctx, localSrcDir)
|