Home
last modified time | relevance | path

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

/build/soong/android/
Ddepset.go55 TOPOLOGICAL const
64 case TOPOLOGICAL:
75 if order == TOPOLOGICAL {
96 reverse: order == TOPOLOGICAL,
Ddepset_test.go45 a := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("a")).Build()
46 b := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("b")).Transitive(a).Build()
47 c := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("c")).Transitive(a).Build()
48 d := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("d")).Transitive(b, c).Build()
267 depSet := tt.depSet(t, TOPOLOGICAL)
277 orders := []DepSetOrder{POSTORDER, PREORDER, TOPOLOGICAL}