HomeSort by relevance Sort by last modified time
    Searched defs:update (Results 426 - 450 of 1241) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/app/
ActivityOptions.java 664 * Update the current values in this ActivityOptions from those supplied
668 public void update(ActivityOptions otherOptions) { method in class:ActivityOptions
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerUI.java 182 mWarnings.update(mBatteryLevel, bucket, mScreenOffTime);
250 void update(int batteryLevel, int bucket, long screenOffTime); method in interface:PowerUI.WarningsUI
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureTest.java 335 * Class under test for void update(byte)
340 s.update((byte)1);
346 s.update((byte) 1);
348 s.update((byte) 1);
351 assertTrue("update() failed", s.runEngineUpdate1);
355 sig.update((byte) 42);
363 * Class under test for void update(byte[])
369 s.update(b);
375 s.update(b);
377 s.update(b)
    [all...]
  /packages/apps/Email/src/com/android/email/service/
Pop3Service.java 214 mResolver.update(mAttachmentUri, mContentValues, null, null);
293 // Finally, delete the update
402 resolver.update(ContentUris.withAppendedId(Attachment.CONTENT_URI, att.mId),
419 resolver.update(attUri, values, null, null);
  /art/runtime/base/
bit_vector.cc 171 // Update src_size to how many cells we actually care about: where the bit is + 1.
187 uint32_t update = existing | src->GetRawStorageWord(idx); local
188 if (existing != update) {
190 storage_[idx] = update;
206 // Update union_with_size to how many cells we actually care about: where the bit is + 1.
225 uint32_t update = existing | local
227 if (existing != update) {
229 storage_[idx] = update;
235 uint32_t update = existing | union_with->GetRawStorageWord(idx); local
236 if (existing != update) {
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 150 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:TestResultsProvider
180 int numUpdated = db.update(TABLE_NAME, values, selection, selectionArgs);
212 int numUpdated = resolver.update(TestResultsProvider.RESULTS_CONTENT_URI, values,
  /cts/tests/tests/content/src/android/content/cts/
DummyProvider.java 161 * @see android.content.ContentProvider#update(android.net.Uri,
165 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:DummyProvider
171 int count = db.update(tbName, values, selection, selectionArgs);
MockContentProvider.java 313 public int update(Uri uri, ContentValues values, String selection, method in class:MockContentProvider
321 count = db.update("TestTable1", values, selection, selectionArgs);
326 count = db.update("TestTable1", values, "_id=" + segment +
332 count = db.update("TestTable2", values, selection, selectionArgs);
337 count = db.update("TestTable2", values, "_id=" + segment +
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_FrequentsStrequentsTest.java 269 * Given a contact id, update the contact corresponding to that contactId so that it now shows
277 mResolver.update(ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId), values,
294 mResolver.update(uri, new ContentValues(), null, null);
ContactsContract_RawContactsTest.java 149 RawContactUtil.update(mResolver, ids.mRawContactId, values);
MediaStore_Audio_AlbumsTest.java 122 // do not support update operation of the albums
126 mContentResolver.update(audioAlbumsUri, albumValues, selection, selectionArgs);
MediaStore_Audio_ArtistsTest.java 92 // do not support update operation of the artists
96 mContentResolver.update(artistsUri, artistValues, selection, selectionArgs);
MediaStore_Audio_Genres_MembersTest.java 235 // update the member
239 mContentResolver.update(membersUri, values, null, null);
  /developers/build/prebuilts/gradle/BasicMediaDecoder/Application/src/main/java/com/example/android/common/media/
MediaCodecWrapper.java 283 update(); method
310 update(); method
329 private void update() { method in class:MediaCodecWrapper
  /developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/java/com/example/android/common/media/
MediaCodecWrapper.java 283 update(); method
310 update(); method
329 private void update() { method in class:MediaCodecWrapper
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 177 * Update an etry in the database by URI.
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:FeedProvider
189 .update(db, values);
196 .update(db, values);
  /developers/build/prebuilts/gradle/MediaRecorder/Application/src/main/java/com/example/android/common/media/
MediaCodecWrapper.java 283 update(); method
310 update(); method
329 private void update() { method in class:MediaCodecWrapper
  /developers/samples/android/common/src/java/com/example/android/common/media/
MediaCodecWrapper.java 283 update(); method
310 update(); method
329 private void update() { method in class:MediaCodecWrapper
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 177 * Update an etry in the database by URI.
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:FeedProvider
189 .update(db, values);
196 .update(db, values);
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 110 public int update(Uri uri, Voicemail voicemail) { method in class:VoicemailProviderHelpers
111 check(!voicemail.hasUri(), "Can't update the Uri of a voicemail", voicemail);
114 return mContentResolver.update(uri, values, null, null);
148 // Update mime_type & has_content after we are done with file update.
152 int updatedCount = mContentResolver.update(voicemailUri, values, null, null);
  /development/samples/browseable/BasicMediaDecoder/src/com.example.android.common.media/
MediaCodecWrapper.java 283 update(); method
310 update(); method
329 private void update() { method in class:MediaCodecWrapper
  /development/samples/browseable/BasicRenderScript/src/com.example.android.common.media/
MediaCodecWrapper.java 282 update(); method
309 update(); method
328 private void update() { method in class:MediaCodecWrapper
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 177 * Update an etry in the database by URI.
180 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:FeedProvider
189 .update(db, values);
196 .update(db, values);
  /development/samples/browseable/MediaRecorder/src/com.example.android.common.media/
MediaCodecWrapper.java 282 update(); method
309 update(); method
328 private void update() { method in class:MediaCodecWrapper
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java 434 * @see android.content.ContentProvider#update(Uri, ContentValues, String, String[])
436 * @param values The values to use to update the row or rows. You only need to specify column
440 * update. Use "?" to mark places that should be substituted by values in selectionArgs.
447 public int update(Uri uri, ContentValues values, String selection, method in class:DataProvider
460 int rows = localSQLiteDatabase.update(
466 // If the update succeeded, notify a change and return the number of updated rows.
472 throw new SQLiteException("Update error:" + uri);
477 throw new IllegalArgumentException("Update: Invalid URI: " + uri);

Completed in 947 milliseconds

<<11121314151617181920>>