Home
last modified time | relevance | path

Searched refs:affectableProperties (Results 1 – 2 of 2) sorted by relevance

/build/soong/android/soongconfig/
Dmodules_test.go193 affectableProperties []string
199 affectableProperties: []string{"cflags"},
207 affectableProperties: []string{"cflags"},
215 affectableProperties: []string{"cflags"},
223 affectableProperties: []string{"cflags"},
232 affectableProperties: []string{"cflags"},
240 affectableProperties: []string{"multilib.lib32.cflags"},
252 affectableProperties: []string{
279 typ := createAffectablePropertiesType(tt.affectableProperties, []interface{}{tt.factoryProps})
Dmodules.go261 …affectablePropertiesType := createAffectablePropertiesType(moduleType.affectableProperties, factor…
290 func createAffectablePropertiesType(affectableProperties []string, factoryProps []interface{}) refl…
291 affectableProperties = append([]string(nil), affectableProperties...)
292 sort.Strings(affectableProperties)
299 for len(affectableProperties) > 0 {
300 p := affectableProperties[0]
301 if !strings.HasPrefix(affectableProperties[0], prefix) {
317 affectableProperties, nestedType = recurse(prefix+nestedPrefix, affectableProperties)
336 affectableProperties = affectableProperties[1:]
344 return affectableProperties, typ
[all …]