HomeSort by relevance Sort by last modified time
    Searched refs:edit (Results 51 - 75 of 1124) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/EmergencyInfo/tests/src/com/android/emergency/view/
ViewInfoActivityTest.java 37 import com.android.emergency.edit.EditInfoActivity;
68 PreferenceManager.getDefaultSharedPreferences(getActivity()).edit().clear().commit();
73 PreferenceManager.getDefaultSharedPreferences(getActivity()).edit().clear().commit();
93 .edit().putString(PreferenceKeys.KEY_NAME, name).commit();
112 .edit().putString(PreferenceKeys.KEY_ALLERGIES, allergies).commit();
132 .edit().putString(PreferenceKeys.KEY_EMERGENCY_CONTACTS, emergencyContact).commit();
154 PreferenceManager.getDefaultSharedPreferences(getActivity()).edit()
159 .edit().putString(PreferenceKeys.KEY_ALLERGIES, allergies).commit();
  /packages/apps/TV/common/src/com/android/tv/common/feature/
SharedPreferencesFeature.java 76 mSharedPreferences.edit().putBoolean(mKey, enable).apply();
79 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/darwin-x86/pkg/bootstrap/src/bootstrap/link/internal/amd64/
z.go 1 // Do not edit. Bootstrap copy of /Volumes/Android/buildbot/src/android/build-tools/out/obj/go/src/cmd/link/internal/amd64/z.go
  /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)
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/link/internal/amd64/
z.go 1 // Do not edit. Bootstrap copy of /usr/local/google/buildbot/src/android/build-tools/out/obj/go/src/cmd/link/internal/amd64/z.go
  /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 76 get(context).edit().putBoolean(key, value).apply();
84 get(context).edit().putInt(key, value).apply();
92 get(context).edit().putLong(key, value).apply();
100 get(context).edit().putString(key, value).apply();
108 get(context).edit().remove(key).apply();
  /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/src/com/android/settings/bluetooth/
LocalBluetoothPreferences.java 136 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
145 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
151 // Load the shared preferences and edit it on a background
155 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
174 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
180 SharedPreferences.Editor editor = getSharedPreferences(context).edit();
  /packages/services/Telephony/src/com/android/phone/settings/
VoicemailNotificationSettingsUtil.java 50 SharedPreferences.Editor editor = prefs.edit();
65 SharedPreferences.Editor editor = prefs.edit();
99 SharedPreferences.Editor editor = prefs.edit();
112 SharedPreferences.Editor editor = prefs.edit();
138 SharedPreferences.Editor editor = prefs.edit();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ImportantNoticeUtilsTests.java 70 mPref.edit().putInt(key, value).apply();
78 mPref.edit().putLong(key, value).apply();
83 mPref.edit().remove(key).apply();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategyTest.java 36 ReplaceEdit edit = AndroidXmlFormattingStrategy.createReplaceEdit(document, replaceStart, local
38 assertNotNull(edit);
39 edit.apply(document);
  /system/core/libutils/
String16.cpp 357 char16_t* edit = NULL; local
361 if (!edit) {
362 SharedBuffer* buf = SharedBuffer::bufferFromData(mString)->edit();
366 edit = (char16_t*)buf->data();
367 mString = str = edit;
369 edit[i] = tolower((char)v);
379 char16_t* edit = NULL; local
382 if (!edit) {
383 SharedBuffer* buf = SharedBuffer::bufferFromData(mString)->edit();
387 edit = (char16_t*)buf->data()
    [all...]
  /frameworks/av/media/mtp/
MtpServer.cpp 235 ObjectEdit* edit = mObjectEditList[i]; local
236 commitEdit(edit);
237 delete edit;
284 ObjectEdit* edit = new ObjectEdit(handle, path, size, format, fd); local
285 mObjectEditList.add(edit);
291 ObjectEdit* edit = mObjectEditList[i]; local
292 if (edit->mHandle == handle) return edit;
300 ObjectEdit* edit = mObjectEditList[i]; local
301 if (edit->mHandle == handle)
739 ObjectEdit* edit = getEditObject(handle); local
1191 ObjectEdit* edit = getEditObject(handle); local
1259 ObjectEdit* edit = getEditObject(handle); local
1306 ObjectEdit* edit = getEditObject(handle); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
aio_abi.h 10 *** To edit the content of this header, modify the corresponding
23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
51 #error edit for your odd byteorder .
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /developers/build/prebuilts/gradle/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
AccountStorage.java 43 prefs.edit().putString(PREF_ACCOUNT_NUMBER, s).commit();
  /developers/samples/android/connectivity/nfc/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
AccountStorage.java 43 prefs.edit().putString(PREF_ACCOUNT_NUMBER, s).commit();
  /development/ndk/platforms/android-21/include/linux/
aio_abi.h 10 *** To edit the content of this header, modify the corresponding
23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
51 #error edit for your odd byteorder.
53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS *
    [all...]
  /development/ndk/platforms/android-3/include/linux/
aio_abi.h 40 #error edit for your odd byteorder.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete1.java 35 AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.edit);
AutoComplete3.java 38 findViewById(R.id.edit);

Completed in 2144 milliseconds

1 23 4 5 6 7 8 91011>>