Searched refs:affectableProperties (Results 1 – 2 of 2) sorted by relevance
/build/soong/android/soongconfig/ |
D | modules_test.go | 193 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})
|
D | modules.go | 261 …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 …]
|