HomeSort by relevance Sort by last modified time
    Searched refs:edit (Results 276 - 300 of 525) sorted by null

<<11121314151617181920>>

  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
DiskLruCache.java 75 * <p>Clients call {@link #edit} to create or update the values of an entry. An
77 * edited then {@link #edit} will return null.
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
96 * an error occurs while writing a cache value, the edit will fail silently.
168 * a sequence number each time an edit is committed. A snapshot is stale if
511 * edit is in progress.
513 public Editor edit(String key) throws IOException { method in class:DiskLruCache
514 return edit(key, ANY_SEQUENCE_NUMBER);
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
529 return null; // another edit is in progres
746 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
DiskLruCache.java 75 * <p>Clients call {@link #edit} to create or update the values of an entry. An
77 * edited then {@link #edit} will return null.
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
96 * an error occurs while writing a cache value, the edit will fail silently.
168 * a sequence number each time an edit is committed. A snapshot is stale if
511 * edit is in progress.
513 public Editor edit(String key) throws IOException { method in class:DiskLruCache
514 return edit(key, ANY_SEQUENCE_NUMBER);
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
529 return null; // another edit is in progres
746 public Editor edit() throws IOException { method in class:DiskLruCache.Snapshot
    [all...]
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DiskLruCache.java 60 * <p>Clients call {@link #edit} to create or update the values of an entry. An
62 * edited then {@link #edit} will return null.
71 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
81 * an error occurs while writing a cache value, the edit will fail silently.
152 * a sequence number each time an edit is committed. A snapshot is stale if
438 * edit is in progress.
440 public Editor edit(String key) throws IOException { method in class:DiskLruCache
441 return edit(key, ANY_SEQUENCE_NUMBER);
444 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { method in class:DiskLruCache
455 return null; // Another edit is in progress
684 public Editor edit() throws IOException { method in class:DiskLruCache.Value
    [all...]
  /frameworks/base/tests/StatusBar/src/com/android/statusbartest/
NotificationBuilderTest.java 212 SpannableStringBuilder edit = new SpannableStringBuilder(in); local
213 while (i<edit.length()) {
214 if (edit.charAt(i) == ch) {
215 edit.replace(i, i+1, sub);
221 return edit;
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnEN.java 493 EditorInfo edit = getCurrentInputEditorInfo(); local
494 if( edit.inputType == EditorInfo.TYPE_CLASS_PHONE){
597 EditorInfo edit = getCurrentInputEditorInfo(); local
632 int shift = (mAutoCaps) ? getShiftKeyState(edit) : 0;
664 if (edit.inputType == EditorInfo.TYPE_CLASS_PHONE) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 131 * <li> Create an AST rewriter to edit the source Java file and replace all occurrences by the
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 141 TextEdit edit = format(model, mRegion.getOffset(), local
143 if (edit != null) {
146 edit.apply(document);
178 TextEdit edit = new MultiTextEdit(); local
190 return edit;
360 edit.addChild(replaceEdit);
374 return edit;
380 * the equivalent unformatted text in the document, but the actual edit range may be
381 * adjusted (for example to make the edit smaller if the beginning and/or end is
526 * Guess what style to use to edit the given document - layout, resource, manifest, ... ? *
    [all...]
  /external/selinux/policycoreutils/gui/
portsPage.py 68 self.edit = True
74 if self.edit:
159 if self.edit:
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetService.java 106 prefs.edit().putLong(STATE_CURRENT_FOLDER, fid).commit();
114 pref.edit()
191 mPreferences.edit()
  /packages/apps/Launcher2/src/com/android/launcher2/
InstallShortcutReceiver.java 101 SharedPreferences.Editor editor = sharedPrefs.edit();
150 sharedPrefs.edit().putStringSet(APPS_PENDING_INSTALL, new HashSet<String>()).commit();
304 SharedPreferences.Editor editor = sharedPrefs.edit();
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
MailAppProvider.java 332 final SharedPreferences.Editor editor = getPreferences().edit();
350 final SharedPreferences.Editor editor = getPreferences().edit();
412 final SharedPreferences.Editor editor = getPreferences().edit();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardThemeTests.java 68 mPrefs.edit().putString(prefKey, themeIdString).apply();
73 mPrefs.edit().remove(prefKey).apply();
78 mPrefs.edit().putString(prefKey, ILLEGAL_THEME_ID_STRING).apply();
  /development/samples/Spinner/src/com/android/example/spinner/
SpinnerActivity.java 341 SharedPreferences.Editor e = p.edit();
  /external/clang/include/clang/Edit/
Commit.h 13 #include "clang/Edit/FileOffset.h"
22 namespace edit { namespace in namespace:clang
33 struct Edit {
54 SmallVector<Edit, 8> CachedEdits;
109 typedef SmallVectorImpl<Edit>::const_iterator edit_iterator;
  /external/openfst/src/include/fst/
fstlib.h 56 #include <fst/edit-fst.h>
  /external/openfst/src/lib/
fst.cc 28 #include <fst/edit-fst.h>
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/
TestSharedPreferences.java 74 public Editor edit() { method in class:TestSharedPreferences
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/content/
TestSharedPreferencesTest.java 32 editor = sharedPreferences.edit();
  /external/zlib/src/
make_vms.com 77 $ Make = f$edit( Make, "trim")
141 $ work = f$edit(line, "compress,trim")
309 $ cparm = f$edit(p'i',"upcase")
313 $ if f$edit(cparm,"trim") .nes. ""
325 $ if f$locate("AS_IS",f$edit(ccopt,"UPCASE")) .lt. f$length(ccopt) -
509 $ myrec = f$edit(rec - "\", "trim,compress")
528 $ rec = f$edit(rec,"TRIM")
530 $ rec = f$edit(rec - "#", "TRIM")
762 f$edit(shared_proc,"upcase"),shared_proc)
782 $ shared_proc = f$edit(line,"collapse"
    [all...]
  /frameworks/base/core/java/android/preference/
EditTextPreference.java 47 * The edit text shown in the dialog.
59 mEditText.setId(com.android.internal.R.id.edit);
  /packages/apps/Browser/src/com/android/browser/
SystemAllowGeolocationOrigins.java 102 preferences.edit()
  /packages/apps/Calendar/tests/src/com/android/calendar/
FakeSharedPreferences.java 33 public Editor edit() { method in class:FakeSharedPreferences
  /packages/apps/Camera/src/com/android/camera/
ListPreference.java 137 SharedPreferences.Editor editor = getSharedPreferences().edit();
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/quickcontact/
QuickContactTestsActivity.java 102 final Editor editor = sharedPreferences.edit();
  /packages/apps/Email/tests/src/com/android/email/
MockSharedPreferences.java 37 public Editor edit() { method in class:MockSharedPreferences

Completed in 1395 milliseconds

<<11121314151617181920>>