/packages/services/Telephony/src/com/android/phone/sip/ |
SipSharedPreferences.java | 47 SharedPreferences.Editor editor = mPreferences.edit(); local 48 editor.putString(KEY_PRIMARY_ACCOUNT, accountUri); 49 editor.apply(); 72 SharedPreferences.Editor editor = mPreferences.edit(); local 73 editor.putInt(KEY_NUMBER_OF_PROFILES, number); 74 editor.apply();
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
PropertyEditorPresentation.java | 11 package org.eclipse.wb.internal.core.model.property.editor.presentation; 14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 22 * @coverage core.model.property.editor
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerObj.java | 84 SharedPreferences.Editor editor = prefs.edit(); local 87 editor.putInt (key, mTimerId); 89 editor.putLong (key, mStartTime); 91 editor.putLong (key, mTimeLeft); 93 editor.putLong (key, mOriginalLength); 95 editor.putLong (key, mSetupLength); 97 editor.putInt (key, mState); 100 editor.putStringSet(PREF_TIMERS_LIST, timersList); 102 editor.putString(key, mLabel) 128 SharedPreferences.Editor editor = prefs.edit(); local [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
StopwatchService.java | 257 SharedPreferences.Editor editor = prefs.edit(); local 259 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, clockTime); 260 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1); 261 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, true); 263 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, clockTime); 264 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, -1); 265 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, false); 267 editor.putBoolean(Stopwatches.PREF_UPDATE_CIRCLE, false); 268 editor.apply() 296 SharedPreferences.Editor editor = prefs.edit(); local 339 SharedPreferences.Editor editor = prefs.edit(); local 382 SharedPreferences.Editor editor = prefs.edit(); local 397 SharedPreferences.Editor editor = prefs.edit(); local 428 SharedPreferences.Editor editor = prefs.edit(); local [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
ITextValuePropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 19 * @coverage core.model.property.editor
|
PropertyEditorProvider.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 19 * @coverage core.model.property.editor 30 * @return the {@link PropertyEditor} for given {@link java.beans.PropertyEditor} editor type or
|
TextControlActionsManager.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 22 * @coverage core.model.property.editor
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
IPropertyExceptionHandler.java | 14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
|
/external/proguard/src/proguard/classfile/editor/ |
NamedAttributeDeleter.java | 21 package proguard.classfile.editor;
|
SubclassAdder.java | 21 package proguard.classfile.editor;
|
SubclassToAdder.java | 21 package proguard.classfile.editor;
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/ |
Control.java | 22 import com.android.gallery3d.filtershow.editors.Editor; 25 public void setUp(ViewGroup container, Parameter parameter, Editor editor);
|
Parameter.java | 19 import com.android.gallery3d.filtershow.editors.Editor; 30 public void setFilterView(FilterView editor);
|
/packages/screensavers/WebView/src/com/android/dreams/web/ |
SetURL.java | 20 import android.content.SharedPreferences.Editor; 49 final Editor editor = prefs.edit(); local 50 editor.putString("url", url); 51 editor.putBoolean("interactive", false); 52 editor.commit();
|
SetURLInteractive.java | 20 import android.content.SharedPreferences.Editor; 49 final Editor editor = prefs.edit(); local 50 editor.putString("url", url); 51 editor.putBoolean("interactive", true); 52 editor.commit();
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
IntEditor.java | 17 package com.android.notificationstudio.editor;
|
/external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/ |
InvalidationPreferences.java | 38 * Wrapper around a {@link android.content.SharedPreferences.Editor} for the preferences. 42 private final SharedPreferences.Editor editor; field in class:InvalidationPreferences.EditContext 45 this.editor = PreferenceManager.getDefaultSharedPreferences(mContext).edit(); 89 if (!editContext.editor.commit()) { 106 editContext.editor.putStringSet(PrefKeys.SYNC_TANGO_TYPES, selectedTypesSet); 122 editContext.editor.putString(PrefKeys.SYNC_ACCT_NAME, account.name); 123 editContext.editor.putString(PrefKeys.SYNC_ACCT_TYPE, account.type); 138 editContext.editor.putString(PrefKeys.SYNC_TANGO_INTERNAL_STATE,
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
StringPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor.string; 14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor; 15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation; 17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 26 * @coverage core.model.property.editor
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
VisualRefactoringAction.java | 65 // Look for selections in XML and in the layout UI editor 78 IEditorPart editor = null; local 82 editor = AdtUtils.getActiveEditor(); 83 mFile = getSelectedFile(editor); 88 editor = AdtUtils.getActiveEditor(); 89 mFile = getSelectedFile(editor); 93 mDelegate = LayoutEditorDelegate.fromEditor(editor); 113 private IFile getSelectedFile(IEditorPart editor) { 114 if (editor != null) { 115 IEditorInput input = editor.getEditorInput() [all...] |
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/ |
AwGeolocationPermissions.java | 65 SharedPreferences.Editor editor = null; local 68 if (editor == null) { 69 editor = mSharedPreferences.edit(); 71 editor.remove(name); 74 if (editor != null) { 75 editor.apply();
|
/hardware/ti/omap4xxx/libI420colorconvert/ |
Android.mk | 11 $(TOP)/frameworks/native/include/media/editor
|
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarBackupAgent.java | 23 import android.content.SharedPreferences.Editor; 42 final Editor editor = getSharedPreferences( local 44 editor.putString(GeneralPreferences.KEY_ALERTS_RINGTONE,
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
Editor.java | 17 package com.android.contacts.editor; 29 public interface Editor { 33 * Called when the given {@link Editor} is requested to be deleted by the user. 35 public void onDeleteRequested(Editor editor); 38 * Called when the given {@link Editor} has a request, for example it 48 // The editor has switched between different representations of the same 54 * Returns whether or not all the fields are empty in this {@link Editor}. 59 * Prepares this editor for the given {@link ValuesDelta}, which 69 * Add a specific {@link EditorListener} to this {@link Editor} [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintEditAction.java | 26 * Action intended to wrap an existing XML editor action, and then runs lint after 33 * Creates a new {@link LintEditAction} associated with the given editor to 37 * @param editor the editor associated with the action 39 public LintEditAction(@NonNull IAction action, @NonNull AndroidXmlEditor editor) { 41 mEditor = editor;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/ |
IPage.java | 11 package org.eclipse.wb.internal.core.editor.structure; 21 * @coverage core.editor.structure
|