Searched refs:benchmark (Results 1 – 6 of 6) sorted by relevance
/build/soong/rust/ |
D | benchmark.go | 62 benchmark := &benchmarkDecorator{ 68 module.compiler = benchmark 69 module.AddProperties(&benchmark.Properties) 70 return module, benchmark 88 func (benchmark *benchmarkDecorator) autoDep(ctx android.BottomUpMutatorContext) autoDep { 92 func (benchmark *benchmarkDecorator) stdLinkage(ctx *depsContext) RustLinkage { 96 func (benchmark *benchmarkDecorator) compilerFlags(ctx ModuleContext, flags Flags) Flags { 97 flags = benchmark.binaryDecorator.compilerFlags(ctx, flags) 101 func (benchmark *benchmarkDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps { 102 deps = benchmark.binaryDecorator.compilerDeps(ctx, deps) [all …]
|
D | androidmk.go | 120 func (benchmark *benchmarkDecorator) AndroidMk(ctx AndroidMkContext, ret *android.AndroidMkEntries)… 121 benchmark.binaryDecorator.AndroidMk(ctx, ret) 125 entries.AddCompatibilityTestSuites(benchmark.Properties.Test_suites...) 126 if benchmark.testConfig != nil { 127 entries.SetString("LOCAL_FULL_TEST_CONFIG", benchmark.testConfig.String()) 130 …entries.SetBoolIfTrue("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", !BoolDefault(benchmark.Properties…
|
D | Android.bp | 20 "benchmark.go",
|
/build/make/tools/perf/ |
D | benchmarks | 283 benchmark: Benchmark 304 def __init__(self, lunch, benchmark, iteration, log_dir): argument 306 self.benchmark = benchmark 317 "id": self.benchmark.id, 318 "title": self.benchmark.title, 319 "modules": self.benchmark.modules, 320 "dumpvars": self.benchmark.dumpvars, 321 "change": self.benchmark.change.label, 346 for benchmark in self._options.Benchmarks(): 348 self._run_benchmark(lunch, benchmark, iteration) [all …]
|
/build/soong/cc/ |
D | test.go | 641 func (benchmark *benchmarkDecorator) benchmarkBinary() bool { 645 func (benchmark *benchmarkDecorator) linkerProps() []interface{} { 646 props := benchmark.binaryDecorator.linkerProps() 647 props = append(props, &benchmark.Properties) 651 func (benchmark *benchmarkDecorator) linkerDeps(ctx DepsContext, deps Deps) Deps { 652 deps = benchmark.binaryDecorator.linkerDeps(ctx, deps) 657 func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Path) { 658 for _, d := range android.PathsForModuleSrc(ctx, benchmark.Properties.Data) { 659 benchmark.data = append(benchmark.data, android.DataPath{SrcPath: d}) 663 if Bool(benchmark.Properties.Require_root) { [all …]
|
D | androidmk.go | 332 func (benchmark *benchmarkDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.Androi… 333 ctx.subAndroidMk(entries, benchmark.binaryDecorator) 336 if len(benchmark.Properties.Test_suites) > 0 { 337 entries.AddCompatibilityTestSuites(benchmark.Properties.Test_suites...) 339 if benchmark.testConfig != nil { 340 entries.SetString("LOCAL_FULL_TEST_CONFIG", benchmark.testConfig.String()) 343 if !BoolDefault(benchmark.Properties.Auto_gen_config, true) {
|