Searched refs:mEditor (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeSharedPreferences.java29 private Editor mEditor; field in class:BridgeSharedPreferences
73 if (mEditor != null) {
74 return mEditor;
76 mEditor = new Editor() {
126 return mEditor;
/frameworks/base/core/java/android/widget/
H A DTextView.java602 // It is possible to have a selection even when mEditor is null (programmatically set, like when
603 // a link is pressed). These highlight-related fields do not go in mEditor.
629 private Editor mEditor; field in class:TextView
1089 mEditor.mAllowUndo = a.getBoolean(attr, true);
1094 mEditor.createInputContentTypeIfNeeded();
1095 mEditor.mInputContentType.imeOptions = a.getInt(attr,
1096 mEditor.mInputContentType.imeOptions);
1101 mEditor.createInputContentTypeIfNeeded();
1102 mEditor.mInputContentType.imeActionLabel = a.getText(attr);
1107 mEditor
[all...]
H A DEditor.java5115 private final Editor mEditor; field in class:Editor.UndoInputFilter
5125 mEditor = editor;
5196 EditOperation edit = new EditOperation(mEditor, "", dstart, newText);
5216 EditOperation edit = new EditOperation(mEditor, oldText, dstart, newText);
5226 final UndoManager um = mEditor.mUndoManager;
5229 EditOperation.class, mEditor.mUndoOwner, UndoManager.MERGE_MODE_UNIQUE);
5243 um.commitState(mEditor.mUndoOwner);
5251 um.commitState(mEditor.mUndoOwner);
5259 if (!mEditor.mAllowUndo) {
5264 if (mEditor
5572 private final Editor mEditor; field in class:Editor.ProcessTextIntentActionsHandler
[all...]
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceManager.java59 private SharedPreferences.Editor mEditor; field in class:PreferenceManager
348 if (mEditor == null) {
349 mEditor = getSharedPreferences().edit();
352 return mEditor;
370 if (!noCommit && mEditor != null) {
371 SharedPreferencesCompat.EditorCompat.getInstance().apply(mEditor);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/renderer/
H A DPdfManipulationService.java214 private PdfEditor mEditor; field in class:PdfManipulationService.PdfEditorImpl
224 mEditor = new PdfEditor(source);
225 return mEditor.getPageCount();
248 mEditor.removePage(j);
279 final boolean scaleForPrinting = mEditor.shouldScaleForPrinting();
281 final int pageCount = mEditor.getPageCount();
283 if (!mEditor.getPageMediaBox(i, mediaBox)) {
294 mEditor.setPageMediaBox(i, mediaBox);
322 if (mEditor.getPageCropBox(i, cropBox)) {
328 mEditor
[all...]
/frameworks/base/core/java/android/preference/
H A DPreferenceManager.java94 private SharedPreferences.Editor mEditor; field in class:PreferenceManager
512 if (mEditor == null) {
513 mEditor = getSharedPreferences().edit();
516 return mEditor;
534 if (!noCommit && mEditor != null) {
536 mEditor.apply();
541 mEditor.commit();

Completed in 449 milliseconds