Searched refs:libraryInterface (Results 1 – 9 of 9) sorted by relevance
/build/soong/rust/ |
D | library.go | 83 type libraryInterface interface { interface 185 var _ libraryInterface = (*libraryDecorator)(nil) 456 case libraryInterface: 462 rlib.compiler.(libraryInterface).setRlib() 463 dylib.compiler.(libraryInterface).setDylib() 466 modules[0].(*Module).compiler.(libraryInterface).setRlib() 469 modules[0].(*Module).compiler.(libraryInterface).setDylib()
|
D | rust.go | 144 if _, ok := mod.compiler.(libraryInterface); ok { 157 if library, ok := mod.compiler.(libraryInterface); ok { 166 if library, ok := mod.compiler.(libraryInterface); ok { 175 if _, ok := mod.compiler.(libraryInterface); ok { 400 if lib, ok := mod.compiler.(libraryInterface); ok && (lib.buildShared() || lib.buildStatic()) { 418 if library, ok := mod.compiler.(libraryInterface); ok { 428 if library, ok := mod.compiler.(libraryInterface); ok { 450 if library, ok := mod.compiler.(libraryInterface); ok { 459 if library, ok := mod.compiler.(libraryInterface); ok { 484 if _, ok := mod.compiler.(libraryInterface); ok { [all …]
|
/build/soong/cc/ |
D | snapshot_utils.go | 26 libraryInterface
|
D | cc.go | 528 if library, ok := c.linker.(libraryInterface); ok { 546 if library, ok := c.linker.(libraryInterface); ok { 555 if library, ok := c.linker.(libraryInterface); ok { 649 if _, ok := c.linker.(libraryInterface); ok { 714 if library, ok := c.linker.(libraryInterface); ok { 724 if library, ok := c.linker.(libraryInterface); ok { 734 if library, ok := c.linker.(libraryInterface); ok { 743 if library, ok := c.linker.(libraryInterface); ok { 760 if library, ok := c.linker.(libraryInterface); ok { 2304 objs, exporter := ccReuseDep.compiler.(libraryInterface).reuseObjs() [all …]
|
D | coverage.go | 122 if static, ok := cc.linker.(libraryInterface); !ok || !static.static() {
|
D | vendor_snapshot.go | 894 if lib, ok := module.linker.(libraryInterface); ok { 960 if lib, ok := module.linker.(libraryInterface); ok { 983 if lib, ok := module.linker.(libraryInterface); ok && lib.buildStatic() && lib.buildShared() {
|
D | vndk.go | 141 …if _, ok := to.linker.(libraryInterface); ok && to.VendorProperties.Vendor_available != nil && !Bo… 371 if lib, ok := m.linker.(libraryInterface); ok {
|
D | prebuilt.go | 69 libraryInterface
|
D | library.go | 685 type libraryInterface interface { interface
|