Searched refs:update (Results 76 - 100 of 233) sorted by relevance

12345678910

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForPhoneNumber.java68 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, method in class:DataRowHandlerForPhoneNumber
83 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) {
H A DAbstractContactsProvider.java135 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:AbstractContactsProvider
H A DCallLogProvider.java208 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:CallLogProvider
230 throw new UnsupportedOperationException("Cannot update URL: " + uri);
233 return getDatabaseModifier(db).update(Tables.CALLS, values, selectionBuilder.build(),
305 * insert and update operations to check that ContentValues with voicemail
H A DDbModifierWithNotification.java140 public int update(String table, ContentValues values, String whereClause, String[] whereArgs) { method in class:DbModifierWithNotification
143 int count = mDb.update(table, values, whereClause, whereArgs);
185 * Returns the source package that gets affected (in an insert/update operation) by the supplied
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/
H A DGenericWaveRS.java221 public void update() { method in class:GenericWaveRS
230 update();
/packages/apps/Settings/src/com/android/settings/wifi/
H A DAccessPoint.java173 update(mInfo, mState);
247 boolean update(ScanResult result) { method in class:AccessPoint
266 void update(WifiInfo info, DetailedState state) { method in class:AccessPoint
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DLegacyContactsProviderTest.java89 mResolver.update(uri, values, null, null);
94 mResolver.update(People.CONTENT_URI, values, People._ID + "=" + personId, null);
380 mResolver.update(uri, values, null, null);
449 mResolver.update(uri, values, null, null);
587 mResolver.update(uri, values, null, null);
627 mResolver.update(uri, values, null, null);
654 mResolver.update(groupUri, values, null, null);
723 // FIXME this column was unavailable for update in legacy ContactsProvider
729 mResolver.update(photoUri, values, null, null);
738 mResolver.update(contentUr
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppObexClientSession.java329 mContext1.getContentResolver().update(contentUri, updateValues, null, null);
388 mContext1.getContentResolver().update(contentUri, updateValues, null, null);
438 mContext1.getContentResolver().update(contentUri, updateValues, null,
468 mContext1.getContentResolver().update(contentUri, updateValues,
H A DConstants.java198 context.getContentResolver().update(contentUri, updateValues, null, null);
H A DBluetoothOppReceiver.java208 context.getContentResolver().update(intent.getData(), values, null, null);
218 context.getContentResolver().update(BluetoothShare.CONTENT_URI, updateValues,
/packages/apps/Browser/src/com/android/browser/
H A DBookmarkDragHandler.java118 cr.update(uri, values, null, null);
H A DDataController.java253 cr.update(ContentUris.withAppendedId(History.CONTENT_URI, c.getLong(0)),
298 cr.update(History.CONTENT_URI, values, History.URL + "=?",
/packages/apps/Email/src/com/android/email/activity/
H A DRecentMailboxManager.java144 mContext.getContentResolver().update(
/packages/apps/Email/src/com/android/email/activity/setup/
H A DEditQuickResponseDialog.java147 // update the ListView of QuickResponses upon insertion.
156 mQuickResponse.update(context, values);
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DAbstractSyncParser.java220 mMailbox.update(mContext, cv);
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DImage.java64 mContentResolver.update(mUri, values, null, null);
/packages/apps/Phone/src/com/android/phone/
H A DInCallControlState.java98 public void update() { method in class:InCallControlState
/packages/apps/Settings/src/com/android/settings/
H A DLocationSettings.java122 public void update(Observable o, Object arg) {
/packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
H A DBackendTest.java115 crc.update(bytes, 0, byteCount);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DSizeLimitActivity.java133 getContentResolver().update(mCurrentUri, values , null, null);
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
H A DDownloadManagerFunctionalTest.java161 int numChanged = mResolver.update(downloadUri, values, null, null);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DEmailContent.java64 // delete, or update) and is intended as an optimization for use by clients of message list
172 public int update(Context context, ContentValues contentValues) { method in class:EmailContent
176 return context.getContentResolver().update(getUri(), contentValues, null, null);
179 static public int update(Context context, Uri baseUri, long id, ContentValues contentValues) { method in class:EmailContent
181 .update(ContentUris.withAppendedId(baseUri, id), contentValues, null, null);
382 resolver.update(uri, values, null, null);
442 public boolean update() { method in class:EmailContent.Body
826 public boolean update() { method in class:EmailContent.Message
843 // possible, and (b) override (and throw) if anyone tries to call save() or update()
850 // Call update, rathe
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DEdgeEffect.java173 * This will update the state of the current visual effect and its associated animation.
306 update();
345 private void update() { method in class:EdgeEffect
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DQsbApplication.java209 corpora.update();
220 mCorpora.update();
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DBalloonHint.java206 update(locationInParent[0], locationInParent[1]
252 // If update() is called to update both size and position, the system
329 update(mPositionInParent[0], mPositionInParent[1]

Completed in 381 milliseconds

12345678910