HomeSort by relevance Sort by last modified time
    Searched defs:currentFlags (Results 1 - 3 of 3) sorted by null

  /frameworks/base/libs/hwui/
DeferredDisplayList.cpp 163 static inline bool checkSide(const int currentFlags, const int newFlags, const int side,
165 bool currentClipExists = currentFlags & side;
206 const int currentFlags = mClipSideFlags;
208 if (currentFlags != kClipSide_None || newFlags != kClipSide_None) {
211 if (!checkSide(currentFlags, newFlags, kClipSide_Left, boundsDelta)) return false;
213 if (!checkSide(currentFlags, newFlags, kClipSide_Top, boundsDelta)) return false;
217 if (!checkSide(currentFlags, newFlags, kClipSide_Right, boundsDelta)) return false;
219 if (!checkSide(currentFlags, newFlags, kClipSide_Bottom, boundsDelta)) return false;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DynamicBinaryDictIOUtils.java 142 final int currentFlags = dictBuffer.readUnsignedByte();
144 dictBuffer.put((byte)(FormatSpec.FLAG_IS_MOVED | (currentFlags
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardViewStateManager.java 145 final int currentFlags = mKeyguardWidgetPager.getSystemUiVisibility();
146 final int newFlags = isCameraPage ? (currentFlags | View.STATUS_BAR_DISABLE_SEARCH)
147 : (currentFlags & ~View.STATUS_BAR_DISABLE_SEARCH);

Completed in 2656 milliseconds