Searched refs:testVisibilityRuleSet (Results 1 – 1 of 1) sorted by relevance
/build/soong/android/ |
D | visibility_test.go | 1263 func testVisibilityRuleSet(t *testing.T, rules, extra, expected []string) { func 1279 testVisibilityRuleSet(t, nil, []string{"//foo"}, []string{"//foo"}) 1282 testVisibilityRuleSet(t, []string{"//foo"}, []string{"//bar"}, []string{"//bar", "//foo"}) 1285 …testVisibilityRuleSet(t, []string{"//foo"}, []string{"//bar", "//foo"}, []string{"//bar", "//foo"}) 1288 …testVisibilityRuleSet(t, []string{"//visibility:public"}, []string{"//foo"}, []string{"//visibilit… 1291 testVisibilityRuleSet(t, []string{"//visibility:private"}, []string{"//foo"}, []string{"//foo"}) 1294 …testVisibilityRuleSet(t, []string{"//foo"}, []string{"//visibility:public"}, []string{"//visibilit…
|