Home
last modified time | relevance | path

Searched refs:linkerProps (Results 1 – 10 of 10) sorted by relevance

/build/soong/cc/
Dtest.go300 func (test *testDecorator) linkerProps() []interface{} { func
317 func (test *testBinary) linkerProps() []interface{} { func
318 props := append(test.testDecorator.linkerProps(), test.binaryDecorator.linkerProps()...)
446 func (test *testLibrary) linkerProps() []interface{} { func
447 return append(test.testDecorator.linkerProps(), test.libraryDecorator.linkerProps()...)
523 func (benchmark *benchmarkDecorator) linkerProps() []interface{} { func
524 props := benchmark.binaryDecorator.linkerProps()
Dtoolchain_library.go50 func (library *toolchainLibraryDecorator) linkerProps() []interface{} { func
52 props = append(props, library.libraryDecorator.linkerProps()...)
Dndk_prebuilt.go104 func (ndk *ndkPrebuiltStlLinker) linkerProps() []interface{} { func
105 return append(ndk.libraryDecorator.linkerProps(), &ndk.Properties, &ndk.flagExporter.Properties)
Dprebuilt.go92 func (p *prebuiltLibraryLinker) linkerProps() []interface{} { func
93 return p.libraryDecorator.linkerProps()
Dobject.go88 func (object *objectLinker) linkerProps() []interface{} { func
Dbinary.go109 func (binary *binaryDecorator) linkerProps() []interface{} { func
110 return append(binary.baseLinker.linkerProps(),
Dfuzz.go96 func (fuzz *fuzzBinary) linkerProps() []interface{} { func
97 props := fuzz.binaryDecorator.linkerProps()
Dlinker.go213 func (linker *baseLinker) linkerProps() []interface{} { func
Dlibrary.go476 func (library *libraryDecorator) linkerProps() []interface{} { func
478 props = append(props, library.baseLinker.linkerProps()...)
Dcc.go393 linkerProps() []interface{} methodSpec
800 c.AddProperties(c.linker.linkerProps()...)