Home
last modified time | relevance | path

Searched refs:NewDepSetBuilder (Results 1 – 10 of 10) sorted by relevance

/build/soong/android/
Ddepset_test.go26 a := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("a")).Build()
27 b := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("b")).Transitive(a).Build()
28 c := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("c")).Transitive(a).Build()
29 d := NewDepSetBuilder(POSTORDER).Direct(PathForTesting("d")).Transitive(b, c).Build()
36 a := NewDepSetBuilder(PREORDER).Direct(PathForTesting("a")).Build()
37 b := NewDepSetBuilder(PREORDER).Direct(PathForTesting("b")).Transitive(a).Build()
38 c := NewDepSetBuilder(PREORDER).Direct(PathForTesting("c")).Transitive(a).Build()
39 d := NewDepSetBuilder(PREORDER).Direct(PathForTesting("d")).Transitive(b, c).Build()
46 a := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("a")).Build()
47 b := NewDepSetBuilder(TOPOLOGICAL).Direct(PathForTesting("b")).Transitive(a).Build()
[all …]
Ddepset_paths.go47 func NewDepSetBuilder(order DepSetOrder) *DepSetBuilder { func
/build/soong/cc/
Dtoolchain_library.go105 depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(outputFile).Build()
Dndk_prebuilt.go181 depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(lib).Build()
Dprebuilt.go126 depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(in).Build()
364 depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(out).Build()
Dsnapshot_prebuilt.go618 depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(in).Build()
Dlibrary.go572 TransitiveStaticLibrariesForOrdering: android.NewDepSetBuilder(android.TOPOLOGICAL).
1168 TransitiveStaticLibrariesForOrdering: android.NewDepSetBuilder(android.TOPOLOGICAL).
Dcc.go2903 transitiveStaticLibsBuilder := android.NewDepSetBuilder(android.TOPOLOGICAL)
/build/soong/java/
Dlint.go123 HTML: android.NewDepSetBuilder(android.POSTORDER),
124 Text: android.NewDepSetBuilder(android.POSTORDER),
125 XML: android.NewDepSetBuilder(android.POSTORDER),
/build/soong/rust/
Dlibrary.go500 depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(outputFile).Build()