Home
last modified time | relevance | path

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

12

/aosp12/build/soong/android/
H A 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 {
H A 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)
H A Dpackaging.go266 func newPackagingSpecsDepSet(direct []PackagingSpec, transitive []*packagingSpecsDepSet) *packaging…
267 return &packagingSpecsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
H A Dmodule.go3137 func newInstallPathsDepSet(direct InstallPaths, transitive []*installPathsDepSet) *installPathsDepS…
3138 return &installPathsDepSet{*newDepSet(TOPOLOGICAL, direct, transitive)}
/aosp12/build/make/tools/
H A 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
/aosp12/build/bazel/json_module_graph/
H A 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
/aosp12/
H A DBUILD2 # 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
/aosp12/build/bazel/
H A 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
/aosp12/build/bazel/rules/
H A 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
H A Dcc_object.bzl18 # The merged compilation outputs for this cc_object and its transitive
H A Dcc_library_static.bzl114 transitive = [
/aosp12/packages/modules/GeoTZ/geotz_lookup/
H A Djarjar-rules.txt1 # Move com.google.common.geometry and any transitive dependencies on guava to one side to avoid
/aosp12/frameworks/compile/mclinker/tools/mcld/
H A DAndroid.bp44 // Can be removed once soong supports transitive static library dependencies
/aosp12/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/
H A Dcc_test.bzl.template44 transitive = [
/aosp12/build/bazel/bazel_skylib/
H A Dbzl_library.bzl28 all_files = depset(ctx.files.srcs, order = "postorder", transitive = deps_files)
/aosp12/build/soong/java/
H A Dhiddenapi_modular.go771 transitive := i.DependencyStubDexJarsByScope
772 transitive.addStubDexJarsByModule(i.StubDexJarsByScope)
773 return transitive
/aosp12/art/libartpalette/
H A DAndroid.bp118 "com.android.runtime", // due to the transitive dependency from linker
/aosp12/build/soong/cmd/pom2bp/
H A 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
/aosp12/system/iorap/
H A DAndroid.bp325 // only the last cc_binary should need the full transitive closure of the dependency graph.
409 // only the last cc_binary should need the full transitive closure of the dependency graph.
/aosp12/build/soong/cmd/pom2mk/
H A Dpom2mk.go366 Some Android.mk modules have transitive dependencies that must be specified when they are
/aosp12/system/apex/docs/
H A Dhowto.md91 However, if a transitive dependency has a stable ABI, it is not included
113 direct dependency or the transitive dependency has to correctly set the
H A DREADME.md294 APEX files automatically include transitive dependencies of native shared libs
/aosp12/build/bazel/rules_cc/examples/
H A Dexperimental_cc_shared_library.bzl101 return depset(direct = dynamic_deps, transitive = transitive_dynamic_deps)
/aosp12/bionic/
H A Dandroid-changes-for-ndk-developers.md46 had to call `dlopen` or `System.loadLibrary` on all transitive
75 the breadth-first transitive closure of the library and its DT_NEEDED
/aosp12/packages/modules/common/build/
H A Dallowed_deps.txt3 # The list tracks all direct and transitive dependencies that end up within any

12