/cts/tests/tests/media/src/android/media/cts/ |
CodecUtils.java | 216 md.update(bb, 0, width * height);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_IsSuperPrimaryName.java | 118 mResolver.update(nonPrimaryName.getUri(), values, null, null); 175 mResolver.update(AggregationExceptions.CONTENT_URI, values, null, null);
|
ContactsContract_RawContactsTest.java | 183 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/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/recommendation/ |
RecommendationBuilder.java | 213 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { method in class:RecommendationBuilder.RecommendationBackgroundContentProvider
|
/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 | 283 update(); method 310 update(); method 329 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 | 283 update(); method 310 update(); method 329 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);
|
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/ |
RunnerController.java | 97 public void update() { method in class:RunnerController 102 update(); method 108 update(); method
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
NullCipherTest.java | 96 * Class under test for byte[] update(byte[]) 100 byte[] r = c.update(b); 106 * Class under test for byte[] update(byte[], int, int) 110 byte[] r = c.update(b, 0, 5); 114 r = c.update(b, 1, 3); 122 * Class under test for int update(byte[], int, int, byte[]) 127 c.update(b, 0, 5, r); 132 * Class under test for int update(byte[], int, int, byte[], int) 137 c.update(b, 0, 5, r, 0); 185 * Class under test for byte[] update(byte[], int, int [all...] |
/external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/ |
Cipher_ImplTest.java | 259 * Class under test for byte[] update(byte[]) 268 c.update(b); 278 c.update(null); 282 assertNull(c.update(new byte[0]));
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
MessageDigest1Test.java | 43 * @tests java.security.MessageDigest#update(byte) 47 md.update((byte) 1); 52 * @tests java.security.MessageDigest#update(byte[], int, int) 57 md.update(bytes, 1, 2); 63 md.update(null, 0, 1); 69 md.update(bytes, 0, bytes.length + 1); 75 md.update(bytes, Integer.MAX_VALUE, 1); 91 md.update(bytes, offset, len); 96 * @tests java.security.MessageDigest#update(byte[]) 101 md.update(b) [all...] |
Signature2Test.java | 173 sig.update(MESSAGE.getBytes()); 186 * @tests java.security.Signature#update(byte[]) 193 sig.update(bytes); 197 * @tests java.security.Signature#update(byte[], int, int) 204 sig.update(bytes, 0, bytes.length); 208 * @tests java.security.Signature#update(byte) 214 sig.update(MESSAGE.getBytes()[0]); 223 sig.update(MESSAGE.getBytes()); 228 sig.update(MESSAGE.getBytes());
|
/external/apache-harmony/security/src/test/api/java.injected/java/security/ |
SignatureTest.java | 187 * Class under test for void update(byte) 192 s.update((byte) 1); 198 s.update((byte) 1); 200 s.update((byte) 1); 203 assertTrue("update() failed", s.runEngineUpdate1); 207 * Class under test for void update(byte[]) 213 s.update(b); 219 s.update(b); 221 s.update(b); 224 assertTrue("update() failed", s.runEngineUpdate2) [all...] |