Searched refs:currentFlags (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
H A DDeferredDisplayList.cpp160 static inline bool checkSide(const int currentFlags, const int newFlags, const int side, argument
162 bool currentClipExists = currentFlags & side;
207 const int currentFlags = mClipSideFlags; local
209 if (currentFlags != kClipSide_None || newFlags != kClipSide_None) {
212 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
214 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
218 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
220 if (!checkSide(currentFlags, newFlags, kClipSide_Bottom, boundsDelta)) return false;
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardViewStateManager.java157 final int currentFlags = mKeyguardWidgetPager.getSystemUiVisibility();
158 final int newFlags = isCameraPage ? (currentFlags | View.STATUS_BAR_DISABLE_SEARCH)
159 : (currentFlags & ~View.STATUS_BAR_DISABLE_SEARCH);

Completed in 57 milliseconds