Home
last modified time | relevance | path

Searched refs:dependencies (Results 1 – 25 of 66) sorted by relevance

123

/frameworks/base/core/java/android/animation/
DAnimatorSet.java569 if (node.dependencies == null || node.dependencies.size() == 0) { in start()
572 int numDependencies = node.dependencies.size(); in start()
574 Dependency dependency = node.dependencies.get(j); in start()
578 node.tmpDependencies = (ArrayList<Dependency>) node.dependencies.clone(); in start()
666 nodeClone.dependencies = null; in clone()
688 if (node.dependencies != null) { in clone()
689 clone.dependencies = new ArrayList<Dependency>(node.dependencies.size()); in clone()
690 final int depSize = node.dependencies.size(); in clone()
692 final Dependency dependency = node.dependencies.get(i); in clone()
695 clone.dependencies.add(cloneDependency); in clone()
[all …]
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
Dbuild.gradle5 dependencies {
8 // NOTE: Do not place your application dependencies here; they belong
41 dependencies {
/frameworks/support/v7/mediarouter/
Dbuild.gradle6 dependencies {
12 // package it as a local dependencies inside the library aar.
29 dependencies {
/frameworks/base/docs/html/tools/building/
Dplugin-for-gradle.jd35 dependencies and allows you to define custom build logic. Android Studio uses a Gradle wrapper
55 <li><em>Dependencies</em>. The build system manages project dependencies and supports
56 dependencies from your local filesystem and from remote repositories. This prevents you
57 from having to search, download, and copy binary packages for your dependencies into your
117 <em>repositories</em> and <em>dependencies</em>. This allows different projects to use different
128 dependencies {
131 // NOTE: Do not place your application dependencies here: they belong
171 <li>dependencies</li>
175 manifest properties, creates two build types: release and debug, and declares several dependencies.
204 dependencies {
[all …]
Dconfiguring-gradle.jd11 <li><a href="#buildFileBasics">Declare dependencies</a></li>
68 dependencies {
104 <p>The <code>dependencies</code> element is outside and after the <code>android</code> element.
105 This element declares the dependencies for this module. Dependencies are covered in the following
116 <h3 id="declareDeps">Declare dependencies</h3>
119 dependencies:</p>
123 dependencies {
135 <p>Each of these dependencies is described below. The build system adds all the
136 <code>compile</code> dependencies to the compilation classpath and includes them in the final
139 <h4>Module dependencies</h4>
[all …]
Dmultidex.jd131 <strong>Review your app's direct and transitive dependencies</strong> - Ensure any large library
134 because a few utility methods were useful. Reducing your app code dependencies can often help
197 dependencies {
331 dependencies {
345 <li>Build each module of the application (including dependencies) as separate dex files. This is
438 dependencies {
/frameworks/volley/
Dbuild.gradle5 dependencies {
/frameworks/av/include/cpustats/
DREADME.txt6 * should be portable to host; avoid Android OS dependencies without a conditional
/frameworks/support/v7/gridlayout/
Dbuild.gradle5 dependencies {
/frameworks/support/v7/appcompat/
Dbuild.gradle5 dependencies {
/frameworks/multidex/instrumentation/
Dbuild.gradle22 dependencies {
/frameworks/support/v13/
Dbuild.gradle7 // create and configure the sourcesets/dependencies for platform-specific code.
43 dependencies {
/frameworks/base/core/java/android/widget/
DRelativeLayout.java1691 final SparseArray<Node> dependencies = dependent.dependencies; in getSortedViews() local
1693 dependencies.remove(key); in getSortedViews()
1694 if (dependencies.size() == 0) { in getSortedViews()
1725 node.dependencies.clear(); in findRoots()
1750 node.dependencies.put(rule, dependency); in findRoots()
1761 if (node.dependencies.size() == 0) roots.addLast(node); in findRoots()
1789 final SparseArray<Node> dependencies = new SparseArray<Node>(); field in RelativeLayout.DependencyGraph.Node
1812 dependencies.clear(); in release()
/frameworks/support/v4/
Dbuild.gradle11 // create and configure the sourcesets/dependencies for platform-specific code.
57 dependencies {
/frameworks/compile/slang/
DRSCCOptions.td111 HelpText<"Specify output directory for dependencies output">;
115 HelpText<"Additional targets to show up in dependencies output">;
/frameworks/base/docs/html/tools/support-library/
Dsetup.jd89 classpath dependencies within your development environment. You must perform this procedure for
136 <li>Add the support library to the {@code dependencies} section. For example, to add the v4
139 dependencies {
231 <li>Add the support library feature project identifier to the {@code dependencies} section.
233 {@code compile "com.android.support:appcompat-v7:18.0.+"} to the dependencies section, as
236 dependencies {
/frameworks/support/v7/palette/
Dbuild.gradle5 dependencies {
/frameworks/base/docs/html/tools/revisions/
Dstudio.jd185 <li>Fixed dependency for tests of library project to properly include all the dependencies
187 <li>Fixed case where two dependencies have the same leaf name.</li>
205 <li>Basic support for .aar library dependencies (e.g. using a library without a local copy of
213 <li>Fixes to handle updating the merged resources when the set of module dependencies
/frameworks/support/v7/recyclerview/
Dbuild.gradle5 dependencies {
/frameworks/base/docs/html/training/material/
Ddrawables.jd70 <a href="{@docRoot}sdk/installing/studio-build.html#dependencies">Gradle dependency</a> to your
74 dependencies {
Dlists-cards.jd257 <a href="{@docRoot}sdk/installing/studio-build.html#dependencies">Gradle dependencies</a> to your
261 dependencies {
/frameworks/support/v17/leanback/
Dbuild.gradle5 dependencies {
/frameworks/base/docs/html/training/activity-testing/
Dactivity-unit-testing.jd29 (which could be a method, class, or component), without dependencies on system
48 dependencies, you can use mock objects from a mocking
/frameworks/base/docs/html/sdk/installing/
Dstudio-build.jd57 resources from the configured product flavors, build types, and dependencies. If different
59 dependencies override build types, which override product flavors, which override the main source
/frameworks/compile/libbcc/
DREADME.rst136 header, string pool, dependencies table, relocation table, exported
151 * **Dependencies Table** (MCO_DependencyTable) - The dependencies table.

123