HomeSort by relevance Sort by last modified time
    Searched defs:Srcs (Results 1 - 8 of 8) sorted by null

  /build/soong/genrule/
filegroup.go 29 // srcs lists files that will be included in this filegroup
30 Srcs []string
48 srcs android.Paths
54 // boundaries. filegroups (and genrules) can be referenced from srcs properties of other modules
64 android.ExtractSourcesDeps(ctx, fg.properties.Srcs)
69 fg.srcs = ctx.ExpandSourcesSubDir(fg.properties.Srcs, fg.properties.Exclude_srcs, String(fg.properties.Path))
72 func (fg *fileGroup) Srcs() android.Paths {
73 return append(android.Paths{}, fg.srcs...)
90 "value": strings.Join(fg.srcs.Strings(), " ")
    [all...]
genrule.go 91 Srcs []string
127 func (g *Module) Srcs() android.Paths {
140 android.ExtractSourcesDeps(ctx, g.properties.Srcs)
226 srcFiles := ctx.ExpandSources(g.properties.Srcs, nil)
  /build/soong/cc/
compiler.go 32 // srcs may reference the outputs of other modules that produce source files like genrule
34 Srcs []string `android:"arch_variant"`
135 Srcs []string
171 srcs android.Paths
182 Srcs() android.Paths
185 func (compiler *baseCompiler) Srcs() android.Paths {
186 return append(android.Paths{}, compiler.srcs...)
207 android.ExtractSourcesDeps(ctx, compiler.Properties.Srcs)
241 compiler.srcsBeforeGen = ctx.ExpandSources(compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
496 if len(compiler.Properties.Srcs) > 0
    [all...]
cc.go     [all...]
  /external/wayland-protocols/
wayland_protocol_codegen.go 75 // $(in): A protocol file from srcs
89 Srcs []string
150 // Srcs implements the android.SourceFileProducer Srcs method to return the list
152 func (g *waylandGenModule) Srcs() android.Paths {
161 android.ExtractSourcesDeps(ctx, g.properties.Srcs)
196 for _, src := range ctx.ExpandSources(g.properties.Srcs, nil) {
  /build/soong/java/
java.go 60 Srcs []string `android:"arch_variant"`
124 Srcs []string
277 func (j *Module) Srcs() android.Paths {
475 android.ExtractSourcesDeps(ctx, j.properties.Srcs)
495 func hasSrcExt(srcs []string, ext string) bool {
496 for _, src := range srcs {
518 return hasSrcExt(j.properties.Srcs, ext)
565 for _, f := range dep.Srcs() {
632 deps.classpath = append(deps.classpath, dep.Srcs()...)
635 deps.classpath = append(deps.classpath, dep.Srcs()...
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 354 struct match_info Srcs[3];
418 tokens.Srcs[j].String =
420 tokens.Srcs[j].Length =
424 (tokens.Srcs[j].Length + 1));
425 strncpy(src_str, tokens.Srcs[j].String,
426 tokens.Srcs[j].Length);
427 src_str[tokens.Srcs[j].Length] = '\0';
  /external/llvm/lib/Target/AMDGPU/
R600ControlFlowFinalizer.cpp 351 const SmallVector<std::pair<MachineOperand *, int64_t>, 3> Srcs =
353 for (const auto &Src:Srcs) {

Completed in 411 milliseconds