Lines Matching refs:testDecorator
248 type testDecorator struct { struct
255 func (test *testDecorator) gtest() bool { argument
259 func (test *testDecorator) testBinary() bool { argument
263 func (test *testDecorator) linkerFlags(ctx ModuleContext, flags Flags) Flags { argument
287 func (test *testDecorator) linkerDeps(ctx BaseModuleContext, deps Deps) Deps { argument
306 func (test *testDecorator) linkerInit(ctx BaseModuleContext, linker *baseLinker) { argument
323 func (test *testDecorator) linkerProps() []interface{} { argument
327 func (test *testDecorator) installerProps() []interface{} { argument
336 *testDecorator anonMember
346 props := append(test.testDecorator.linkerProps(), test.binaryDecorator.linkerProps()...)
352 test.testDecorator.linkerInit(ctx, test.binaryDecorator.baseLinker)
357 deps = test.testDecorator.linkerDeps(ctx, deps)
366 flags = test.testDecorator.linkerFlags(ctx, flags)
371 return append(test.baseInstaller.installerProps(), test.testDecorator.installerProps()...)
427 if Bool(test.testDecorator.LinkerProperties.Isolated) {
457 …test.Properties.Test_config_template, test.testDecorator.InstallerProperties.Test_suites, configs,…
482 testDecorator: &testDecorator{
496 *testDecorator anonMember
502 props = append(props, test.testDecorator.linkerProps()...)
507 test.testDecorator.linkerInit(ctx, test.libraryDecorator.baseLinker)
512 deps = test.testDecorator.linkerDeps(ctx, deps)
519 flags = test.testDecorator.linkerFlags(ctx, flags)
524 return append(test.baseInstaller.installerProps(), test.testDecorator.installerProps()...)
531 testDecorator: &testDecorator{