Searched refs:libraryInterface (Results 1 – 8 of 8) sorted by relevance
/build/soong/rust/ |
D | library.go | 104 type libraryInterface interface { interface 248 var _ libraryInterface = (*libraryDecorator)(nil) 588 library, ok := m.compiler.(libraryInterface) 618 v.(*Module).compiler.(libraryInterface).setRlib() 620 v.(*Module).compiler.(libraryInterface).setDylib() 627 v.(*Module).compiler.(libraryInterface).setSource() 652 case libraryInterface: 660 rlib.compiler.(libraryInterface).setRlibStd() 661 dylib.compiler.(libraryInterface).setDylibStd()
|
D | rust.go | 193 if _, ok := mod.compiler.(libraryInterface); ok { 202 if library, ok := mod.compiler.(libraryInterface); ok { 211 if library, ok := mod.compiler.(libraryInterface); ok { 220 if library, ok := mod.compiler.(libraryInterface); ok { 229 if library, ok := mod.compiler.(libraryInterface); ok { 252 if _, ok := mod.compiler.(libraryInterface); ok { 549 if lib, ok := mod.compiler.(libraryInterface); ok && (lib.buildShared() || lib.buildStatic()) { 567 if library, ok := mod.compiler.(libraryInterface); ok { 577 if library, ok := mod.compiler.(libraryInterface); ok { 587 if library, ok := mod.compiler.(libraryInterface); ok { [all …]
|
D | sanitize.go | 285 if lib, ok := mod.compiler.(libraryInterface); ok { 309 if lib, ok := mod.compiler.(libraryInterface); ok {
|
D | image.go | 216 if lib, ok := mod.compiler.(libraryInterface); !ok || (ok && lib.buildShared()) {
|
/build/soong/cc/ |
D | snapshot_utils.go | 58 libraryInterface
|
D | coverage.go | 131 if static, ok := cc.linker.(libraryInterface); !ok || !static.static() {
|
D | prebuilt.go | 72 libraryInterface
|
D | library.go | 889 type libraryInterface interface { interface 933 var _ libraryInterface = (*libraryDecorator)(nil) 2131 func moduleLibraryInterface(module blueprint.Module) libraryInterface {
|