Searched refs:transitive (Results 1 – 15 of 15) sorted by relevance
/build/soong/android/ |
D | depset_paths.go | 42 func NewDepSet(order DepSetOrder, direct Paths, transitive []*DepSet) *DepSet { 43 return &DepSet{*newDepSet(order, direct, transitive)} 60 func (b *DepSetBuilder) Transitive(transitive ...*DepSet) *DepSetBuilder { 61 b.depSetBuilder.Transitive(transitive)
|
D | depset_generic.go | 68 transitive []*depSet member 84 func newDepSet(order DepSetOrder, direct interface{}, transitive interface{}) *depSet { 86 transitiveDepSet := sliceToDepSets(transitive, order) 100 transitive: transitiveDepSet, 108 transitive []*depSet member 163 func (b *depSetBuilder) Transitive(transitive interface{}) *depSetBuilder { 164 depSets := sliceToDepSets(transitive, b.order) 165 b.transitive = append(b.transitive, depSets...) 172 return newDepSet(b.order, b.direct.Interface(), b.transitive) 186 for _, dep := range d.transitive {
|
D | packaging.go | 266 func newPackagingSpecsDepSet(direct []PackagingSpec, transitive []*packagingSpecsDepSet) *packaging… 267 return &packagingSpecsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
|
/build/bazel/json_module_graph/ |
D | README.md | 20 * `transitiveDeps` prints the names of the transitive dependencies of the given 22 * `fullTransitiveDeps` returns the full transitive dependencies of the given 25 in the module graph within the transitive closure of given module 28 * `variantTransitions` summarizes the variant transitions in the transitive
|
/build/make/tools/ |
D | java-layers.py | 46 self.transitive = set() 49 for d in self.transitive: 68 obj.transitive.add(upper) 81 dep.transitive.add(d.lower) 87 d.transitive.add(dep.lower) 89 dep.transitive = set([x+"." for x in dep.transitive]) 92 print "-->", dep.lower, "-->", dep.transitive
|
/build/bazel/ |
D | bazel.BUILD | 2 # file of a compilation action is in a subdirectory of one of the transitive 12 # becomes part of said transitive dependencies and thus every file is in a
|
/build/bazel/rules/ |
D | full_cc_library.bzl | 69 # declare all transitive static deps used by this target. It'd be great 70 # if a shared library could declare a transitive exported static dep
|
D | cc_object.bzl | 18 # The merged compilation outputs for this cc_object and its transitive
|
D | cc_library_static.bzl | 114 transitive = [
|
/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/ |
D | cc_test.bzl.template | 44 transitive = [
|
/build/bazel/bazel_skylib/ |
D | bzl_library.bzl | 28 all_files = depset(ctx.files.srcs, order = "postorder", transitive = deps_files)
|
/build/soong/java/ |
D | hiddenapi_modular.go | 771 transitive := i.DependencyStubDexJarsByScope 772 transitive.addStubDexJarsByModule(i.StubDexJarsByScope) 773 return transitive
|
/build/soong/cmd/pom2bp/ |
D | pom2bp.go | 601 Some Android.bp modules have transitive static dependencies that must be specified when they 605 Some Android.bp modules have transitive runtime dependencies that must be specified when they
|
/build/soong/cmd/pom2mk/ |
D | pom2mk.go | 366 Some Android.mk modules have transitive dependencies that must be specified when they are
|
/build/bazel/rules_cc/examples/ |
D | experimental_cc_shared_library.bzl | 101 return depset(direct = dynamic_deps, transitive = transitive_dynamic_deps)
|