Searched defs:editor (Results 1 - 8 of 8) sorted by relevance

/frameworks/ex/common/java/com/android/common/
H A DSharedPreferencesCompat.java39 public static void apply(SharedPreferences.Editor editor) { argument
42 sApplyMethod.invoke(editor);
50 editor.commit();
/frameworks/support/compat/src/main/java/androidx/core/content/
H A DSharedPreferencesCompat.java43 public void apply(@NonNull SharedPreferences.Editor editor) { argument
45 editor.apply();
50 editor.commit();
76 public void apply(@NonNull SharedPreferences.Editor editor) { argument
80 mHelper.apply(editor);
/frameworks/support/jetifier/jetifier/processor/src/test/resources/changeDetectionTest/
H A DtestPreference.classPreference.java package android.support.v7.preference public android.support.v7.preference ...
/frameworks/base/core/java/android/widget/
H A DSelectionActionModeHelper.java83 SelectionActionModeHelper(@NonNull Editor editor) { argument
84 mEditor = Preconditions.checkNotNull(editor);
95 editor.getTextView().mHighlightColor, mTextView::invalidate);
585 public boolean resetSelection(int textIndex, Editor editor) { argument
586 final TextView textView = editor.getTextView();
592 boolean selected = editor.selectCurrentWord();
594 mSelectionStart = editor.getTextView().getSelectionStart();
595 mSelectionEnd = editor.getTextView().getSelectionEnd();
H A DEditor.java6354 public UndoInputFilter(Editor editor) { argument
6355 mEditor = editor;
6571 * Constructs an edit operation from a text input operation on editor that replaces the
6574 public EditOperation(Editor editor, String oldText, int dstart, String newText, argument
6576 super(editor.mUndoOwner);
6591 mOldCursorPos = editor.mTextView.getSelectionStart();
6636 Editor editor = getOwnerData();
6637 Editable text = (Editable) editor.mTextView.getText();
6645 Editor editor = getOwnerData();
6646 Editable text = (Editable) editor
6868 ProcessTextIntentActionsHandler(Editor editor) argument
[all...]
/frameworks/base/core/java/android/preference/
H A DPreference.java1587 private void tryCommit(SharedPreferences.Editor editor) { argument
1590 editor.apply();
1595 editor.commit();
1624 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1625 editor.putString(mKey, value);
1626 tryCommit(editor);
1677 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1678 editor.putStringSet(mKey, values);
1679 tryCommit(editor);
1730 SharedPreferences.Editor editor
[all...]
/frameworks/support/preference/src/main/java/androidx/preference/
H A DPreference.java1553 private void tryCommit(@NonNull SharedPreferences.Editor editor) { argument
1555 editor.apply();
1584 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1585 editor.putString(mKey, value);
1586 tryCommit(editor);
1638 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1639 editor.putStringSet(mKey, values);
1640 tryCommit(editor);
1691 SharedPreferences.Editor editor = mPreferenceManager.getEditor();
1692 editor
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintActivity.java3157 final IPdfEditor editor = IPdfEditor.Stub.asInterface(service);
3166 doTransform(editor);
3190 private void doTransform(IPdfEditor editor) throws IOException, RemoteException { argument
3201 editor.openDocument(src);
3207 editor.removePages(mPagesToShred);
3211 editor.applyPrintAttributes(mAttributesToApply);
3218 editor.write(dst);
3222 editor.closeDocument();

Completed in 803 milliseconds