HomeSort by relevance Sort by last modified time
    Searched refs:newFlags (Results 1 - 25 of 63) sorted by null

1 2 3

  /packages/apps/Launcher3/src/com/android/launcher3/util/
SystemUiController.java 60 int newFlags = oldFlags;
64 newFlags |= View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR;
66 newFlags &= ~(View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR);
71 newFlags |= View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR;
73 newFlags &= ~(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
76 if (newFlags != oldFlags) {
77 mWindow.getDecorView().setSystemUiVisibility(newFlags);
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 248 boolean[] newFlags = new boolean [length];
249 System.arraycopy (declared, 0, newFlags, 0, declared.length);
250 declared = newFlags;
252 newFlags = new boolean [length];
253 System.arraycopy (specified, 0, newFlags, 0, specified.length);
254 specified = newFlags;
  /frameworks/base/services/core/java/com/android/server/am/
CompatModePackages.java 249 int newFlags = ask ? (curFlags&~COMPAT_FLAG_DONT_ASK) : (curFlags|COMPAT_FLAG_DONT_ASK);
250 if (curFlags != newFlags) {
251 if (newFlags != 0) {
252 mPackages.put(packageName, newFlags);
262 final int newFlags = notify ? (curFlags&~UNSUPPORTED_ZOOM_FLAG_DONT_NOTIFY) :
264 if (curFlags != newFlags) {
265 if (newFlags != 0) {
266 mPackages.put(packageName, newFlags);
337 int newFlags = curFlags;
339 newFlags |= COMPAT_FLAG_ENABLED
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsAbiFlags.cpp 265 const MipsAbiFlags& newFlags) {
267 oldFlags = newFlags;
271 if (newFlags.m_IsaLevel > oldFlags.m_IsaLevel)
272 oldFlags.m_IsaLevel = newFlags.m_IsaLevel;
274 oldFlags.m_IsaRev = std::max(oldFlags.m_IsaRev, newFlags.m_IsaRev);
275 oldFlags.m_GprSize = std::max(oldFlags.m_GprSize, newFlags.m_GprSize);
276 oldFlags.m_Cpr1Size = std::max(oldFlags.m_Cpr1Size, newFlags.m_Cpr1Size);
277 oldFlags.m_Cpr2Size = std::max(oldFlags.m_Cpr2Size, newFlags.m_Cpr2Size);
278 oldFlags.m_Ases |= newFlags.m_Ases;
279 oldFlags.m_Flags1 |= newFlags.m_Flags1
    [all...]
MipsAbiFlags.h 47 const MipsAbiFlags& newFlags);
  /external/r8/src/main/java/com/android/tools/r8/ir/desugar/
InterfaceProcessor.java 58 DexAccessFlags newFlags = new DexAccessFlags(virtual.accessFlags.get());
59 newFlags.unsetBridge();
60 newFlags.setStatic();
69 newFlags, virtual.annotations, virtual.parameterAnnotations, code));
ClassProcessor.java 102 DexAccessFlags newFlags = new DexAccessFlags(defaultMethod.accessFlags.get());
103 return new DexEncodedMethod(newMethod, newFlags,
  /frameworks/base/libs/hwui/
LayerBuilder.cpp 88 static inline bool checkSide(const int currentFlags, const int newFlags, const int side,
91 bool newClipExists = newFlags & side;
154 const int newFlags = op->computedState.clipSideFlags;
155 if (currentFlags != OpClipSideFlags::None || newFlags != OpClipSideFlags::None) {
158 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Left, boundsDelta)) return false;
160 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Top, boundsDelta)) return false;
164 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Right, boundsDelta)) return false;
166 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Bottom, boundsDelta)) return false;
  /external/skia/src/core/
SkFont.cpp 51 sk_sp<SkFont> SkFont::makeWithFlags(uint32_t newFlags) const {
53 this->getSkewX(), this->getMaskType(), newFlags);
  /external/deqp/framework/delibs/deutil/
deFile.c 120 int newFlags = (flags & DE_FILE_NONBLOCKING) ? (oldFlags | O_NONBLOCK) : (oldFlags & ~O_NONBLOCK);
121 if (fcntl(file->fd, F_SETFL, newFlags) != 0)
128 int newFlags = (flags & DE_FILE_CLOSE_ON_EXEC) ? (oldFlags | FD_CLOEXEC) : (oldFlags & ~FD_CLOEXEC);
129 if (fcntl(file->fd, F_SETFD, newFlags) != 0)
deSocket.c 477 int newFlags = (flags & DE_SOCKET_NONBLOCKING) ? (oldFlags | O_NONBLOCK) : (oldFlags & ~O_NONBLOCK);
478 if (fcntl(fd, F_SETFL, newFlags) != 0)
487 int newFlags = (flags & DE_SOCKET_CLOSE_ON_EXEC) ? (oldFlags | FD_CLOEXEC) : (oldFlags & ~FD_CLOEXEC);
488 if (fcntl(fd, F_SETFD, newFlags) != 0)
  /external/skia/include/core/
SkFont.h 132 sk_sp<SkFont> makeWithFlags(uint32_t newFlags) const;
  /frameworks/base/services/core/java/com/android/server/pm/
PermissionsState.java 421 final int newFlags = permissionData.getFlags(userId);
423 && (newFlags & PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED) != 0) {
429 && (newFlags & PackageManager.FLAG_PERMISSION_REVIEW_REQUIRED) == 0) {
752 final int newFlags = flagValues & flagMask;
757 userState.mFlags = (userState.mFlags & ~flagMask) | newFlags;
762 } else if (newFlags != 0) {
764 userState.mFlags = newFlags;
DefaultPermissionGrantPolicy.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 321 int newFlags = 0;
323 newFlags |= ActionBar.DISPLAY_SHOW_HOME;
325 newFlags |= ActionBar.DISPLAY_HOME_AS_UP;
335 newFlags |= ActionBar.DISPLAY_SHOW_TITLE;
357 if (current != newFlags) {
359 mActionBar.setDisplayOptions(newFlags, MASK);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSession.java 92 final int newFlags = 0;
93 final SuggestionsInfo newSi = new SuggestionsInfo(newFlags, EMPTY_STRING_ARRAY);
  /frameworks/base/services/core/java/com/android/server/power/
Notifier.java 245 int newFlags, String newTag, String newPackageName, int newOwnerUid,
249 final int newMonitorType = getBatteryStatsWakeLockMonitorType(newFlags);
253 Slog.d(TAG, "onWakeLockChanging: flags=" + newFlags + ", tag=\"" + newTag
260 && (newFlags & PowerManager.UNIMPORTANT_FOR_LOGGING) != 0;
270 onWakeLockAcquired(newFlags, newTag, newPackageName, newOwnerUid, newOwnerPid,
  /external/deqp/modules/glshared/
glsFboUtil.cpp 93 void FormatDB::addCoreFormat (ImageFormat format, FormatFlags newFlags)
96 flags = FormatFlags(flags | newFlags);
99 void FormatDB::addExtensionFormat (ImageFormat format, FormatFlags newFlags, const std::set<std::string>& requiredExtensions)
105 flags = FormatFlags(flags | newFlags);
112 extensionRecord.flags = newFlags;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupFinal.java     [all...]
AccountSettingsFragment.java 384 int newFlags = mAccount.getFlags() & ~(Account.FLAGS_BACKGROUND_ATTACHMENTS);
386 newFlags |= (Boolean) newValue ?
389 cv.put(AccountColumns.FLAGS, newFlags);
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java     [all...]
  /frameworks/base/services/core/java/com/android/server/
AlarmManagerService.java 453 int newFlags = 0;
469 newFlags |= alarm.flags;
477 flags = newFlags;
493 int newFlags = 0;
509 newFlags |= alarm.flags;
516 flags = newFlags;
525 int newFlags = 0;
543 newFlags |= alarm.flags;
552 flags = newFlags;
    [all...]
  /frameworks/base/core/java/android/view/
KeyEvent.java     [all...]
  /frameworks/base/media/java/android/media/
MediaCodec.java     [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 414 * @param newFlags the new value for the flags
416 public void setFlags(int newFlags) {
417 mFlags = newFlags;
    [all...]

Completed in 886 milliseconds

1 2 3