Searched defs:edit (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DPrefs.java36 public static SharedPreferences.Editor edit(Context context) { method in class:Prefs
37 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE).edit();
/frameworks/native/libs/utils/
H A DSharedBuffer.cpp45 SharedBuffer* SharedBuffer::edit() const function in class:android::SharedBuffer
H A DString16.cpp339 char16_t* edit = NULL; local
343 if (!edit) {
344 SharedBuffer* buf = SharedBuffer::bufferFromData(mString)->edit();
348 edit = (char16_t*)buf->data();
349 mString = str = edit;
351 edit[i] = tolower((char)v);
361 char16_t* edit = NULL; local
364 if (!edit) {
365 SharedBuffer* buf = SharedBuffer::bufferFromData(mString)->edit();
369 edit
[all...]
/frameworks/base/core/java/android/content/
H A DSharedPreferences.java350 Editor edit(); method in interface:SharedPreferences
/frameworks/native/include/utils/
H A DBasicHashtable.h58 inline void edit() { function in class:android::BasicHashtableImpl
237 * index: The index of the entry to edit. Must be a valid index within
241 edit();
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java273 public Editor edit() { method in class:SharedPreferencesImpl
278 // context.getSharedPreferences(..).edit().putString(..).apply()
/frameworks/av/media/mtp/
H A DMtpServer.cpp232 ObjectEdit* edit = mObjectEditList[i]; local
233 commitEdit(edit);
234 delete edit;
276 ObjectEdit* edit = new ObjectEdit(handle, path, size, format, fd); local
277 mObjectEditList.add(edit);
283 ObjectEdit* edit = mObjectEditList[i]; local
284 if (edit->mHandle == handle) return edit;
292 ObjectEdit* edit = mObjectEditList[i]; local
293 if (edit
302 commitEdit(ObjectEdit* edit) argument
690 ObjectEdit* edit = getEditObject(handle); local
1099 ObjectEdit* edit = getEditObject(handle); local
1156 ObjectEdit* edit = getEditObject(handle); local
1199 ObjectEdit* edit = getEditObject(handle); local
[all...]

Completed in 6562 milliseconds