Searched refs:linkerProps (Results 1 – 11 of 11) sorted by relevance
/aosp12/build/soong/cc/ |
H A D | test.go | 317 func (test *testDecorator) linkerProps() []interface{} { func 335 func (test *testBinary) linkerProps() []interface{} { func 336 props := append(test.testDecorator.linkerProps(), test.binaryDecorator.linkerProps()...) 485 func (test *testLibrary) linkerProps() []interface{} { func 486 return append(test.testDecorator.linkerProps(), test.libraryDecorator.linkerProps()...) 562 func (benchmark *benchmarkDecorator) linkerProps() []interface{} { func 563 props := benchmark.binaryDecorator.linkerProps()
|
H A D | toolchain_library.go | 49 func (library *toolchainLibraryDecorator) linkerProps() []interface{} { func 51 props = append(props, library.libraryDecorator.linkerProps()...)
|
H A D | ndk_prebuilt.go | 103 func (ndk *ndkPrebuiltStlLinker) linkerProps() []interface{} { func 104 return append(ndk.libraryDecorator.linkerProps(), &ndk.Properties, &ndk.flagExporter.Properties)
|
H A D | object.go | 163 for _, props := range m.linker.linkerProps() { 206 func (object *objectLinker) linkerProps() []interface{} { func
|
H A D | bp2build.go | 318 for _, linkerProps := range module.linker.linkerProps() { 319 if baseLinkerProps, ok := linkerProps.(*BaseLinkerProperties); ok {
|
H A D | prebuilt.go | 95 func (p *prebuiltLibraryLinker) linkerProps() []interface{} { func 96 return p.libraryDecorator.linkerProps()
|
H A D | binary.go | 119 func (binary *binaryDecorator) linkerProps() []interface{} { func 120 return append(binary.baseLinker.linkerProps(),
|
H A D | fuzz.go | 107 func (fuzz *fuzzBinary) linkerProps() []interface{} { func 108 props := fuzz.binaryDecorator.linkerProps()
|
H A D | linker.go | 246 func (linker *baseLinker) linkerProps() []interface{} { func
|
H A D | library.go | 687 func (library *libraryDecorator) linkerProps() []interface{} { func 689 props = append(props, library.baseLinker.linkerProps()...)
|
H A D | cc.go | 550 linkerProps() []interface{} 1039 c.AddProperties(c.linker.linkerProps()...)
|