HomeSort by relevance Sort by last modified time
    Searched defs:editor (Results 151 - 175 of 467) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Contacts/src/com/android/contacts/preference/
ContactsPreferences.java 23 import android.content.SharedPreferences.Editor;
136 final Editor editor = mPreferences.edit(); local
137 editor.putInt(SORT_ORDER_KEY, sortOrder);
138 editor.commit();
166 final Editor editor = mPreferences.edit(); local
167 editor.putInt(DISPLAY_ORDER_KEY, displayOrder);
168 editor.commit();
187 final Editor editor = mPreferences.edit() local
    [all...]
  /packages/apps/Settings/src/com/android/settings/datetime/timezone/
TimeZoneSettings.java 255 SharedPreferences.Editor editor = getPreferenceManager().getSharedPreferences().edit(); local
257 editor.remove(PREF_KEY_REGION);
259 editor.putString(PREF_KEY_REGION, regionId);
261 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.
84 /** Page id of the XML source editor, used for switching tabs programmatically */
90 /** Page index of the text editor (always the last page) */
93 /** The text editor */
102 * Creates a form editor.
119 * as well as text editor page) have been created. This give a chance to deriving
141 * Creates the pages of the multi-page editor
378 IEditorPart editor = getEditor(mTextPageIndex); local
    [all...]
  /developers/build/prebuilts/gradle/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
MainActivity.java 125 final SharedPreferences.Editor editor = local
127 editor.putBoolean(CUSTOM_CONFIG_KEY, mCustomConfig.isChecked()).apply();
  /developers/samples/android/content/multiuser/AppRestrictions/Application/src/main/java/com/example/android/apprestrictions/
MainActivity.java 125 final SharedPreferences.Editor editor = local
127 editor.putBoolean(CUSTOM_CONFIG_KEY, mCustomConfig.isChecked()).apply();
  /development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/
MainActivity.java 125 final SharedPreferences.Editor editor = local
127 editor.putBoolean(CUSTOM_CONFIG_KEY, mCustomConfig.isChecked()).apply();
  /external/proguard/src/proguard/classfile/editor/
ClassEditor.java 21 package proguard.classfile.editor;
ComparableConstant.java 21 package proguard.classfile.editor;
ConstantPoolSorter.java 21 package proguard.classfile.editor;
ElementValueAdder.java 21 package proguard.classfile.editor;
InterfaceDeleter.java 21 package proguard.classfile.editor;
InterfaceSorter.java 21 package proguard.classfile.editor;
MethodInvocationFixer.java 21 package proguard.classfile.editor;
62 // Reset the code attribute editor.
68 // Apply the code atribute editor.
NameAndTypeShrinker.java 21 package proguard.classfile.editor;
  /frameworks/base/core/java/android/preference/
Preference.java 1624 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1677 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1730 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1784 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1838 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1892 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 234 SharedPreferences.Editor editor = local
236 editor.putBoolean(SENDING_FLAG, mSendingFlag);
237 editor.putBoolean(MULTIPLE_FLAG, mMultipleFlag);
239 editor.putString(MIME_TYPE_MULTIPLE, mMimeTypeOfSendingFiles);
247 editor.putString(FILE_URIS, strUris);
249 editor.remove(MIME_TYPE);
250 editor.remove(FILE_URI);
252 editor.putString(MIME_TYPE, mMimeTypeOfSendingFile);
253 editor.putString(FILE_URI, mUriOfSendingFile)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 17 package com.android.contacts.editor;
31 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
ContactEditorUtils.java 17 package com.android.contacts.editor;
53 * passed to the contact editor.
56 * @param requestLookupUri The lookup Uri originally passed to the contact 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
49 // The editor has switched between different representations of the same
53 // Focus has changed inside the editor.
58 * Returns whether or not all the fields are empty in this {@link Editor}.
63 * Prepares this editor for the given {@link ValuesDelta}, whic
    [all...]
JoinContactConfirmationDialogFragment.java 17 package com.android.contacts.editor;
KindSectionData.java 17 package com.android.contacts.editor;
31 * Holder for the multi account raw contact data needed to back an editor input field.
PhotoSourceDialogFragment.java 17 package com.android.contacts.editor;
30 import com.android.contacts.editor.PhotoActionPopup.ChoiceListItem;
SplitContactConfirmationDialogFragment.java 17 package com.android.contacts.editor;
SuggestionEditConfirmationDialogFragment.java 17 package com.android.contacts.editor;
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.

Completed in 586 milliseconds

1 2 3 4 5 67 8 91011>>