Lines Matching refs:static
719 if library.static() {
876 if library.static() {
892 static() bool methodSpec
1033 if library.static() {
1047 if library.static() {
1109 if library.static() {
1162 if library.static() {
1313 if static := ctx.GetDirectDepsWithTag(staticVariantTag); len(static) > 0 {
1314 s := ctx.OtherModuleProvider(static[0], StaticLibraryInfoProvider).(StaticLibraryInfo)
1502 if library.static() || library.header() {
1679 if Bool(library.Properties.Static_ndk_lib) && library.static() &&
1700 return library.shared() || library.static()
1704 func (library *libraryDecorator) static() bool { func
1716 return !library.static() && !library.shared()
1838 if library.static() {
1850 if library.static() && library.buildStatic() && !library.buildStubs() {
1919 func reuseStaticLibrary(mctx android.BottomUpMutatorContext, static, shared *Module) { argument
1920 if staticCompiler, ok := static.compiler.(*libraryDecorator); ok {
1938 mctx.AddInterVariantDependency(reuseObjTag, shared, static)
1946 mctx.AddInterVariantDependency(staticVariantTag, shared, static)
1968 static := modules[0].(*Module)
1971 static.linker.(prebuiltLibraryInterface).setStatic()
1981 static.linker.(prebuiltLibraryInterface).disablePrebuilt()
2008 static := modules[0].(LinkableInterface)
2011 static.SetStatic()
2015 reuseStaticLibrary(mctx, static.(*Module), shared.(*Module))
2193 if tag, ok := ctx.OtherModuleDependencyTag(dep).(libraryDependencyTag); ok && tag.static() {