Searched refs:ToList (Results 1 – 4 of 4) sorted by relevance
/build/soong/android/ |
D | depset_paths.go | 77 func (d *DepSet) ToList() Paths { func 92 paths := d.ToList()
|
D | depset_test.go | 31 fmt.Println(d.ToList().Strings()) 41 fmt.Println(d.ToList().Strings()) 51 fmt.Println(d.ToList().Strings()) 118 assertEquals(t, nil, builder.Build().ToList()) 121 assertEquals(t, Paths{b}, builder.Build().ToList()) 124 assertEquals(t, Paths{b, d}, builder.Build().ToList()) 258 if g, w := depSet.ToList().Strings(), tt.postorder; !reflect.DeepEqual(g, w) { 264 if g, w := depSet.ToList().Strings(), tt.preorder; !reflect.DeepEqual(g, w) { 270 if g, w := depSet.ToList().Strings(), tt.topological; !reflect.DeepEqual(g, w) {
|
D | packaging.go | 271 func (d *packagingSpecsDepSet) ToList() []PackagingSpec { func 275 return d.depSet.ToList().([]PackagingSpec)
|
D | depset_generic.go | 211 func (d *depSet) ToList() interface{} { func
|