Home
last modified time | relevance | path

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

123456

/frameworks/opt/setupwizard/library/
Dbuild.gradle2 * Build the file with local dependencies. This is typically the build file you want to use when
4 * this will build the dependencies like support libraries from source, whereas standalone.gradle
11 * And then you can include the :setup-wizard-lib project as one of your dependencies
12 * dependencies {
18 // For builds in the Android tree we want to build the dependencies from source for reproducible
25 // dependencies {
Drules.gradle5 * This allows the dependencies to be configured so that for builds in the Android tree, the
6 * dependencies like support library is built directly from source, while for standalone builds they
33 dependencies {
34 // Read the dependencies from the "deps" map in the extra properties.
36 // For builds in the Android tree we want to build the dependencies from source
44 // fetch the dependencies from maven. For example in standalone.gradle define
57 dependencies {
66 dependencies {
Dstandalone-rules.gradle10 * And then you can include the :setup-wizard-lib project as one of your dependencies
11 * dependencies {
18 // dependencies from maven. To add a dependency, you want to specify something like this:
24 // dependencies {
Dstandalone.gradle11 * And then you can include the :setup-wizard-lib project as one of your dependencies
12 * dependencies {
/frameworks/opt/chips/
Dbuild.gradle13 dependencies {
19 return dependencies.project(path: projectName)
22 return dependencies.create(moduleName)
/frameworks/opt/photoviewer/
Dbuild.gradle13 dependencies {
20 return dependencies.project(path: projectName)
23 return dependencies.create(moduleName)
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/
Dbuild.gradle5 dependencies {
8 // NOTE: Do not place your application dependencies here; they belong
43 dependencies {
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
DCastExpr.java41 final List<Dependency> dependencies = constructDynamicChildrenDependencies(); in constructDependencies() local
42 for (Dependency dependency : dependencies) { in constructDependencies()
45 return dependencies; in constructDependencies()
DListenerExpr.java72 final List<Dependency> dependencies = new ArrayList<Dependency>(); in constructDependencies() local
75 dependencies.add(dependency); in constructDependencies()
76 return dependencies; in constructDependencies()
DBracketExpr.java58 final List<Dependency> dependencies = constructDynamicChildrenDependencies(); in constructDependencies() local
59 for (Dependency dependency : dependencies) { in constructDependencies()
64 return dependencies; in constructDependencies()
DMethodCallExpr.java125 final List<Dependency> dependencies = constructDynamicChildrenDependencies(); in constructDependencies() local
126 for (Dependency dependency : dependencies) { in constructDependencies()
131 return dependencies; in constructDependencies()
/frameworks/base/docs/html/training/testing/unit-testing/
Dlocal-unit-tests.jd17 <li><a href="#mocking-dependencies">Mock Android dependencies</a></li>
35 <p>If your unit test has no dependencies or only has simple dependencies on Android, you should run
49 <p>You also need to configure the testing dependencies for your project to use
51 interact with Android dependencies, include the <a href=
55 "{@docRoot}training/testing/unit-testing/local-unit-tests.html#mocking-dependencies">
56 Mocking Android dependencies</a>.</p>
59 libraries as dependencies:</p>
62 dependencies {
114 <h3 id="mocking-dependencies">Mock Android dependencies</h3>
122 You can use a mocking framework to stub out external dependencies in your code, to easily test that
[all …]
Dindex.jd35 can be used to isolate your unit from its dependencies.</p>
46 approach to run unit tests that have no dependencies on the Android framework or have dependencies
51 have Android dependencies which cannot be easily filled by using mock objects.</li>
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerServiceUtils.java170 Set<PackageParser.Package> dependencies = new HashSet<>(); in getPackagesForDexopt() local
172 dependencies.addAll(packageManagerService.findSharedNonSystemLibraries(p)); in getPackagesForDexopt()
174 if (!dependencies.isEmpty()) { in getPackagesForDexopt()
177 dependencies.removeAll(result); in getPackagesForDexopt()
179 result.addAll(dependencies); in getPackagesForDexopt()
/frameworks/support/buildSrc/
DstudioCompat.gradle25 …* * setApiModuleDependencies(project, dependencies, gradle.ext.studioCompat.modules.<PROJECT>.d…
53 dependencies : [":support-annotations"],
64 dependencies : [":support-v4"],
75 dependencies : [':support-appcompat-v7', ':support-palette-v7'],
84 * setting dependencies.
105 module.setParentModuleDependencies(projectConfig.dependencies)
/frameworks/support/design/src/android/support/design/widget/
DHeaderScrollingViewBehavior.java60 final List<View> dependencies = parent.getDependencies(child); in onMeasureChild() local
61 final View header = findFirstDependency(dependencies); in onMeasureChild()
102 final List<View> dependencies = parent.getDependencies(child); in layoutChild() local
103 final View header = findFirstDependency(dependencies); in layoutChild()
DFloatingActionButton.java667 final List<View> dependencies = parent.getDependencies(fab);
668 for (int i = 0, z = dependencies.size(); i < z; i++) {
669 final View view = dependencies.get(i);
683 final List<View> dependencies = parent.getDependencies(child);
684 for (int i = 0, count = dependencies.size(); i < count; i++) {
685 final View dependency = dependencies.get(i);
/frameworks/base/tests/UiBench/
Dbuild.gradle5 dependencies {
33 dependencies {
/frameworks/volley/
Dbuild.gradle7 // tools versions across all dependencies to ensure a consistent build.
21 dependencies {
/frameworks/data-binding/extensions/baseAdapters/
Dbuild.gradle17 dependencies {
19 // NOTE: Do not place your application dependencies here; they belong
52 dependencies {
/frameworks/support/v7/mediarouter/
Dbuild.gradle8 // package it as a local dependencies inside the library aar.
13 setApiModuleDependencies(project, dependencies, gradle.ext.studioCompat.modules.mediaRouter.depende…
/frameworks/support/v4/
Dbuild.gradle6 dependencies {
21 setApiModuleDependencies(project, dependencies, gradle.ext.studioCompat.modules.v4.dependencies)
/frameworks/data-binding/
Dbuild.gradle8 dependencies {
12 dependencies {
256 pom.dependencies.removeAll { dep ->
273 def deps = findChildByTag(asNode(), "dependencies")
275 throw new IllegalArgumentException("cannot find dependencies in pom file")
/frameworks/data-binding/compiler/
Dbuild.gradle29 dependencies {
35 dependencies {
/frameworks/opt/vcard/
Dbuild.gradle9 dependencies {

123456