HomeSort by relevance Sort by last modified time
    Searched defs:editor (Results 51 - 75 of 191) sorted by null

1 23 4 5 6 7 8

  /cts/tests/appsecurity-tests/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 68 SharedPreferences.Editor editor = prefs.edit(); local
69 editor.putString(PREFERENCE_KEY, PREFERENCE_VALUE);
70 editor.commit();
  /packages/apps/Camera/src/com/android/camera/
ListPreference.java 137 SharedPreferences.Editor editor = getSharedPreferences().edit(); local
138 editor.putString(mKey, value);
139 editor.apply();
CameraSettings.java 22 import android.content.SharedPreferences.Editor;
105 SharedPreferences.Editor editor = ComboPreferences local
107 editor.putString(KEY_PICTURE_SIZE, candidate);
108 editor.apply();
303 SharedPreferences.Editor editor = pref.edit();
307 editor.remove("pref_video_quality_key");
309 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
310 editor.apply()
365 Editor editor = pref.edit(); local
436 Editor editor = preferences.edit(); local
443 Editor editor = preferences.edit(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/
Hints.java 108 SharedPreferences.Editor editor = mPrefs.edit(); local
109 editor.putLong(PREF_VOICE_INPUT_LAST_TIME_USED, System.currentTimeMillis());
110 SharedPreferencesCompat.apply(editor);
169 SharedPreferences.Editor editor = prefs.edit(); local
170 editor.putInt(PREF_VOICE_HINT_NUM_UNIQUE_DAYS_SHOWN, numUniqueDaysShown + 1);
171 editor.putLong(PREF_VOICE_HINT_LAST_TIME_SHOWN, System.currentTimeMillis());
172 SharedPreferencesCompat.apply(editor);
183 SharedPreferences.Editor editor = prefs.edit() local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 142 SharedPreferences.Editor editor = sp.edit(); local
143 editor.putInt(CDMAPhone.VM_COUNT_CDMA, voicemailCount);
144 editor.apply();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidTextEditor.java 51 import org.eclipse.ui.forms.editor.FormEditor;
52 import org.eclipse.ui.forms.editor.IFormPage;
68 * Multi-page form editor for Android text files.
73 * source editor. This can be a no-op if desired.
83 /** Page id of the XML source editor, used for switching tabs programmatically */
89 /** Page index of the text editor (always the last page) */
92 /** The text editor */
101 * Creates a form editor.
118 * as well as text editor page) have been created. This give a chance to deriving
140 * Creates the pages of the multi-page editor
375 IEditorPart editor = getEditor(mTextPageIndex); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 55 * icon in the editor, and I've spent a whole day trying to make it work. I did not
65 * I tried defining my own editor annotations, and customizing the icon directly
75 * to handle this, along with its own Annotation subclass used by the editor.
132 AndroidXmlEditor editor = AndroidXmlEditor.getAndroidXmlEditor(sourceViewer); local
133 if (editor != null) {
134 IFile file = editor.getInputFile();
189 AndroidXmlEditor editor = (AndroidXmlEditor) activeEditor; local
190 LintRunner.startLint(editor.getInputFile(), editor.getStructuredDocument());
  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 21 package proguard.classfile.editor;
ConstantAdder.java 21 package proguard.classfile.editor;
ConstantPoolSorter.java 21 package proguard.classfile.editor;
ElementValueAdder.java 21 package proguard.classfile.editor;
MemberAdder.java 21 package proguard.classfile.editor;
AccessFixer.java 21 package proguard.classfile.editor;
  /frameworks/base/core/java/android/preference/
Preference.java 1370 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1422 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1471 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1515 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1559 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1603 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
    [all...]
PreferenceManager.java 90 * If in no-commit mode, the shared editor to give out (which will be
93 private SharedPreferences.Editor mEditor;
96 * Blocks commits from happening on the shared editor. This is used when
464 SharedPreferences.Editor editor = local
467 editor.apply();
470 // SharedPreferences.Editor implementation without
472 editor.commit();
478 * Returns an editor to use when modifying the shared preferences.
482 * @return An editor to use to write to shared preferences
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 175 SharedPreferences.Editor editor = mContext.getSharedPreferences(OPP_PREFERENCE_FILE, 0) local
177 editor.putBoolean(SENDING_FLAG, mSendingFlag);
178 editor.putBoolean(MULTIPLE_FLAG, mMultipleFlag);
180 editor.putString(MIME_TYPE_MULTIPLE, mMimeTypeOfSendingFiles);
188 editor.putString(FILE_URIS, strUris);
190 editor.remove(MIME_TYPE);
191 editor.remove(FILE_URI);
193 editor.putString(MIME_TYPE, mMimeTypeOfSendingFile);
194 editor.putString(FILE_URI, mUriOfSendingFile)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
BaseRawContactEditorView.java 17 package com.android.contacts.editor;
39 * Base view that provides common code for the editor interaction for a specific
112 * @return the RawContact ID that this editor is editing.
ViewIdGenerator.java 17 package com.android.contacts.editor;
68 * @param viewIndex index of the view in the parent {@link Editor}, if it's a leave view.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportLinksPart.java 41 public ExportLinksPart(Composite body, FormToolkit toolkit, ExportEditor editor) {
77 mFormText.addHyperlinkListener(editor.createHyperlinkListener());
105 * @param editor The {@link ExportEditor} instance.
107 public void onModelInit(ExportEditor editor) {
115 * @param editor The {@link ExportEditor} instance.
118 public void onModelChanged(ExportEditor editor, DocumentEvent event) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewLinksPart.java 41 public OverviewLinksPart(Composite body, FormToolkit toolkit, ManifestEditor editor) {
43 mEditor = editor;
87 AndroidManifestDescriptors manifestDescriptor = editor.getManifestDescriptors();
102 mFormText.addHyperlinkListener(editor.createHyperlinkListener());
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
SourceRevealer.java 66 // before we show the type in an editor window, we make sure the current
67 // workbench page has an editor area (typically the ddms perspective doesn't).
72 // no editor area? we open the java perspective.
76 IEditorPart editor = JavaUI.openInEditor(result); local
77 if (editor instanceof ITextEditor) {
78 // get the text editor that was just opened.
79 ITextEditor textEditor = (ITextEditor)editor;
  /packages/apps/Email/src/com/android/email/widget/
WidgetManager.java 130 SharedPreferences.Editor editor = prefs.edit(); local
133 editor.remove(key);
136 editor.apply(); // just want to clean up; don't care when preferences are actually removed
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/languageswitcher/
LanguageSwitcher.java 26 import android.content.SharedPreferences.Editor;
230 Editor editor = prefs.edit(); local
231 editor.putString(Settings.PREF_INPUT_LANGUAGE, getInputLanguage());
232 SharedPreferencesCompat.apply(editor);
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 399 SharedPreferences.Editor editor = sp.edit(); local
400 editor.putLong(COLUMN_APN_ID, id != null ? id.longValue() : -1);
401 editor.apply();
416 SharedPreferences.Editor editor = sp.edit(); local
417 editor.putLong(APN_CONFIG_CHECKSUM, id);
418 editor.apply();
  /prebuilt/common/jfreechart/
jfreechart-1.0.9-swt.jar 

Completed in 168 milliseconds

1 23 4 5 6 7 8