Home
last modified time | relevance | path

Searched refs:SourcePath (Results 1 – 7 of 7) sorted by relevance

/build/soong/java/config/
Dconfig.go226 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/
Donceper.go104 func (once *OncePer) OnceSourcePath(key OnceKey, value func() SourcePath) SourcePath {
105 return once.Once(key, func() interface{} { return value() }).(SourcePath)
Dpaths.go931 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 …]
Dpaths_test.go991 f func(ctx PathContext, pathComponents ...string) (SourcePath, error)
/build/soong/cc/
Dndk_prebuilt.go37 …kLibDir(ctx android.ModuleContext, toolchain config.Toolchain, version string) android.SourcePath {
155 func getNdkStlLibDir(ctx android.ModuleContext) android.SourcePath {
/build/soong/java/
Djava_resources.go45 excludeFiles = append(excludeFiles, dir.(android.SourcePath).Join(ctx, "**/*").String())
Ddroidstubs.go798 srcDir := android.PathForModuleSrc(ctx).(android.SourcePath).Join(ctx, localSrcDir)