Searched refs:note (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Email/src/com/android/email/activity/setup/
H A DDuplicateAccountDialogFragment.java40 public static DuplicateAccountDialogFragment newInstance(String note) { argument
43 b.putString(BUNDLE_KEY_ACCOUNT_NAME, note);
H A DAccountSetupBasics.java529 if (mProvider.note != null) {
531 NoteDialogFragment.newInstance(mProvider.note);
701 * Dialog fragment to show "setup note" dialog
712 public static NoteDialogFragment newInstance(String note) { argument
715 b.putString(BUNDLE_KEY_NOTE, note);
723 final String note = getArguments().getString(BUNDLE_KEY_NOTE);
728 .setMessage(note)
H A DAccountSettingsUtils.java125 provider.note = getXmlAttribute(context, xml, "note");
227 public String note; field in class:AccountSettingsUtils.Provider
/packages/apps/Email/tests/src/com/android/email/
H A DVendorPolicyLoaderTest.java157 assertTrue(p.note == null || p.note.length() > 0); // no empty string
/packages/apps/Email/src/com/android/email/
H A DVendorPolicyLoader.java58 private static final String FIND_PROVIDER_NOTE = "findProvider.note";
228 p.note = out.getString(FIND_PROVIDER_NOTE);
/packages/apps/Exchange/exchange2/src/com/android/exchange/adapter/
H A DContactsSyncAdapter.java1507 public void addNote(Entity entity, String note) { argument
1510 if (note == null) return;
1511 note = note.replaceAll("\r\n", "\n");
1512 if (cv != null && cvCompareString(cv, Note.NOTE, note)) {
1518 int len = note.length();
1521 char c = note.charAt(i);
1528 builder.withValue(Note.NOTE, note);
1720 // Even when there is no local note, we must explicitly upsync an empty note,
[all...]
/packages/apps/Phone/src/com/android/phone/
H A DNotificationMgr.java457 private static void configureLedNotification(Notification note) { argument
458 note.flags |= Notification.FLAG_SHOW_LIGHTS;
459 note.defaults |= Notification.DEFAULT_LIGHTS;
617 * (But note that the status bar icon is *never* shown while the in-call UI
641 * (But note that the status bar icon is *never* shown while the in-call UI
683 * (But note that the status bar icon is *never* shown while the in-call UI
742 * Also note that this method is safe to call even if the phone isn't
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DBaseContactsProvider2Test.java538 protected Uri insertNote(long rawContactId, String note) { argument
542 values.put(Note.NOTE, note);

Completed in 183 milliseconds