Home
last modified time | relevance | path

Searched refs:masked (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/helper/
DItemTouchHelper.java1439 int masked = flags & ABS_HORIZONTAL_DIR_FLAGS; in convertToRelativeDirection() local
1440 if (masked == 0) { in convertToRelativeDirection()
1443 flags &= ~masked; //remove left / right. in convertToRelativeDirection()
1446 flags |= masked << 2; // START is 2 bits after LEFT, END is 2 bits after RIGHT. in convertToRelativeDirection()
1450 flags |= ((masked << 1) & ~ABS_HORIZONTAL_DIR_FLAGS); in convertToRelativeDirection()
1452 flags |= ((masked << 1) & ABS_HORIZONTAL_DIR_FLAGS) << 2; in convertToRelativeDirection()
1528 int masked = flags & RELATIVE_DIR_FLAGS; in convertToAbsoluteDirection() local
1529 if (masked == 0) { in convertToAbsoluteDirection()
1532 flags &= ~masked; //remove start / end in convertToAbsoluteDirection()
1535 flags |= masked >> 2; // START is 2 bits after LEFT, END is 2 bits after RIGHT. in convertToAbsoluteDirection()
[all …]
/frameworks/base/cmds/bootanimation/
DFORMAT.md160 * **RGBHEX1:** the first start color (masked by the R channel), specified as `#RRGGBB`.
161 * **RGBHEX2:** the second start color (masked by the G channel), specified as `#RRGGBB`.
162 * **RGBHEX3:** the third start color (masked by the B channel), specified as `#RRGGBB`.
163 * **RGBHEX4:** the forth start color (masked by the A channel), specified as `#RRGGBB`.
/frameworks/base/core/proto/android/service/
Dsensor_service.proto161 optional bool masked = 3; field
/frameworks/base/services/appwidget/java/com/android/server/appwidget/
DAppWidgetServiceImpl.java4845 public boolean setMaskedByQuietProfileLocked(boolean masked) { in setMaskedByQuietProfileLocked() argument
4847 maskedByQuietProfile = masked; in setMaskedByQuietProfileLocked()
4848 return masked != oldState; in setMaskedByQuietProfileLocked()
4852 public boolean setMaskedByLockedProfileLocked(boolean masked) { in setMaskedByLockedProfileLocked() argument
4854 maskedByLockedProfile = masked; in setMaskedByLockedProfileLocked()
4855 return masked != oldState; in setMaskedByLockedProfileLocked()
4859 public boolean setMaskedBySuspendedPackageLocked(boolean masked) { in setMaskedBySuspendedPackageLocked() argument
4861 maskedBySuspendedPackage = masked; in setMaskedBySuspendedPackageLocked()
4862 return masked != oldState; in setMaskedBySuspendedPackageLocked()
4865 public boolean setMaskedByStoppedPackageLocked(boolean masked) { in setMaskedByStoppedPackageLocked() argument
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavigationBar.java1253 final int masked = state1 & (StatusBarManager.DISABLE_HOME in disable() local
1257 if (masked != mDisabledFlags1) { in disable()
1258 mDisabledFlags1 = masked; in disable()