Home
last modified time | relevance | path

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

/build/soong/android/
Ddepset_paths.go77 func (d *DepSet) ToList() Paths { func
92 paths := d.ToList()
Ddepset_test.go31 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) {
Dpackaging.go271 func (d *packagingSpecsDepSet) ToList() []PackagingSpec { func
275 return d.depSet.ToList().([]PackagingSpec)
Ddepset_generic.go211 func (d *depSet) ToList() interface{} { func