Searched refs:NewDepSet (Results 1 – 7 of 7) sorted by relevance
/build/soong/android/ |
D | depset_test.go | 72 return NewDepSet[Path](order, Paths{c, a, b}, nil) 81 return NewDepSet[Path](order, Paths{c, a, a, a, b}, nil) 90 subset := NewDepSet[Path](order, Paths{c, a, e}, nil) 91 return NewDepSet[Path](order, Paths{b, d}, []*DepSet[Path]{subset}) 280 NewDepSet(order1, nil, []*DepSet[Path]{NewDepSet[Path](order2, nil, nil)})
|
D | depset_generic.go | 69 func NewDepSet[T depSettableType](order DepSetOrder, direct []T, transitive []*DepSet[T]) *DepSet[T… func 143 return NewDepSet(b.order, b.direct, b.transitive)
|
D | license_metadata.go | 141 transitiveDeps := Paths(NewDepSet[Path](TOPOLOGICAL, nil, allDepMetadataDepSets).ToList()) 184 LicenseMetadataDepSet: NewDepSet(TOPOLOGICAL, Paths{licenseMetadataFile}, allDepMetadataDepSets),
|
D | module.go | 1810 m.installFilesDepSet = NewDepSet[InstallPath](TOPOLOGICAL, nil, dependencyInstallFiles) 1951 m.installFilesDepSet = NewDepSet[InstallPath](TOPOLOGICAL, m.installFiles, dependencyInstallFiles) 1952 …m.packagingSpecsDepSet = NewDepSet[PackagingSpec](TOPOLOGICAL, m.packagingSpecs, dependencyPackagi…
|
/build/soong/java/ |
D | aar.go | 773 staticResourcesNodes = android.NewDepSet(android.TOPOLOGICAL, nil, 775 sharedResourcesNodes = android.NewDepSet(android.TOPOLOGICAL, nil, 1070 return android.NewDepSet[rroDir](android.TOPOLOGICAL, nil, nil)
|
D | base.go | 1812 ProguardFlagsFiles: android.NewDepSet[android.Path]( 1817 UnconditionallyExportedProguardFlags: android.NewDepSet[android.Path]( 2004 j.transitiveLibsHeaderJars = android.NewDepSet(android.POSTORDER, directLibs, transitiveLibs) 2005 …j.transitiveStaticLibsHeaderJars = android.NewDepSet(android.POSTORDER, directStaticLibs, transiti… 2117 j.transitiveSrcFiles = android.NewDepSet(android.POSTORDER, mine, fromDeps)
|
/build/soong/rust/ |
D | rust.go | 1426 …mod.transitiveAndroidMkSharedLibs = android.NewDepSet[string](android.PREORDER, directAndroidMkSha…
|