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

1 2 3 4 5 6 78 91011>>

  /developers/build/prebuilts/gradle/ActivityInstrumentation/Application/src/main/java/com/example/android/activityinstrumentation/
MainActivity.java 101 mPrefs.edit().putInt(PREF_SPINNER_POS, position).commit();
106 mPrefs.edit().remove(PREF_SPINNER_POS).commit();
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageLogger.java 42 prefs.edit()
56 getPrefs(context).edit().remove(LOG_KEY).apply();
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageLogger.java 42 prefs.edit()
56 getPrefs(context).edit().remove(LOG_KEY).apply();
  /developers/samples/android/testing/ActivityInstrumentation/Application/src/main/java/com/example/android/activityinstrumentation/
MainActivity.java 101 mPrefs.edit().putInt(PREF_SPINNER_POS, position).commit();
106 mPrefs.edit().remove(PREF_SPINNER_POS).commit();
  /development/samples/browseable/ActivityInstrumentation/src/com.example.android.activityinstrumentation/
MainActivity.java 101 mPrefs.edit().putInt(PREF_SPINNER_POS, position).commit();
106 mPrefs.edit().remove(PREF_SPINNER_POS).commit();
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
MessageLogger.java 42 prefs.edit()
56 getPrefs(context).edit().remove(LOG_KEY).apply();
  /external/clang/tools/clang-format/
clang-format-sublime.py 30 def run(self, edit):
51 edit, sublime.Region(0, self.view.size()),
  /packages/apps/DocumentsUI/src/com/android/documentsui/prefs/
BackupAgent.java 80 mBackupPreferences.edit().clear().apply();
91 mBackupPreferences.edit().clear().apply();
PrefsBackupHelper.java 46 Editor editor = prefs.edit();
57 Editor editor = mDefaultPreferences.edit();
  /packages/apps/Settings/src/com/android/settings/development/
DevelopmentSettingsEnabler.java 49 prefs.edit()
70 mDevelopmentPreferences.edit()
  /packages/apps/TV/common/src/com/android/tv/common/feature/
SharedPreferencesFeature.java 75 mSharedPreferences.edit().putBoolean(mKey, enable).apply();
78 mSharedPreferences.edit().putBoolean(mKey, enable).apply();
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
Setting.java 82 mSharedPreferences.edit().putInt(mKey, value).apply();
87 mSharedPreferences.edit().putString(mKey, value).apply();
  /prebuilts/go/darwin-x86/doc/articles/wiki/
final-parsetemplate.go 36 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
47 renderTemplate(w, "edit", p)
73 var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
88 http.HandleFunc("/edit/", makeHandler(editHandler))
part3-errorhandling.go 41 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
48 title := r.URL.Path[len("/edit/"):]
53 renderTemplate(w, "edit", p)
70 http.HandleFunc("/edit/", editHandler)
  /prebuilts/go/linux-x86/doc/articles/wiki/
final-parsetemplate.go 36 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
47 renderTemplate(w, "edit", p)
73 var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
88 http.HandleFunc("/edit/", makeHandler(editHandler))
part3-errorhandling.go 41 http.Redirect(w, r, "/edit/"+title, http.StatusFound)
48 title := r.URL.Path[len("/edit/"):]
53 renderTemplate(w, "edit", p)
70 http.HandleFunc("/edit/", editHandler)
  /external/clang/lib/Edit/
EditedSource.cpp 10 #include "clang/Edit/EditedSource.h"
13 #include "clang/Edit/Commit.h"
14 #include "clang/Edit/EditsReceiver.h"
20 using namespace edit;
274 for (edit::Commit::edit_iterator
276 const edit::Commit::Edit &edit = *I; local
277 switch (edit.Kind) {
278 case edit::Commit::Act_Insert
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Prefs.java 85 get(context).edit().putBoolean(key, value).apply();
93 get(context).edit().putInt(key, value).apply();
101 get(context).edit().putLong(key, value).apply();
109 get(context).edit().putString(key, value).apply();
117 get(context).edit().remove(key).apply();
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
VoicemailNotificationSettingsUtil.java 49 SharedPreferences.Editor editor = prefs.edit();
70 SharedPreferences.Editor editor = prefs.edit();
110 SharedPreferences.Editor editor = prefs.edit();
123 SharedPreferences.Editor editor = prefs.edit();
149 SharedPreferences.Editor editor = prefs.edit();
  /packages/apps/EmergencyInfo/tests/unit/src/com/android/emergency/preferences/
EmergencyContactsPreferenceTest.java 40 import com.android.emergency.edit.EditInfoActivity;
41 import com.android.emergency.edit.EditInfoFragment;
73 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().clear().commit();
79 .edit().putString(PreferenceKeys.KEY_EMERGENCY_CONTACTS, contactUri.toString())
91 PreferenceManager.getDefaultSharedPreferences(mTargetContext).edit().clear().commit();
  /packages/apps/Messaging/src/com/android/messaging/util/
BuglePrefsImpl.java 85 final SharedPreferences.Editor editor = prefs.edit();
95 final SharedPreferences.Editor editor = prefs.edit();
105 final SharedPreferences.Editor editor = prefs.edit();
115 final SharedPreferences.Editor editor = prefs.edit();
131 final SharedPreferences.Editor editor = prefs.edit();
  /packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
ValidatedEditTextPreferenceTest.java 63 when(mView.findViewById(android.R.id.edit)).thenReturn(null);
73 when(mView.findViewById(android.R.id.edit)).thenReturn(editText);
86 when(mView.findViewById(android.R.id.edit)).thenReturn(editText);
97 when(mView.findViewById(android.R.id.edit)).thenReturn(editText);
108 when(mView.findViewById(android.R.id.edit)).thenReturn(editText);
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/datasource/
SharedPrefsAutofillRepository.java 99 .edit()
115 .edit()
137 .edit()
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/datasource/
SharedPrefsAutofillRepository.java 99 .edit()
115 .edit()
137 .edit()
  /packages/apps/DeskClock/src/com/android/deskclock/data/
StopwatchDAO.java 78 final SharedPreferences.Editor editor = prefs.edit();
132 prefs.edit()
142 final SharedPreferences.Editor editor = prefs.edit();

Completed in 2649 milliseconds

1 2 3 4 5 6 78 91011>>