Home
last modified time | relevance | path

Searched refs:SelectedStl (Results 1 – 4 of 4) sorted by relevance

/build/soong/cc/
Dstl.go29 stl := m.SelectedStl()
50 SelectedStl string `blueprint:"mutated"` member
62 stl.Properties.SelectedStl = func() string {
167 switch stl.Properties.SelectedStl {
171 if stl.Properties.SelectedStl == "libc++" {
172 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
174 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl)
203 if stl.Properties.SelectedStl == "ndk_libc++_shared" {
204 deps.SharedLibs = append(deps.SharedLibs, stl.Properties.SelectedStl)
206 deps.StaticLibs = append(deps.StaticLibs, stl.Properties.SelectedStl, "ndk_libc++abi")
[all …]
Dlinkable.go32 SelectedStl() string methodSpec
Dcc.go562 func (c *Module) SelectedStl() string { func
564 return c.stl.Properties.SelectedStl
1247 return stl.Properties.SelectedStl
2143 fromStl := from.SelectedStl()
2144 toStl := to.SelectedStl()
2153 from.SelectedStl(), ctx.OtherModuleName(to.Module()),
2154 to.SelectedStl())
/build/soong/rust/
Drust.go138 func (mod *Module) SelectedStl() string { func