/packages/apps/ContactsCommon/src/com/android/contacts/common/preference/ |
ContactsPreferences.java | 22 import android.content.SharedPreferences.Editor; 103 final Editor editor = mPreferences.edit(); local 104 editor.putInt(SORT_ORDER_KEY, sortOrder); 105 editor.commit(); 132 final Editor editor = mPreferences.edit(); local 133 editor.putInt(DISPLAY_ORDER_KEY, displayOrder); 134 editor.commit();
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
AlbumSettings.java | 124 SharedPreferences.Editor editor = mSettings.edit(); local 126 editor.putStringSet(ALBUM_SET, new HashSet<String>(mEnabledAlbums)); 127 editor.commit();
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
LocalePropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 21 * @coverage core.model.property.editor
|
PropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 21 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 25 * Abstract editor for {@link Property}. 28 * @coverage core.model.property.editor 55 * Activates editor for given {@link Property} at given place of {@link Composite}. Activation 62 * the mouse location, if editor is activated using mouse click, or <code>null</code> if 65 * @return <code>true</code> if editor should be remembered as active for future 75 * Sets the new bounds for editor's control. 81 * Deactivates editor for current {@link Property}. {@link PropertyEditor} should dispose any 84 * If any exception happened during activation, editor still should be able to deactivat [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
DiskLruCacheWrapper.java | 88 DiskLruCache.Editor editor = getDiskCache().edit(safeKey); local 89 //editor will be null if there are two concurrent puts 91 if (editor != null) { 95 os = editor.newOutputStream(0); 103 editor.commit();
|
/external/proguard/src/proguard/classfile/editor/ |
AnnotationsAttributeEditor.java | 21 package proguard.classfile.editor;
|
CodeAttributeEditorResetter.java | 21 package proguard.classfile.editor; 43 * @param codeAttributeEditor the code attribute editor that will be reset.
|
ExceptionAdder.java | 21 package proguard.classfile.editor;
|
ExceptionsAttributeEditor.java | 21 package proguard.classfile.editor;
|
InterfaceAdder.java | 21 package proguard.classfile.editor;
|
LineNumberInfoAdder.java | 21 package proguard.classfile.editor;
|
LineNumberTableAttributeEditor.java | 21 package proguard.classfile.editor;
|
LocalVariableTableAttributeEditor.java | 21 package proguard.classfile.editor;
|
LocalVariableTypeTableAttributeEditor.java | 21 package proguard.classfile.editor;
|
ParameterAnnotationsAttributeEditor.java | 21 package proguard.classfile.editor;
|
StackSizeUpdater.java | 21 package proguard.classfile.editor;
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/ |
IntentStore.java | 93 SharedPreferences.Editor editor = mPrefs.edit(); local 95 editor.clear(); 97 editor.putString(key, data.getString(key)); 100 editor.putLong(key, data.getLong(key)); 103 editor.putInt(key, data.getInt(key)); 106 editor.putBoolean(key, data.getBoolean(key)); 114 editor.putString(key, bundleString); 117 editor.putBoolean(IS_SET, true); 118 editor.commit() [all...] |
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
Editors.java | 17 package com.android.notificationstudio.editor; 34 public interface Editor { 38 private static final Map<Integer, Editor> EDITORS = editors(); 41 private static Map<Integer, Editor> editors() { 42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>(); 69 Editor editor = EDITORS.get(item.getType()); local 70 if (editor == null) 72 Runnable updater = editor.bindEditor(editorView, item, new Runnable() [all...] |
/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()); 108 * @param editor The {@link ExportEditor} instance. 110 public void onModelInit(ExportEditor editor) { 118 * @param editor The {@link ExportEditor} instance. 121 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/ |
InstrumentationPage.java | 30 import org.eclipse.ui.forms.editor.FormPage; 34 * Page for instrumentation settings, part of the AndroidManifest form editor. 40 /** Container editor */ 45 public InstrumentationPage(ManifestEditor editor) { 46 super(editor, PAGE_ID, "Instrumentation"); // tab's label, keep it short 47 mEditor = editor;
|
PermissionPage.java | 30 import org.eclipse.ui.forms.editor.FormPage; 34 * Page for permissions settings, part of the AndroidManifest form editor. 44 /** Container editor */ 49 public PermissionPage(ManifestEditor editor) { 50 super(editor, PAGE_ID, "Permissions"); // tab label, keep it short 51 mEditor = editor;
|
/packages/apps/Camera/src/com/android/camera/ |
CameraSettings.java | 23 import android.content.SharedPreferences.Editor; 116 SharedPreferences.Editor editor = ComboPreferences local 118 editor.putString(KEY_PICTURE_SIZE, candidate); 119 editor.apply(); 352 SharedPreferences.Editor editor = pref.edit(); 356 editor.remove("pref_video_quality_key"); 358 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION); 359 editor.apply() 433 Editor editor = pref.edit(); local 503 Editor editor = preferences.edit(); local 510 Editor editor = preferences.edit(); local [all...] |
/packages/apps/LegacyCamera/src/com/android/camera/ |
CameraSettings.java | 22 import android.content.SharedPreferences.Editor; 105 SharedPreferences.Editor editor = ComboPreferences local 107 editor.putString(KEY_PICTURE_SIZE, candidate); 108 editor.apply(); 296 SharedPreferences.Editor editor = pref.edit(); 300 editor.remove("pref_video_quality_key"); 302 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION); 303 editor.apply() 358 Editor editor = pref.edit(); local 429 Editor editor = preferences.edit(); local 436 Editor editor = preferences.edit(); local [all...] |
/prebuilts/tools/common/m2/repository/com/android/tools/external/propertysheet/1.0/ |
propertysheet-1.0.jar | |
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/ |
InvalidationPreferences.java | 39 * Wrapper around a {@link android.content.SharedPreferences.Editor} for the preferences. 43 private final SharedPreferences.Editor editor; field in class:InvalidationPreferences.EditContext 46 this.editor = PreferenceManager.getDefaultSharedPreferences(mContext).edit(); 97 if (!editContext.editor.commit()) { 114 editContext.editor.putStringSet(PrefKeys.SYNC_TANGO_TYPES, selectedTypesSet); 142 editContext.editor.putStringSet(PrefKeys.TANGO_OBJECT_IDS, objectIdStrings); 158 editContext.editor.putString(PrefKeys.SYNC_ACCT_NAME, account.name); 159 editContext.editor.putString(PrefKeys.SYNC_ACCT_TYPE, account.type); 174 editContext.editor.putString(PrefKeys.SYNC_TANGO_INTERNAL_STATE [all...] |