HomeSort by relevance Sort by last modified time
    Searched refs:Editor (Results 251 - 275 of 410) sorted by null

<<11121314151617

  /packages/apps/Launcher3/src/com/android/launcher3/util/
ManagedProfileHeuristic.java 218 SharedPreferences.Editor editor = prefs.edit(); local
221 editor.remove(key);
224 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/apps/TV/src/com/android/tv/data/
ChannelLogoFetcher.java 106 SharedPreferences.Editor sharedPreferencesEditor = sharedPreferences.edit();
  /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();
  /external/skia/src/core/
SkPath.cpp 690 SkPathRef::Editor ed(&fPathRef);
702 SkPathRef::Editor ed(&fPathRef);
724 SkPathRef::Editor(&fPathRef, inc, inc);
731 SkPathRef::Editor ed(&fPathRef);
766 SkPathRef::Editor ed(&fPathRef);
784 SkPathRef::Editor ed(&fPathRef);
814 SkPathRef::Editor ed(&fPathRef);
837 SkPathRef::Editor ed(&fPathRef);
866 SkPathRef::Editor ed(&fPathRef);
1014 SkPathRef::Editor ed(&fPathRef, count+close, count)
    [all...]
  /compatibility/cdd/7_hardware-compatibility/
7_2_input-devices.md 12 third-party Input Method Editor (IME) applications.
14 third-party Input Method Editor (IME) applications.
17 Input Method Editor (IME) applications, they:
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/vr/
VrListenerVerifierActivity.java 694 SharedPreferences.Editor editor = sharedPref.edit(); local
695 editor.putString(key, stringStatus);
696 editor.apply();
700 SharedPreferences.Editor editor = sharedPref.edit(); local
701 editor.clear();
702 editor.apply();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CarrierKeyDownloadManager.java 171 SharedPreferences.Editor editor = getDefaultSharedPreferences(mContext).edit(); local
172 editor.remove(String.valueOf(carrierKeyDownloadIdentifier));
173 editor.commit();
505 SharedPreferences.Editor editor = getDefaultSharedPreferences(mContext).edit(); local
511 editor.putString(MCC_MNC_PREF_TAG + slotId, mccMnc);
512 editor.commit();
Phone.java 782 SharedPreferences.Editor editor = sp.edit(); local
1282 SharedPreferences.Editor editor = sp.edit(); local
1365 SharedPreferences.Editor editor = sp.edit(); local
1777 SharedPreferences.Editor editor = sp.edit(); local
1797 SharedPreferences.Editor editor = sp.edit(); local
2280 SharedPreferences.Editor editor = sp.edit(); local
2321 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapUtils.java 24 import android.content.SharedPreferences.Editor;
257 Editor edit = pref.edit();
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksProvider.java 24 import android.content.SharedPreferences.Editor;
160 Editor editor = sharedPreferences.edit(); local
161 editor.putString(ACTIVE_CONFIGURATION_PREFNAME, getConfigSignature(config));
162 editor.apply();
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 439 SharedPreferences.Editor editor = sp.edit(); local
440 editor.putLong(APN_CONF_CHECKSUM, checksum);
441 editor.apply();
1800 SharedPreferences.Editor editor = spPrefFile.edit(); local
1825 SharedPreferences.Editor editor = sp.edit(); local
1878 SharedPreferences.Editor editor = sp.edit(); local
1894 SharedPreferences.Editor editor = sp.edit(); local
1950 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/
disklrucache-SNAPSHOT.jar 
  /cts/hostsidetests/backup/KeyValueApp/src/android/cts/backup/keyvaluerestoreapp/
KeyValueBackupRestoreTest.java 216 SharedPreferences.Editor editor = prefs.edit(); local
217 editor.putInt(INT_PREF, INT_PREF_VALUE);
218 editor.putBoolean(BOOL_PREF, BOOL_PREF_VALUE);
219 assertTrue("Error committing shared preference 1 value", editor.commit());
222 editor = prefs.edit();
223 editor.putFloat(FLOAT_PREF, FLOAT_PREF_VALUE);
224 editor.putLong(LONG_PREF, LONG_PREF_VALUE);
225 editor.putString(STRING_PREF, STRING_PREF_VALUE);
226 assertTrue("Error committing shared preference 2 value", editor.commit())
    [all...]
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 226 SharedPreferences.Editor editor = mSharedPreferences.edit(); local
227 editor.putBoolean(getString(R.string.use_fingerprint_to_authenticate_key),
229 editor.apply();
  /developers/build/prebuilts/gradle/DeviceOwner/Application/src/main/java/com/example/android/deviceowner/
DeviceOwnerFragment.java 259 SharedPreferences.Editor editor = activity.getSharedPreferences(PREFS_DEVICE_OWNER, local
262 editor.remove(PREF_LAUNCHER);
264 editor.putString(PREF_LAUNCHER, packageName);
266 editor.apply();
  /developers/samples/android/admin/DeviceOwner/Application/src/main/java/com/example/android/deviceowner/
DeviceOwnerFragment.java 259 SharedPreferences.Editor editor = activity.getSharedPreferences(PREFS_DEVICE_OWNER, local
262 editor.remove(PREF_LAUNCHER);
264 editor.putString(PREF_LAUNCHER, packageName);
266 editor.apply();
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 226 SharedPreferences.Editor editor = mSharedPreferences.edit(); local
227 editor.putBoolean(getString(R.string.use_fingerprint_to_authenticate_key),
229 editor.apply();
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ChangedContacts.java 148 SharedPreferences.Editor editor = pref.edit(); local
149 editor.putLong(key, time);
150 editor.commit();
  /development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
FingerprintAuthenticationDialogFragment.java 226 SharedPreferences.Editor editor = mSharedPreferences.edit(); local
227 editor.putBoolean(getString(R.string.use_fingerprint_to_authenticate_key),
229 editor.apply();
  /development/samples/browseable/DeviceOwner/src/com.example.android.deviceowner/
DeviceOwnerFragment.java 259 SharedPreferences.Editor editor = activity.getSharedPreferences(PREFS_DEVICE_OWNER, local
262 editor.remove(PREF_LAUNCHER);
264 editor.putString(PREF_LAUNCHER, packageName);
266 editor.apply();
  /external/v8/src/compiler/
branch-elimination.cc 15 BranchElimination::BranchElimination(Editor* editor, JSGraph* js_graph,
17 : AdvancedReducer(editor),
redundancy-elimination.cc 13 RedundancyElimination::RedundancyElimination(Editor* editor, Zone* zone)
14 : AdvancedReducer(editor), node_checks_(zone), zone_(zone) {}
simplified-operator-reducer.cc 35 SimplifiedOperatorReducer::SimplifiedOperatorReducer(Editor* editor,
37 : AdvancedReducer(editor), jsgraph_(jsgraph) {}
  /external/v8/tools/release/
create_release.py 134 print ("Please press <Return> to have your EDITOR open the ChangeLog "
136 "save the file and exit your EDITOR. ")
138 self.Editor(self.Config("CHANGELOG_ENTRY_FILE"))

Completed in 1975 milliseconds

<<11121314151617