HomeSort by relevance Sort by last modified time
    Searched refs:Editor (Results 176 - 200 of 305) sorted by null

1 2 3 4 5 6 78 91011>>

  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageFetcher.java 212 DiskLruCache.Editor editor = mHttpDiskCache.edit(key); local
213 if (editor != null) {
215 editor.newOutputStream(DISK_CACHE_INDEX))) {
216 editor.commit();
218 editor.abort();
  /developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
FitDistanceWatchFaceConfigActivity.java 248 SharedPreferences.Editor editor = sharedPreferences.edit(); local
249 editor.putBoolean(PREFS_FIT_ENABLED_BY_USER, userFitPreferences);
250 editor.commit();
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageFetcher.java 212 DiskLruCache.Editor editor = mHttpDiskCache.edit(key); local
213 if (editor != null) {
215 editor.newOutputStream(DISK_CACHE_INDEX))) {
216 editor.commit();
218 editor.abort();
  /development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/
FingerprintAuthenticationDialogFragment.java 177 SharedPreferences.Editor editor = mSharedPreferences.edit(); local
178 editor.putBoolean(getString(R.string.use_fingerprint_to_authenticate_key),
180 editor.apply();
  /development/samples/browseable/WatchFace/Application/src/com.example.android.wearable.watchface/
FitDistanceWatchFaceConfigActivity.java 248 SharedPreferences.Editor editor = sharedPreferences.edit(); local
249 editor.putBoolean(PREFS_FIT_ENABLED_BY_USER, userFitPreferences);
250 editor.commit();
  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 194 SharedPreferences.Editor editor = mSharedPrefs.edit(); local
195 editor.putInt(mLeftPrefKey, mLeftKeyCode);
196 editor.putInt(mRightPrefKey, mRightKeyCode);
197 editor.putInt(mJumpPrefKey, mJumpKeyCode);
198 editor.putInt(mAttackPrefKey, mAttackKeyCode);
199 editor.commit();
  /external/skia/src/core/
SkPath.cpp 682 SkPathRef::Editor ed(&fPathRef);
694 SkPathRef::Editor ed(&fPathRef);
716 SkPathRef::Editor(&fPathRef, inc, inc);
723 SkPathRef::Editor ed(&fPathRef);
758 SkPathRef::Editor ed(&fPathRef);
776 SkPathRef::Editor ed(&fPathRef);
806 SkPathRef::Editor ed(&fPathRef);
829 SkPathRef::Editor ed(&fPathRef);
858 SkPathRef::Editor ed(&fPathRef);
1006 SkPathRef::Editor ed(&fPathRef, count+close, count)
    [all...]
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/activity/
Main.java 200 SharedPreferences.Editor editor = mPreferences.edit(); local
201 editor.putBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, isInstalled);
202 editor.commit();
  /external/v8/src/compiler/
branch-elimination.cc 15 BranchElimination::BranchElimination(Editor* editor, JSGraph* js_graph,
17 : AdvancedReducer(editor),
  /external/v8/tools/release/
create_release.py 140 print ("Please press <Return> to have your EDITOR open the ChangeLog "
142 "save the file and exit your EDITOR. ")
144 self.Editor(self.Config("CHANGELOG_ENTRY_FILE"))
merge_to_branch.py 162 "fire up your EDITOR on %s so you can make arbitrary "
164 "EDITOR.)" % VERSION_FILE):
171 self.Editor(os.path.join(self.default_cwd, VERSION_FILE))
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
AppWidgetHostActivity.java 93 SharedPreferences.Editor prefs = getPreferences(0).edit();
  /frameworks/base/tests/backup/src/com/android/backuptest/
BackupTestActivity.java 125 SharedPreferences.Editor editor = prefs.edit();
126 editor.putInt(PREF_KEY, val+1);
127 editor.commit();
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 318 SharedPreferences.Editor editor = mStorage.edit(); local
319 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
320 editor.putInt(PREFIX + "errorCount",
322 SharedPreferencesCompat.apply(editor);
  /frameworks/support/v14/preference/src/android/support/v14/preference/
MultiSelectListPreference.java 87 * This will check if this Preference is persistent, get an editor from
107 SharedPreferences.Editor editor = getPreferenceManager().getSharedPreferences().edit(); local
108 editor.putStringSet(getKey(), values);
109 SharedPreferencesCompat.EditorCompat.getInstance().apply(editor);
  /packages/apps/Calendar/src/com/android/calendar/
OtherPreferences.java 190 SharedPreferences.Editor editor = prefs.edit(); local
196 editor.putInt(KEY_OTHER_QUIET_HOURS_START_HOUR, hourOfDay);
197 editor.putInt(KEY_OTHER_QUIET_HOURS_START_MINUTE, minute);
201 editor.putInt(KEY_OTHER_QUIET_HOURS_END_HOUR, hourOfDay);
202 editor.putInt(KEY_OTHER_QUIET_HOURS_END_MINUTE, minute);
208 editor.commit();
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 62 import com.android.contacts.editor.Editor;
63 import com.android.contacts.editor.EditorUiUtils;
64 import com.android.contacts.editor.ViewIdGenerator;
262 // Setup "header" (containing contact info) to save the detail and then go to the editor
672 * Rebuild the editor to match our underlying {@link #mEntityDeltaList} object.
691 // Otherwise display an editor that allows the user to add the data to this raw contact.
721 if (view instanceof Editor) {
722 Editor editor = (Editor) view local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorUtils.java 17 package com.android.contacts.editor;
125 final SharedPreferences.Editor editor = mPrefs.edit() local
133 editor.remove(KEY_KNOWN_ACCOUNTS);
134 editor.remove(mDefaultAccountKey);
136 editor.putString(KEY_KNOWN_ACCOUNTS,
138 editor.putString(mDefaultAccountKey, defaultAccount.stringify());
140 editor.apply();
206 * @return true if the contact editor should show the "accounts changed" notification, that is:
PhotoEditorView.java 17 package com.android.contacts.editor;
43 * Simple editor for {@link Photo}.
45 public class PhotoEditorView extends LinearLayout implements Editor {
72 // Never called, since the user never adds a new photo-editor;
73 // you can only change the picture in an existing editor.
205 * Bind the {@param photoUri}'s photo to editor's UI. This doesn't affect {@link ValuesDelta}.
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorCrop.java 37 public class EditorCrop extends Editor implements EditorInfo {
EditorPanel.java 41 private Editor mEditor;
44 public void setEditor(int editor) {
45 mEditorID = editor;
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherClings.java 76 SharedPreferences.Editor editor = Utilities.getPrefs(mLauncher).edit(); local
77 editor.putBoolean(Launcher.USER_HAS_MIGRATED, true);
78 editor.apply();
  /packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
ApplicationSettingsActivity.java 170 final SharedPreferences.Editor editor = sharedPreferences.edit(); local
171 editor.putString(mRingtonePreferenceKey, ringtoneString);
172 editor.apply();
  /packages/services/Car/service/src/com/android/car/
GarageModeService.java 210 SharedPreferences.Editor editor = mSharedPreferences.edit(); local
211 editor.putInt(GARAGE_MODE_INDEX, index);
212 editor.commit();
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/job/
JobSchedulerFragment.java 159 SharedPreferences.Editor editor = prefs.edit(); local
160 editor.putInt(PREFS_NEXT_JOB_ID, jobId + 1);
161 editor.commit();

Completed in 1120 milliseconds

1 2 3 4 5 6 78 91011>>