Searched refs:exclude (Results 1 - 25 of 46) sorted by relevance

12

/frameworks/support/app-toolkit/buildSrc/
H A Ddependencies.gradle20 exclude group: 'androidx.annotation'
25 exclude group: 'net.bytebuddy'
29 exclude group: 'com.android.support'
30 exclude group: 'androidx.annotation'
35 exclude group: 'androidx.annotation'
36 exclude group: 'androidx.core'
37 exclude group: 'androidx.legacy'
38 exclude group: 'androidx.fragment'
39 exclude group: 'androidx.transition'
40 exclude grou
[all...]
H A Dinit.gradle201 // exclude all the signatures the jar might have
202 exclude "META-INF/*.SF"
203 exclude "META-INF/*.DSA"
204 exclude "META-INF/*.RSA"
248 exclude "**/R.class"
249 exclude "**/R\$*.class"
250 exclude "**/BuildConfig.class"
/frameworks/support/buildSrc/
H A Ddependencies.gradle20 exclude group: 'androidx.annotation'
25 exclude group: 'net.bytebuddy'
29 exclude group: 'com.android.support'
30 exclude group: 'androidx.annotation'
35 exclude group: 'androidx.annotation'
36 exclude group: 'androidx.core'
37 exclude group: 'androidx.legacy'
38 exclude group: 'androidx.fragment'
39 exclude group: 'androidx.transition'
40 exclude grou
[all...]
H A Dinit.gradle201 // exclude all the signatures the jar might have
202 exclude "META-INF/*.SF"
203 exclude "META-INF/*.DSA"
204 exclude "META-INF/*.RSA"
248 exclude "**/R.class"
249 exclude "**/R\$*.class"
250 exclude "**/BuildConfig.class"
/frameworks/data-binding/integration-tests/App With Spaces/app/
H A Dbuild.gradle41 exclude 'META-INF/services/javax.annotation.processing.Processor'
42 exclude 'META-INF/LICENSE.txt'
43 exclude 'META-INF/NOTICE.txt'
/frameworks/data-binding/integration-tests/MultiModuleTestApp/app/
H A Dbuild.gradle41 exclude 'META-INF/services/javax.annotation.processing.Processor'
42 exclude 'META-INF/LICENSE.txt'
43 exclude 'META-INF/NOTICE.txt'
/frameworks/data-binding/integration-tests/MultiModuleTestApp/testlibrary/
H A Dbuild.gradle40 exclude 'META-INF/services/javax.annotation.processing.Processor'
41 exclude 'META-INF/LICENSE.txt'
42 exclude 'META-INF/NOTICE.txt'
/frameworks/support/frameworks/support/samples/SupportSliceDemos/
H A Dbuild.gradle32 exclude group: 'androidx.annotation'
33 exclude group: 'androidx.fragment'
/frameworks/support/samples/SupportSliceDemos/
H A Dbuild.gradle32 exclude group: 'androidx.annotation'
33 exclude group: 'androidx.fragment'
/frameworks/support/room/integration-tests/kotlintestapp/
H A Dbuild.gradle51 exclude module: 'support-annotations'
52 exclude module: 'hamcrest-core'
55 exclude group: 'com.android.support', module: 'support-annotations'
56 exclude module: "hamcrest-core"
/frameworks/data-binding/integration-tests/IndependentLibrary/app/
H A Dbuild.gradle39 exclude 'META-INF/services/javax.annotation.processing.Processor'
40 exclude 'META-INF/LICENSE.txt'
41 exclude 'META-INF/NOTICE.txt'
/frameworks/opt/setupwizard/tools/gradle/
H A Ddocs.gradle22 exclude '**/R.java'
23 exclude '**/R.html', '**/R.*.html'
24 exclude '**/BuildConfig.java'
/frameworks/data-binding/gradlePlugin/src/main/java/android/databinding/tool/
H A DDataBindingExcludeGeneratedTask.java38 * Task to exclude generated classes from the Jar task of a library project
87 exclude(infoClassAsClass + ".class");
88 exclude(EXCLUDE_PATTERN);
90 exclude(appPkgAsClass + "/BR.*");
91 exclude("android/databinding/DynamicUtil.class");
94 exclude(klass.replace('.', '/') + ".class");
101 private void exclude(String pattern) { method in class:DataBindingExcludeGeneratedTask
102 L.d("exclude %s", pattern);
103 packageTask.exclude(pattern);
107 Preconditions.checkNotNull(generatedClassListFile, "Data binding exclude generate
[all...]
/frameworks/native/libs/ui/
H A DRect.cpp113 Rect Rect::reduce(const Rect& exclude) const {
117 mask |= (exclude.left > left) ? 1 : 0;
118 mask |= (exclude.top > top) ? 2 : 0;
119 mask |= (exclude.right < right) ? 4 : 0;
120 mask |= (exclude.bottom < bottom) ? 8 : 0;
130 result.right = min(result.right, exclude.left);
132 result.bottom = min(result.bottom, exclude.top);
134 result.left = max(result.left, exclude.right);
136 result.top = max(result.top, exclude.bottom);
/frameworks/base/core/java/android/app/
H A DIAppTask.aidl30 void setExcludeFromRecents(boolean exclude);
/frameworks/data-binding/compilationTests/src/test/resources/
H A Dmodule_build.gradle39 exclude 'META-INF/services/javax.annotation.processing.Processor'
/frameworks/data-binding/extensions/baseAdapters/
H A Dbuild.gradle49 exclude 'META-INF/services/javax.annotation.processing.Processor'
50 exclude 'META-INF/LICENSE.txt'
51 exclude 'META-INF/NOTICE.txt'
/frameworks/data-binding/extensions/library/
H A Dbuild.gradle58 exclude 'META-INF/services/javax.annotation.processing.Processor'
59 exclude 'META-INF/LICENSE.txt'
60 exclude 'META-INF/NOTICE.txt'
61 exclude 'android/databinding/DataBinderMapper.class'
162 tree.exclude 'android/databinding/DataBindingComponent.*'
163 tree.exclude 'android/databinding/DataBinderMapper.*'
/frameworks/data-binding/samples/BindingDemo/app/
H A Dbuild.gradle44 exclude 'META-INF/services/javax.annotation.processing.Processor'
/frameworks/support/navigation/integration-tests/safeargs-testapp/buildSrc/
H A Dbuild.gradle27 includes: ['**/*.java', '**/*.kt'], exclude: 'integration-tests/*'))
/frameworks/support/viewpager2/
H A Dbuild.gradle34 exclude group: 'androidx.viewpager2', module: 'viewpager2'
/frameworks/base/core/java/android/transition/
H A DTransitionSet.java277 public Transition excludeTarget(View target, boolean exclude) { argument
279 mTransitions.get(i).excludeTarget(target, exclude);
281 return super.excludeTarget(target, exclude);
285 public Transition excludeTarget(String targetName, boolean exclude) { argument
287 mTransitions.get(i).excludeTarget(targetName, exclude);
289 return super.excludeTarget(targetName, exclude);
293 public Transition excludeTarget(int targetId, boolean exclude) { argument
295 mTransitions.get(i).excludeTarget(targetId, exclude);
297 return super.excludeTarget(targetId, exclude);
301 public Transition excludeTarget(Class type, boolean exclude) { argument
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/transition/
H A DTransitionHelper.java228 public static void exclude(Object transition, int targetId, boolean exclude) { argument
230 ((Transition) transition).excludeTarget(targetId, exclude);
234 public static void exclude(Object transition, View targetView, boolean exclude) { argument
236 ((Transition) transition).excludeTarget(targetView, exclude);
240 public static void excludeChildren(Object transition, int targetId, boolean exclude) { argument
242 ((Transition) transition).excludeChildren(targetId, exclude);
246 public static void excludeChildren(Object transition, View targetView, boolean exclude) { argument
248 ((Transition) transition).excludeChildren(targetView, exclude);
[all...]
/frameworks/support/transition/src/main/java/androidx/transition/
H A DTransitionSet.java338 public Transition excludeTarget(@NonNull View target, boolean exclude) { argument
340 mTransitions.get(i).excludeTarget(target, exclude);
342 return super.excludeTarget(target, exclude);
347 public Transition excludeTarget(@NonNull String targetName, boolean exclude) { argument
349 mTransitions.get(i).excludeTarget(targetName, exclude);
351 return super.excludeTarget(targetName, exclude);
356 public Transition excludeTarget(int targetId, boolean exclude) { argument
358 mTransitions.get(i).excludeTarget(targetId, exclude);
360 return super.excludeTarget(targetId, exclude);
365 public Transition excludeTarget(@NonNull Class type, boolean exclude) { argument
[all...]
/frameworks/opt/net/wifi/tests/wifitests/
H A DAndroid.mk25 # Provide jack a list of classes to exclude form code coverage
30 # Generated exclude list: com.android.server.wifi.Test*,com.android.server.wifi.AnotherTest*
42 # Convert class name list to jacoco exclude list

Completed in 418 milliseconds

12