Searched refs:save (Results 1 - 25 of 114) sorted by path

12345

/packages/apps/Browser/src/com/android/browser/
H A DAddBookmarkPage.java259 } else if (save()) {
747 * Runnable to save a bookmark, so it can be performed in its own thread.
841 boolean save() { method in class:AddBookmarkPage
872 // can't save their bookmark. If it was null, we'll assume
H A DTab.java1570 // save the WebView to call destroy() after detach it from the tab
1970 Log.w(LOGTAG, "Failed to save back/forward list for "
2056 Log.w(LOGTAG, "Failed to save view state", e);
2101 int state = c.save();
H A DTabBar.java404 int state = canvas.save();
/packages/apps/Browser/src/com/android/browser/view/
H A DBasePieView.java123 final int state = canvas.save();
H A DPieMenu.java261 state = canvas.save();
270 state = canvas.save();
290 int state = canvas.save();
/packages/apps/Calculator/src/com/android/calculator2/
H A DCalculator.java232 mPersist.save();
H A DPersist.java69 public void save() { method in class:Persist
/packages/apps/Calendar/src/com/android/calendar/
H A DDayView.java2081 canvas.save();
2092 canvas.save();
3464 canvas.save();
/packages/apps/Camera/src/com/android/camera/ui/
H A DFaceView.java128 canvas.save();
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DContactEditorActivity.java81 // the save operation was completed. The activity should remain closed then.
154 mFragment.save(SaveMode.CLOSE);
H A DGroupEditorActivity.java111 if (!mFragment.save(SaveMode.CLOSE)) {
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DContactEditorFragment.java134 // TODO: Move this into a common utils class or the save service because the contact and
335 // If anything was left unsaved, save it now but keep the editor open.
337 save(SaveMode.RELOAD);
868 // This supports the keyboard shortcut to save changes to a contact but shouldn't be visible
869 // because the custom action bar contains the "save" button now (not the overflow menu).
890 return save(SaveMode.CLOSE);
926 return save(SaveMode.JOIN);
1022 public boolean save(int saveMode) { method in class:ContactEditorFragment
1092 // When this Fragment is closed we don't want it to auto-save
1098 save(SaveMod
[all...]
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupEditorFragment.java505 save(SaveMode.CLOSE);
536 // When this Fragment is closed we don't want it to auto-save
574 public boolean save(int saveMode) { method in class:GroupEditorFragment
593 // If the activity is not there anymore, then we can't continue with the save process.
602 // Create the save intent to create the group and add members at the same time
669 throw new IllegalStateException("Unsupported save mode " + saveMode);
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DPinnedHeaderListView.java466 canvas.save();
509 int saveCount = canvas.save();
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DAccount.java291 * Set the description. Be sure to call save() to commit to database.
306 * Set the Email address for this account. Be sure to call save() to commit to database.
321 * Set the sender's name. Be sure to call save() to commit to database.
345 * Set the minutes per check (for polling). Be sure to call save() to commit to database.
363 * Set the sync lookback window. Be sure to call save() to commit to database.
751 * @see com.android.email.provider.EmailContent#save(android.content.Context)
754 public Uri save(Context context) { method in class:Account
759 // possible, and (b) override (and throw) if anyone tries to call save() or update()
763 return super.save(context);
H A DEmailContent.java163 public Uri save(Context context) { method in class:EmailContent
835 * @see com.android.email.provider.EmailContent#save(android.content.Context)
838 public Uri save(Context context) { method in class:EmailContent.Message
843 // possible, and (b) override (and throw) if anyone tries to call save() or update()
848 return super.save(context);
891 // First, save the message
901 // Create and save the body
H A DPolicy.java144 public Uri save(Context context) { method in class:Policy
146 return super.save(context);
/packages/apps/Email/src/com/android/email/
H A DController.java264 m.save(mProviderContext);
285 m.save(mProviderContext);
309 msg.save(mProviderContext);
481 message.save(mProviderContext);
548 box.save(mProviderContext);
H A DLegacyConversions.java262 localAttachment.save(context);
H A DMessagingController.java428 content.save(context);
1025 // process (and save) attachments
1589 sentinel.save(mContext);
/packages/apps/Email/src/com/android/email/activity/
H A DMessageCompose.java143 * A registry of the active tasks used to save messages.
151 * The ID of the latest save or send task requested by this Activity.
550 // If there are any outstanding save requests, ensure that it's noted in case it hasn't
825 // Note - this can be Message.NOT_SAVED if there is an existing save task in progress
1015 * A future-like reference to the save task which must complete prior to this load.
1047 "Unable to load draft message since existing save task failed: " + e);
1052 "Unable to load draft message since existing save task failed: " + e);
1247 // Use the Intent to set flags saying this message is a reply or a forward and save the
1347 // this attachment is new so save it to DB.
1349 attachment.save(MessageCompos
[all...]
H A DMessageListItem.java462 canvas.save();
H A DMessageViewFragmentBase.java751 * Abort early if there's no place to save the attachment. We don't want to spend
824 // given a file path. Therefore, we need to save it first in order to proceed
972 case R.id.save:
1324 * is, the user has at some point clicked "save" for this attachment.
1489 Button saveButton = (Button) UiUtilities.getView(view, R.id.save);
1627 * Use {@link DateUtils#getRelativeTimeSpanString} instead to save the screen real estate.
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSettingsUtils.java53 account.save(context);
H A DAccountSetupActivity.java42 SetupData.save(outState);

Completed in 316 milliseconds

12345