HomeSort by relevance Sort by last modified time
    Searched full:newflags (Results 1 - 25 of 26) sorted by null

1 2

  /external/llvm/test/CodeGen/X86/
inline-asm-ptr-cast.ll 13 %newflags = alloca i64, align 8
17 store i64 -1, i64* %newflags, align 8
25 call void asm "pushfq \0Aandq $2, (%rsp) \0Aorq $3, (%rsp) \0Apopfq \0Aaddb $4, $1 \0Apushfq \0Apopq $0 \0A", "=*&rm,=*&rm,i,r,r,1,~{cc},~{dirflag},~{fpsr},~{flags}"(i64* %newflags, i8* %0, i64 -2, i64 %and, i8 %tmp1, i8 %tmp2) nounwind
  /frameworks/base/services/java/com/android/server/am/
CompatModePackages.java 190 int newFlags = ask ? (curFlags&~COMPAT_FLAG_DONT_ASK) : (curFlags|COMPAT_FLAG_DONT_ASK);
191 if (curFlags != newFlags) {
192 if (newFlags != 0) {
193 mPackages.put(packageName, newFlags);
266 int newFlags = curFlags;
268 newFlags |= COMPAT_FLAG_ENABLED;
270 newFlags &= ~COMPAT_FLAG_ENABLED;
277 newFlags = 0;
282 newFlags = 0;
285 if (newFlags != curFlags)
    [all...]
  /external/qemu/
iolooper-select.c 61 iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags )
66 int changed = oldflags ^ newflags;
69 if ((newflags & IOLOOPER_READ) != 0)
75 if ((newflags & IOLOOPER_WRITE) != 0)
iolooper.h 23 void iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags);
console.h 233 int linesize, PixelFormat pf, int newflags);
console.c     [all...]
  /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;
  /sdk/emulator/opengl/tests/event_injector/
iolooper-select.c 79 iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags )
84 int changed = oldflags ^ newflags;
87 if ((newflags & IOLOOPER_READ) != 0)
93 if ((newflags & IOLOOPER_WRITE) != 0)
iolooper.h 42 void iolooper_modify( IoLooper* iol, int fd, int oldflags, int newflags);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 394 int newFlags = 0;
395 newFlags |= ActionBar.DISPLAY_SHOW_TITLE;
397 newFlags |= ActionBar.DISPLAY_SHOW_HOME;
400 newFlags |= ActionBar.DISPLAY_SHOW_HOME;
401 newFlags |= ActionBar.DISPLAY_HOME_AS_UP;
402 newFlags |= ActionBar.DISPLAY_SHOW_CUSTOM;
406 if (current != newFlags) {
408 mActionBar.setDisplayOptions(newFlags, MASK);
  /external/webkit/Source/WebCore/platform/sql/chromium/
SQLiteFileSystemChromiumPosix.cpp 74 int newFlags = (desiredFlags & ~(SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE)) | SQLITE_OPEN_READONLY;
75 fd = PlatformBridge::databaseOpenFile(fileName, newFlags);
SQLiteFileSystemChromiumWin.cpp 61 int newFlags = (desiredFlags | SQLITE_OPEN_READONLY) & ~SQLITE_OPEN_READWRITE;
62 return chromiumOpen(0, fileName, id, newFlags, usedFlags);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupOptions.java 216 int newFlags = account.getFlags() &
219 newFlags |= Account.FLAGS_NOTIFY_NEW_MAIL;
222 newFlags |= Account.FLAGS_BACKGROUND_ATTACHMENTS;
224 account.setFlags(newFlags);
AccountSettingsFragment.java 640 int newFlags = mAccount.getFlags() &
645 newFlags |= mAccountBackgroundAttachments.isChecked() ?
653 newFlags |= mAccountNotify.isChecked() ? Account.FLAGS_NOTIFY_NEW_MAIL : 0;
659 newFlags |= Account.FLAGS_VIBRATE_ALWAYS;
661 newFlags |= Account.FLAGS_VIBRATE_WHEN_SILENT;
665 mAccount.setFlags(newFlags);
    [all...]
  /frameworks/native/services/surfaceflinger/
LayerBase.cpp 167 const uint32_t newFlags = (mCurrentState.flags & ~mask) | (flags & mask);
168 if (mCurrentState.flags == newFlags)
171 mCurrentState.flags = newFlags;
  /frameworks/base/core/java/android/widget/
PopupWindow.java     [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 388 * @param newFlags the new value for the flags
390 public void setFlags(int newFlags) {
391 mFlags = newFlags;
    [all...]
  /frameworks/base/media/java/android/media/
MediaCodec.java 126 int newOffset, int newSize, long newTimeUs, int newFlags) {
130 flags = newFlags;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 639 final int newFlags = 0;
640 final SuggestionsInfo newSi = new SuggestionsInfo(newFlags, EMPTY_STRING_ARRAY);
    [all...]
  /external/aac/libSBRdec/src/
env_calc.cpp 239 int newflags = 0; local
268 newflags |= mask; /* Set flag */
279 *harmFlagsPrev++ = newflags;
281 newflags = 0;
    [all...]
  /external/strace/
strace.c 229 int flags, newflags; local
238 newflags = flags | FD_CLOEXEC;
239 if (flags == newflags)
242 if (fcntl(fd, F_SETFD, newflags) < 0)
    [all...]
  /frameworks/base/core/java/android/view/
KeyEvent.java     [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
  /frameworks/base/services/java/com/android/server/pm/
PackageManagerService.java     [all...]

Completed in 2126 milliseconds

1 2