/frameworks/opt/setupwizard/library/ |
D | build.gradle | 2 * 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 {
|
D | rules.gradle | 5 * 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 {
|
D | standalone-rules.gradle | 10 * 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 {
|
D | standalone.gradle | 11 * And then you can include the :setup-wizard-lib project as one of your dependencies 12 * dependencies {
|
/frameworks/opt/chips/ |
D | build.gradle | 13 dependencies { 19 return dependencies.project(path: projectName) 22 return dependencies.create(moduleName)
|
/frameworks/opt/photoviewer/ |
D | build.gradle | 13 dependencies { 20 return dependencies.project(path: projectName) 23 return dependencies.create(moduleName)
|
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/ |
D | build.gradle | 5 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/ |
D | CastExpr.java | 41 final List<Dependency> dependencies = constructDynamicChildrenDependencies(); in constructDependencies() local 42 for (Dependency dependency : dependencies) { in constructDependencies() 45 return dependencies; in constructDependencies()
|
D | ListenerExpr.java | 72 final List<Dependency> dependencies = new ArrayList<Dependency>(); in constructDependencies() local 75 dependencies.add(dependency); in constructDependencies() 76 return dependencies; in constructDependencies()
|
D | BracketExpr.java | 58 final List<Dependency> dependencies = constructDynamicChildrenDependencies(); in constructDependencies() local 59 for (Dependency dependency : dependencies) { in constructDependencies() 64 return dependencies; in constructDependencies()
|
D | MethodCallExpr.java | 125 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/ |
D | local-unit-tests.jd | 17 <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 …]
|
D | index.jd | 35 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/ |
D | PackageManagerServiceUtils.java | 170 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/ |
D | studioCompat.gradle | 25 …* * 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/ |
D | HeaderScrollingViewBehavior.java | 60 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()
|
D | FloatingActionButton.java | 667 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/ |
D | build.gradle | 5 dependencies { 33 dependencies {
|
/frameworks/volley/ |
D | build.gradle | 7 // tools versions across all dependencies to ensure a consistent build. 21 dependencies {
|
/frameworks/data-binding/extensions/baseAdapters/ |
D | build.gradle | 17 dependencies { 19 // NOTE: Do not place your application dependencies here; they belong 52 dependencies {
|
/frameworks/support/v7/mediarouter/ |
D | build.gradle | 8 // package it as a local dependencies inside the library aar. 13 setApiModuleDependencies(project, dependencies, gradle.ext.studioCompat.modules.mediaRouter.depende…
|
/frameworks/support/v4/ |
D | build.gradle | 6 dependencies { 21 setApiModuleDependencies(project, dependencies, gradle.ext.studioCompat.modules.v4.dependencies)
|
/frameworks/data-binding/ |
D | build.gradle | 8 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/ |
D | build.gradle | 29 dependencies { 35 dependencies {
|
/frameworks/opt/vcard/ |
D | build.gradle | 9 dependencies {
|