Searched refs:flags (Results 151 - 175 of 348) sorted by relevance

1234567891011>>

/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventView.java1303 int flags = DateUtils.FORMAT_SHOW_DATE;
1306 flags |= DateUtils.FORMAT_SHOW_WEEKDAY;
1309 flags |= DateUtils.FORMAT_SHOW_TIME;
1311 flags |= DateUtils.FORMAT_24HOUR;
1318 .formatDateRange(mActivity, mF, startMillis, endMillis, flags, tz).toString();
1594 int flags = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_SHOW_YEAR
1608 dateString = DateUtils.formatDateTime(mActivity, millis, flags);
1616 int flags = DateUtils.FORMAT_SHOW_TIME;
1617 flags |= DateUtils.FORMAT_CAP_NOON_MIDNIGHT;
1619 flags |
[all...]
/packages/apps/ContactsCommon/
H A DAndroid.mk43 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
H A DAccountWithDataSet.java69 public void writeToParcel(Parcel dest, int flags) { argument
70 super.writeToParcel(dest, flags);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
H A DEmailServiceProxy.java218 * Specify the debug flags selected by the user. The service SHOULD log debug information as
221 * @param flags an integer whose bits represent logging flags as defined in DEBUG_* flags above
224 public void setLogging(final int flags) throws RemoteException { argument
228 mService.setLogging(flags);
/packages/apps/Exchange/
H A DAndroid.mk42 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DListDialogPreference.java302 public void writeToParcel(Parcel dest, int flags) { argument
303 super.writeToParcel(dest, flags);
/packages/apps/Settings/src/com/android/settings/widget/
H A DSwitchBar.java202 public void writeToParcel(Parcel out, int flags) { argument
203 super.writeToParcel(out, flags);
/packages/apps/SpareParts/src/com/android/spare_parts/
H A DSpareParts.java75 PreferenceGroup parentPreferenceGroup, String preferenceKey, int flags) {
90 if ((resolveInfo.activityInfo.applicationInfo.flags & ApplicationInfo.FLAG_SYSTEM)
74 updatePreferenceToSpecificActivityOrRemove(Context context, PreferenceGroup parentPreferenceGroup, String preferenceKey, int flags) argument
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DConversationCheckedSet.java295 public void writeToParcel(Parcel dest, int flags) { argument
297 dest.writeParcelableArray(values, flags);
H A DConversationViewState.java153 public void writeToParcel(Parcel dest, int flags) { argument
212 public void writeToParcel(Parcel dest, int flags) { argument
/packages/experimental/BugReportSender/src/com/android/bugreportsender/
H A DBugReportListActivity.java71 int flags = FileObserver.CREATE | FileObserver.MOVED_TO;
72 mObserver = new FileObserver(REPORT_DIR.getPath(), flags) {
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
H A DEntitySet.java310 public void writeToParcel(Parcel dest, int flags) { argument
314 dest.writeParcelable(delta, flags);
/packages/experimental/NotificationListenerSample/src/com/android/example/notificationlistener/
H A DListener.java169 if ((sbn.getNotification().flags & Notification.FLAG_AUTO_CANCEL) != 0 &&
193 if ((sbn.getNotification().flags & Notification.FLAG_AUTO_CANCEL) != 0) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyStylesSet.java131 final int flags = a.getInt(index, 0);
132 return flags | styleFlags | parentFlags;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidSpellCheckerSession.java58 final int flags = si.getSuggestionsAttributes();
59 if ((flags & SuggestionsInfo.RESULT_ATTR_IN_THE_DICTIONARY) == 0) {
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/header/
H A Dheader_read_write_utils.cpp112 BufferWithExtendableBuffer *const buffer, const DictionaryFlags flags,
114 return buffer->writeUintAndAdvancePosition(flags, HEADER_FLAG_SIZE, writingPos);
111 writeDictionaryFlags( BufferWithExtendableBuffer *const buffer, const DictionaryFlags flags, int *const writingPos) argument
/packages/providers/ContactsProvider/
H A DAndroid.mk33 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
/packages/apps/Settings/src/com/android/settings/applications/
H A DInstalledAppDetails.java253 && ((mAppEntry.info.flags&(ApplicationInfo.FLAG_SYSTEM
302 } else if ((mAppEntry.info.flags & ApplicationInfo.FLAG_EXTERNAL_STORAGE) != 0) {
340 mUpdatedSysApp = (mAppEntry.info.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) != 0;
341 final boolean isBundled = (mAppEntry.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0;
358 } else if ((mPackageInfo.applicationInfo.flags
423 } else if ((mPackageInfo.applicationInfo.flags & ApplicationInfo.FLAG_INSTALLED) == 0) {
527 } else if ((mAppEntry.info.flags & ApplicationInfo.FLAG_SYSTEM) != 0) {
559 if ((ainfo.flags & ApplicationInfo.FLAG_UPDATED_SYSTEM_APP) == 0) {
897 mShowUninstalled = (mAppEntry.info.flags&ApplicationInfo.FLAG_INSTALLED) == 0;
909 return (ainfo.flags
[all...]
/packages/apps/Exchange/src/com/android/exchange/service/
H A DEasService.java250 public void setLogging(final int flags) {
251 sProtocolLogging = ((flags & EmailServiceProxy.DEBUG_EXCHANGE_BIT) != 0);
252 sFileLogging = ((flags & EmailServiceProxy.DEBUG_FILE_BIT) != 0);
257 LogUtils.d(TAG, "IEmailService.setLogging %d, storing to shared pref", flags);
368 public int onStartCommand(final Intent intent, final int flags, final int startId) { argument
/packages/apps/Email/provider_src/com/android/email/mail/store/
H A DImapFolder.java701 final ImapList flags =
703 for (int i = 0, count = flags.size(); i < count; i++) {
704 final ImapString flag = flags.getStringOrEmpty(i);
1068 Flag[] flags = message.getFlags();
1069 if (flags.length > 0) {
1071 for (final Flag flag : flags) {
1173 public void setFlags(Message[] messages, Flag[] flags, boolean value) argument
1178 if (flags.length > 0) {
1180 for (int i = 0, count = flags.length; i < count; i++) {
1181 Flag flag = flags[
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java298 public int flags; field in class:NfcService.ReaderModeParams
935 public void setReaderMode(IBinder binder, IAppCallback callback, int flags, Bundle extras) argument
938 if (flags != 0) {
942 mReaderModeParams.flags = flags;
1494 if ((mReaderModeParams.flags & NfcAdapter.FLAG_READER_NFC_A) != 0)
1496 if ((mReaderModeParams.flags & NfcAdapter.FLAG_READER_NFC_B) != 0)
1498 if ((mReaderModeParams.flags & NfcAdapter.FLAG_READER_NFC_F) != 0)
1500 if ((mReaderModeParams.flags & NfcAdapter.FLAG_READER_NFC_V) != 0)
1502 if ((mReaderModeParams.flags
[all...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DMailbox.java385 // Bit field flags; each is defined below
386 // Warning: Do not read these flags until POP/IMAP/EAS all populate them
387 /** No flags set */
468 // Sync interval and flags are different based on mailbox type.
471 final int flags;
474 flags = Mailbox.FLAG_HOLDS_MAIL | Mailbox.FLAG_ACCEPTS_MOVED_MAIL;
479 flags = Mailbox.FLAG_HOLDS_MAIL;
484 flags = Mailbox.FLAG_HOLDS_MAIL;
500 box.mFlags = flags;
806 public void writeToParcel(Parcel dest, int flags) { argument
[all...]
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DPackageInstallerActivity.java138 msg = (mAppInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0
192 msg = (mAppInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0
359 if ((mSourceInfo.flags & ApplicationInfo.FLAG_PRIVILEGED) != 0) {
420 if ((mAppInfo.flags&ApplicationInfo.FLAG_INSTALLED) == 0) {
429 (mAppInfo != null) && ((mAppInfo.flags & ApplicationInfo.FLAG_SYSTEM) != 0));
596 (mSourceInfo.flags & ApplicationInfo.FLAG_PRIVILEGED) != 0) {
626 if ((applicationInfo.flags & ApplicationInfo.FLAG_PRIVILEGED) != 0) {
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaDocumentsProvider.java487 int flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_RECENTS;
489 flags |= Root.FLAG_EMPTY;
495 row.add(Root.COLUMN_FLAGS, flags);
502 int flags = Root.FLAG_LOCAL_ONLY | Root.FLAG_SUPPORTS_RECENTS;
504 flags |= Root.FLAG_EMPTY;
510 row.add(Root.COLUMN_FLAGS, flags);
517 int flags = Root.FLAG_LOCAL_ONLY;
519 flags |= Root.FLAG_EMPTY;
525 row.add(Root.COLUMN_FLAGS, flags);
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarViewAdapter.java408 int flags = DateUtils.FORMAT_SHOW_DATE | DateUtils.FORMAT_NO_YEAR;
410 flags |= DateUtils.FORMAT_ABBREV_MONTH;
415 weekEndTime, flags, mTimeZone).toString();

Completed in 638 milliseconds

1234567891011>>