Home
last modified time | relevance | path

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

/build/soong/java/config/
Dconfig.go224 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/
Donceper.go104 func (once *OncePer) OnceSourcePath(key OnceKey, value func() SourcePath) SourcePath {
105 return once.Once(key, func() interface{} { return value() }).(SourcePath)
Dpaths.go726 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 …]
Dconfig.go689 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 {
Dpaths_test.go824 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 {
157 func getNdkStlLibDir(ctx android.ModuleContext) android.SourcePath {
/build/soong/java/
Djava_resources.go45 excludeFiles = append(excludeFiles, dir.(android.SourcePath).Join(ctx, "**/*").String())