Searched refs:masked (Results 1 – 5 of 5) sorted by relevance
1439 int masked = flags & ABS_HORIZONTAL_DIR_FLAGS; in convertToRelativeDirection() local1440 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() local1529 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 …]
160 * **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`.
161 optional bool masked = 3; field
4845 public boolean setMaskedByQuietProfileLocked(boolean masked) { in setMaskedByQuietProfileLocked() argument4847 maskedByQuietProfile = masked; in setMaskedByQuietProfileLocked()4848 return masked != oldState; in setMaskedByQuietProfileLocked()4852 public boolean setMaskedByLockedProfileLocked(boolean masked) { in setMaskedByLockedProfileLocked() argument4854 maskedByLockedProfile = masked; in setMaskedByLockedProfileLocked()4855 return masked != oldState; in setMaskedByLockedProfileLocked()4859 public boolean setMaskedBySuspendedPackageLocked(boolean masked) { in setMaskedBySuspendedPackageLocked() argument4861 maskedBySuspendedPackage = masked; in setMaskedBySuspendedPackageLocked()4862 return masked != oldState; in setMaskedBySuspendedPackageLocked()4865 public boolean setMaskedByStoppedPackageLocked(boolean masked) { in setMaskedByStoppedPackageLocked() argument[all …]
1253 final int masked = state1 & (StatusBarManager.DISABLE_HOME in disable() local1257 if (masked != mDisabledFlags1) { in disable()1258 mDisabledFlags1 = masked; in disable()