Home
last modified time | relevance | path

Searched refs:updated (Results 1 – 17 of 17) sorted by relevance

/packages/apps/Browser/tests/src/com/android/browser/tests/utils/
DBP2TestCaseHelper.java173 boolean updated = modifyCount == 1; in updateBookmark()
174 if (updated) { in updateBookmark()
175 assertObserversTriggered(updated, mBookmarksObserver, mWidgetObserver); in updateBookmark()
180 return updated; in updateBookmark()
205 boolean updated = modifyCount == 1; in updateHistory()
206 if (updated) { in updateHistory()
207 assertObserversTriggered(updated, mHistoryObserver); in updateHistory()
212 return updated; in updateHistory()
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
DLocalSource.java100 long updated = cursor.getLong(updatedIndex); in findAlbums() local
101 data.updated = (data.updated == 0 ? in findAlbums()
102 updated : in findAlbums()
103 Math.min(data.updated, updated)); in findAlbums()
DAlbumDataAdapter.java136 if (a.updated == b.updated) { in compare()
139 return (int) Math.signum(b.updated - a.updated); in compare()
DPicasaSource.java335 long updated = 0; in findAlbums() local
358 updated = cursor.getLong(updatedIndex); in findAlbums()
365 data.updated = (long) Math.max(data.updated, updated); in findAlbums()
367 if (data.thumbnailUrl == null || data.updated == updated) { in findAlbums()
DPhotoSource.java65 public long updated; field in PhotoSource.AlbumData
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DAbstractContactsProvider.java166 int updated = updateInTransaction(uri, values, selection, selectionArgs); in update() local
167 if (updated > 0) { in update()
171 return updated; in update()
DLegacyApiSupport.java1241 int updated = mContactsProvider.updateInTransaction(Data.CONTENT_URI, mValues, in updateLegacyPhotoData() local
1245 if (updated == 0) { in updateLegacyPhotoData()
DContactsProvider2.java4335 boolean updated = in updateData()
4341 return updated ? 1 : 0; in updateData()
/packages/apps/Mms/src/com/android/mms/ui/
DSearchActivity.java191 public void onUpdate(Contact updated) {
192 TextView tv = mContactMap.get(updated);
194 tv.setText(updated.getNameAndNumber());
DConversationListItem.java165 public void onUpdate(Contact updated) { in onUpdate() argument
167 Log.v(TAG, "onUpdate: " + this + " contact: " + updated); in onUpdate()
DComposeMessageActivity.java4303 public void onUpdate(final Contact updated) { in onUpdate() argument
4311 log("[CMA] onUpdate contact updated: " + updated); in onUpdate()
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
DShortcutRepositoryTest.java491 final SuggestionData updated = new SuggestionData(APP_SOURCE) in testRefreshShortcut() local
497 refreshShortcut(APP_SOURCE, "app1_id", updated); in testRefreshShortcut()
500 "app", updated); in testRefreshShortcut()
514 final SuggestionData updated = new SuggestionData(APP_SOURCE) in testRefreshShortcutChangedIntent() local
521 refreshShortcut(APP_SOURCE, "app1_id", updated); in testRefreshShortcutChangedIntent()
524 "app", updated); in testRefreshShortcutChangedIntent()
/packages/inputmethods/LatinIME/tools/maketext/res/com/android/inputmethod/keyboard/internal/
DKeyboardTextsSet.tmpl33 * This file must be updated when any text resources in keyboard layout files have been changed.
43 * The updated source file will be generated to the following path (this file).
/packages/apps/Mms/src/com/android/mms/widget/
DMmsWidgetService.java348 public void onUpdate(Contact updated) { in onUpdate() argument
350 Log.v(TAG, "onUpdate from Contact: " + updated); in onUpdate()
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
DTelephonyProvider.java573 int updated = db.update("carriers", s_currentSetMap, in insert() local
576 if (updated > 0) in insert()
/packages/apps/Contacts/src/com/android/contacts/calllog/
DCallLogAdapter.java370 boolean updated = (existingInfo != ContactInfo.EMPTY) && !info.equals(existingInfo); in queryContactInfo()
378 return updated; in queryContactInfo()
/packages/apps/Mms/src/com/android/mms/data/
DContact.java97 public void onUpdate(Contact updated); in onUpdate() argument