Searched defs:suppress (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/suppress/
H A DSuppressedTest.java17 package android.test.suitebuilder.examples.suppress;
H A DPartiallySuppressedTest.java17 package android.test.suitebuilder.examples.suppress;
/frameworks/support/transition/src/main/java/androidx/transition/
H A DViewGroupUtils.java42 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
44 ViewGroupUtilsApi18.suppressLayout(group, suppress);
46 ViewGroupUtilsApi14.suppressLayout(group, suppress);
H A DViewGroupUtilsApi18.java36 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
40 sSuppressLayoutMethod.invoke(group, suppress);
H A DViewGroupUtilsApi14.java43 static void suppressLayout(@NonNull ViewGroup group, boolean suppress) { argument
58 if (suppress) {
H A DVisibility.java567 private void suppressLayout(boolean suppress) { argument
568 if (mSuppressLayout && mLayoutSuppressed != suppress && mParent != null) {
569 mLayoutSuppressed = suppress;
570 ViewGroupUtils.suppressLayout(mParent, suppress);
/frameworks/base/core/java/android/transition/
H A DVisibility.java105 * This tells the Visibility transition to suppress layout during the transition and release
109 public void setSuppressLayout(boolean suppress) { argument
110 this.mSuppressLayout = suppress;
577 private void suppressLayout(boolean suppress) { argument
578 if (mSuppressLayout && mLayoutSuppressed != suppress && mParent != null) {
579 mLayoutSuppressed = suppress;
580 mParent.suppressLayout(suppress);
/frameworks/base/core/java/android/app/
H A DNotificationManager.java1165 * Visual effects to suppress for a notification that is filtered by Do Not Disturb mode.
1377 public static int toggleScreenOffEffectsSuppressed(int currentEffects, boolean suppress) { argument
1378 return toggleEffects(currentEffects, SCREEN_OFF_SUPPRESSED_EFFECTS, suppress);
1384 public static int toggleScreenOnEffectsSuppressed(int currentEffects, boolean suppress) { argument
1385 return toggleEffects(currentEffects, SCREEN_ON_SUPPRESSED_EFFECTS, suppress);
1388 private static int toggleEffects(int currentEffects, int[] effects, boolean suppress) { argument
1391 if (suppress) {
H A DNotification.java726 * Finally, a notification can be made {@link #VISIBILITY_SECRET}, which will suppress its icon
9585 * Specifies whether this notification should suppress showing a message over top of apps
9588 public TvExtender setSuppressShowOverApps(boolean suppress) { argument
9589 mSuppressShowOverApps = suppress;
/frameworks/base/core/java/android/view/
H A DViewGroup.java7000 * Tells this ViewGroup to suppress all layout() calls until layout
7007 public void suppressLayout(boolean suppress) { argument
7008 mSuppressLayout = suppress;
7009 if (!suppress) {
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java22326 public void suppressResizeConfigChanges(boolean suppress) throws RemoteException { argument
22329 mSuppressResizeConfigChanges = suppress;
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 472 milliseconds