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

  /build/make/tools/fs_config/
fs_config.go 58 func (t *targetFSConfigGen) Srcs() android.Paths {
  /build/soong/android/
filegroup.go 28 // srcs lists files that will be included in this filegroup
29 Srcs []string `android:"path"`
47 srcs Paths
53 // properties (such as "srcs") using the syntax ":<name>". filegroup are
63 fg.srcs = PathsForModuleSrcExcludes(ctx, fg.properties.Srcs, fg.properties.Exclude_srcs)
66 fg.srcs = PathsWithModuleSrcSubDir(ctx, fg.srcs, String(fg.properties.Path))
70 func (fg *fileGroup) Srcs() Paths {
71 return append(Paths{}, fg.srcs...
    [all...]
prebuilt_test.go 44 srcs: ["prebuilt_file"],
54 srcs: ["prebuilt_file"],
68 srcs: ["prebuilt_file"],
82 srcs: ["prebuilt_file"],
117 srcs: ["prebuilt_file"],
122 srcs: [":fg"],
226 Srcs []string `android:"path"`
234 InitPrebuiltModule(m, &m.properties.Srcs)
244 if len(p.properties.Srcs) >= 1 {
253 func (p *prebuiltModule) Srcs() Paths
    [all...]
  /build/soong/bpf/
bpf.go 47 Srcs []string `android:"path"`
79 srcs := android.PathsForModuleSrc(ctx, bpf.properties.Srcs)
81 for _, src := range srcs {
127 func (bpf *bpf) Srcs() android.Paths {
  /build/soong/cc/
compiler.go 32 // srcs may reference the outputs of other modules that produce source files like genrule
34 Srcs []string `android:"path,arch_variant"`
139 Srcs []string `android:"path"`
152 Srcs []string `android:"path"`
188 srcs android.Paths
199 Srcs() android.Paths
202 func (compiler *baseCompiler) Srcs() android.Paths {
203 return append(android.Paths{}, compiler.srcs...)
261 compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
502 if len(compiler.Properties.Srcs) > 0
    [all...]
cc.go     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/FuzzMutate/
IRMutator.cpp 120 SmallVector<Value *, 2> Srcs;
121 Srcs.push_back(IB.findOrCreateSource(BB, InstsBefore));
125 auto OpDesc = chooseOperation(Srcs[0], IB);
131 Srcs.push_back(IB.findOrCreateSource(BB, InstsBefore, Srcs, Pred));
133 if (Value *Op = OpDesc->BuilderFunc(Srcs, Insts[IP])) {
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/
RandomIRBuilderTest.cpp 73 SmallVector<Value *, 2> Srcs;
74 ASSERT_TRUE(Descr.SourcePreds[0].matches(Srcs, Insts[1]));
75 Srcs.push_back(Insts[1]);
76 ASSERT_TRUE(Descr.SourcePreds[1].matches(Srcs, Insts[1]));
77 Srcs.push_back(Insts[1]);
82 Value *LastSrc = IB.newSource(BB, Insts, Srcs, Descr.SourcePreds[2]);
83 ASSERT_TRUE(Descr.SourcePreds[2].matches(Srcs, LastSrc));
113 SmallVector<Value *, 2> Srcs(2);
115 Srcs[0] = Src;
123 Srcs[1] = ConstantInt::get(T, 5)
    [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/genrule/
genrule.go 95 Srcs []string `android:"path,arch_variant"`
138 func (g *Module) Srcs() android.Paths {
257 for _, in := range g.properties.Srcs {
271 addLocationLabel(in, []string{"***missing srcs " + in + "***"})
432 dpInfo.Srcs = append(dpInfo.Srcs, g.Srcs().Strings()...)
433 for _, src := range g.properties.Srcs {
  /external/libchrome/soong/
bindings_generator.go 70 Srcs []string
85 android.ExtractSourcesDeps(ctx, m.properties.Srcs)
93 for _, in := range ctx.ExpandSources(m.properties.Srcs, nil) {
95 ctx.PropertyErrorf("srcs", "Source is not a .mojom file: %s", in.Rel())
128 func (m *mojomPickles) Srcs() android.Paths {
143 Srcs []string
172 android.ExtractSourcesDeps(ctx, p.Srcs)
246 for _, in := range ctx.ExpandSources(p.Srcs, nil) {
248 ctx.PropertyErrorf("srcs", "Source is not a .mojom file: %s", in.Rel())
329 func (m *mojomHeaders) Srcs() android.Paths
    [all...]
  /build/soong/apex/
apex.go 542 func (a *apexBundle) Srcs() android.Paths {
    [all...]
  /build/soong/java/
droiddoc.go 160 Srcs []string `android:"path,arch_variant"`
181 // the java library (in classpath) for documentation that provides java srcs and srcjars.
184 // the base dirs under srcs_lib will be scanned for java srcs.
187 // the sub dirs under srcs_lib_whitelist_dirs will be scanned for java srcs.
499 func (j *Javadoc) Srcs() android.Paths {
658 deps.classpath = append(deps.classpath, dep.Srcs()...)
665 srcs := dep.(SrcDependency).CompiledSrcs()
668 for _, src := range srcs {
670 deps.srcs = append(deps.srcs, src
    [all...]
java.go 67 Srcs []string `android:"path,arch_variant"`
135 Srcs []string `android:"path"`
347 func (j *Module) Srcs() android.Paths {
523 func hasSrcExt(srcs []string, ext string) bool {
524 for _, src := range srcs {
546 return hasSrcExt(j.properties.Srcs, ext)
601 srcs android.Paths
612 for _, f := range dep.Srcs() {
797 deps.classpath = append(deps.classpath, dep.Srcs()...)
800 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) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
R600ControlFlowFinalizer.cpp 367 const SmallVector<std::pair<MachineOperand *, int64_t>, 3> Srcs =
369 for (const auto &Src:Srcs) {
R600InstrInfo.cpp 438 const std::vector<std::pair<int, unsigned>> &Srcs =
441 const std::pair<int, unsigned> &Src = Srcs[j];
    [all...]

Completed in 568 milliseconds