Home
last modified time | relevance | path

Searched refs:transitive (Results 1 – 15 of 15) sorted by relevance

/build/soong/android/
Ddepset_paths.go42 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)
Ddepset_generic.go68 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 {
Dpackaging.go266 func newPackagingSpecsDepSet(direct []PackagingSpec, transitive []*packagingSpecsDepSet) *packaging…
267 return &packagingSpecsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
/build/bazel/json_module_graph/
DREADME.md20 * `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/
Djava-layers.py46 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/
Dbazel.BUILD2 # 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/
Dfull_cc_library.bzl69 # 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
Dcc_object.bzl18 # The merged compilation outputs for this cc_object and its transitive
Dcc_library_static.bzl114 transitive = [
/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/
Dcc_test.bzl.template44 transitive = [
/build/bazel/bazel_skylib/
Dbzl_library.bzl28 all_files = depset(ctx.files.srcs, order = "postorder", transitive = deps_files)
/build/soong/java/
Dhiddenapi_modular.go771 transitive := i.DependencyStubDexJarsByScope
772 transitive.addStubDexJarsByModule(i.StubDexJarsByScope)
773 return transitive
/build/soong/cmd/pom2bp/
Dpom2bp.go601 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/
Dpom2mk.go366 Some Android.mk modules have transitive dependencies that must be specified when they are
/build/bazel/rules_cc/examples/
Dexperimental_cc_shared_library.bzl101 return depset(direct = dynamic_deps, transitive = transitive_dynamic_deps)