/build/soong/sysprop/ |
D | sysprop_library.go | 37 Srcs []string `android:"path"` member 83 for _, syspropFile := range android.PathsForModuleSrc(ctx, g.properties.Srcs) { 147 Srcs []string `android:"path"` member 226 for _, syspropFile := range android.PathsForModuleSrc(ctx, m.properties.Srcs) { 245 Inputs(android.PathsForModuleSrc(ctx, m.properties.Srcs)) 335 Srcs []string member 362 Srcs []string member 374 if len(m.properties.Srcs) == 0 { 435 ccProps.Srcs = m.properties.Srcs 464 Srcs: m.properties.Srcs, [all …]
|
/build/soong/cc/ |
D | prebuilt.go | 42 Srcs []string `android:"path,arch_variant"` member 65 return p.properties.Srcs 179 srcs := p.properties.Srcs 181 srcs = append(srcs, p.libraryDecorator.StaticProperties.Static.Srcs...) 184 srcs = append(srcs, p.libraryDecorator.SharedProperties.Shared.Srcs...) 199 p.properties.Srcs = nil 281 Srcs []string `android:"path,arch_variant"` member 299 if len(p.properties.Srcs) > 0 { 318 android.InitPrebuiltModule(module, &prebuilt.properties.Srcs) 338 if len(p.properties.Srcs) > 0 { [all …]
|
D | vndk_prebuilt.go | 63 Srcs []string `android:"arch_variant"` member 115 if len(p.properties.Srcs) == 0 { 120 if len(p.properties.Srcs) > 1 { 125 return android.PathForModuleSrc(ctx, p.properties.Srcs[0]) 136 if len(p.properties.Srcs) > 0 && p.shared() { 179 if len(p.properties.Srcs) == 0 {
|
D | ccdeps.go | 56 Srcs []string `json:"srcs,omitempty"` member 189 srcs := compiledModule.Srcs() 210 dpInfo.Srcs = append(dpInfo.Srcs, srcs.Strings()...) 212 dpInfo.Srcs = android.FirstUniqueStrings(dpInfo.Srcs)
|
D | ndk_headers.go | 71 Srcs []string `android:"path"` member 133 srcFiles := android.PathsForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs) 148 ctx.ModuleErrorf("srcs %q matched zero files", m.properties.Srcs) 304 Srcs []string member 338 srcFiles := android.PathsForModuleSrcExcludes(ctx, m.properties.Srcs, m.properties.Exclude_srcs) 356 ctx.ModuleErrorf("srcs %q matched zero files", m.properties.Srcs)
|
D | compiler.go | 40 Srcs []string `android:"path,arch_variant"` member 148 Srcs []string `android:"path"` 165 Srcs []string `android:"path"` 219 Srcs() android.Paths methodSpec 222 func (compiler *baseCompiler) Srcs() android.Paths { func 273 …compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler… 512 if len(compiler.Properties.Srcs) > 0 { 545 for _, src := range compiler.Properties.Srcs {
|
D | library.go | 127 Srcs []string `android:"path,arch_variant"` member 641 if len(library.baseCompiler.Properties.Srcs) > 0 { 644 if len(library.StaticProperties.Static.Srcs) > 0 { 647 if len(library.SharedProperties.Shared.Srcs) > 0 { 662 total_length := len(library.baseCompiler.Properties.Srcs) + len(deps.GeneratedSources) + 663 len(library.SharedProperties.Shared.Srcs) + len(library.StaticProperties.Static.Srcs) 673 srcs := android.PathsForModuleSrc(ctx, library.StaticProperties.Static.Srcs) 677 srcs := android.PathsForModuleSrc(ctx, library.SharedProperties.Shared.Srcs) 1443 sharedCompiler.baseCompiler.Properties.Srcs 1444 sharedCompiler.baseCompiler.Properties.Srcs = nil
|
D | test.go | 165 return test.baseCompiler.Properties.Srcs 178 test.baseCompiler.Properties.Srcs = []string{src} 183 test.baseCompiler.Properties.Srcs = nil
|
/build/soong/android/ |
D | filegroup.go | 29 Srcs []string `android:"path"` member 63 fg.srcs = PathsForModuleSrcExcludes(ctx, fg.properties.Srcs, fg.properties.Exclude_srcs) 70 func (fg *fileGroup) Srcs() Paths { func
|
D | prebuilt_test.go | 396 Srcs []string `android:"path,arch_variant"` 404 InitPrebuiltModule(m, &m.properties.Srcs) 414 if len(p.properties.Srcs) >= 1 { 464 func (s *sourceModule) Srcs() Paths { func
|
D | variable_test.go | 139 Srcs []string 163 Srcs []string
|
/build/soong/rust/ |
D | prebuilt.go | 29 Srcs []string `android:"path,arch_variant"` member 118 srcs := prebuilt.Properties.Srcs 120 srcs = append(srcs, prebuilt.libraryDecorator.Properties.Rlib.Srcs...) 123 srcs = append(srcs, prebuilt.libraryDecorator.Properties.Dylib.Srcs...)
|
D | source_provider.go | 37 Srcs() android.Paths methodSpec 42 func (sp *baseSourceProvider) Srcs() android.Paths { func
|
D | proc_macro.go | 68 srcPath, _ := srcPathFromModuleSrcs(ctx, procMacro.baseCompiler.Properties.Srcs)
|
D | binary.go | 109 srcPath, _ := srcPathFromModuleSrcs(ctx, binary.baseCompiler.Properties.Srcs)
|
/build/blueprint/bootstrap/ |
D | bootstrap.go | 231 Srcs []string 236 Srcs []string 240 Srcs []string 329 srcs = append(g.properties.Srcs, g.properties.Darwin.Srcs...) 332 srcs = append(g.properties.Srcs, g.properties.Linux.Srcs...) 353 Srcs []string 359 Srcs []string 363 Srcs []string 432 srcs = append(g.properties.Srcs, g.properties.Darwin.Srcs...) 435 srcs = append(g.properties.Srcs, g.properties.Linux.Srcs...)
|
/build/soong/java/ |
D | jdeps_test.go | 58 if !reflect.DeepEqual(dpInfo.Srcs, expected) { 59 t.Errorf("Library.IDEInfo() Srcs = %v, want %v", dpInfo.Srcs, expected)
|
D | jdeps.go | 73 dpInfo.Srcs = android.FirstUniqueStrings(dpInfo.Srcs)
|
D | prebuilt_apis.go | 96 Srcs []string 99 filegroupProps.Srcs = []string{path}
|
D | sdk_library.go | 1128 Srcs []string 1142 Srcs []string 1161 props.Srcs = []string{":" + module.stubsSourceModuleName(apiScope)} 1169 props.Openjdk9.Srcs = module.properties.Openjdk9.Srcs 1195 Srcs []string 1241 props.Srcs = append(props.Srcs, module.properties.Srcs...) 1465 if len(module.properties.Srcs) == 0 { 1848 Srcs []string 1852 props.Srcs = scopeProperties.Stub_srcs
|
D | java.go | 145 Srcs []string `android:"path,arch_variant"` member 214 Srcs []string `android:"path"` 818 return hasSrcExt(j.properties.Srcs, ext) 885 for _, f := range dep.Srcs() { 1118 deps.classpath = append(deps.classpath, dep.Srcs()...) 1121 deps.classpath = append(deps.classpath, dep.Srcs()...) 1122 deps.staticJars = append(deps.staticJars, dep.Srcs()...) 1123 deps.staticHeaderJars = append(deps.staticHeaderJars, dep.Srcs()...) 1316 j.properties.Srcs = append(j.properties.Srcs, j.properties.Openjdk9.Srcs...) 1318 srcFiles := android.PathsForModuleSrcExcludes(ctx, j.properties.Srcs, j.properties.Exclude_srcs) [all …]
|
/build/soong/python/ |
D | python.go | 48 Srcs []string `android:"path,arch_variant"` member 79 Srcs []string `android:"path,arch_variant"` member 295 if hasSrcExt(p.properties.Srcs, protoExt) { 300 return hasSrcExt(p.properties.Version.Py2.Srcs, protoExt) 302 return hasSrcExt(p.properties.Version.Py3.Srcs, protoExt) 440 srcs := p.properties.Srcs 444 srcs = append(srcs, p.properties.Version.Py2.Srcs...) 447 srcs = append(srcs, p.properties.Version.Py3.Srcs...)
|
/build/soong/bpf/ |
D | bpf.go | 47 Srcs []string `android:"path"` member 85 srcs := android.PathsForModuleSrc(ctx, bpf.properties.Srcs)
|
/build/soong/genrule/ |
D | genrule.go | 112 Srcs []string `android:"path,arch_variant"` member 165 func (g *Module) Srcs() android.Paths { func 285 for _, in := range g.properties.Srcs { 527 dpInfo.Srcs = append(dpInfo.Srcs, g.Srcs().Strings()...) 528 for _, src := range g.properties.Srcs {
|
/build/make/tools/fs_config/ |
D | fs_config.go | 58 func (t *targetFSConfigGen) Srcs() android.Paths { func
|