OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bulkInsert
(Results
1 - 14
of
14
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowContentProviderClient.java
72
protected int
bulkInsert
(Uri url, ContentValues[] initialValues) throws RemoteException {
73
return provider.
bulkInsert
(url, initialValues);
ShadowContentResolver.java
390
* ContentProvider#
bulkInsert
(Uri, ContentValues[])} method will be invoked.
399
protected final int
bulkInsert
(Uri url, ContentValues[] values) {
407
return provider.
bulkInsert
(url, values);
716
* {@link ContentResolver#
bulkInsert
(Uri, ContentValues[])}.
/cts/tests/tests/content/src/android/content/cts/
ContentProviderClientTest.java
219
mContentProviderClient.
bulkInsert
(URI, VALUES_ARRAY);
220
verify(mIContentProvider).
bulkInsert
(PACKAGE_NAME, URI, VALUES_ARRAY);
224
when(mIContentProvider.
bulkInsert
(PACKAGE_NAME, URI, VALUES_ARRAY))
227
testTimeout(() -> mContentProviderClient.
bulkInsert
(URI, VALUES_ARRAY));
229
verify(mIContentProvider).
bulkInsert
(PACKAGE_NAME, URI, VALUES_ARRAY);
ContentProviderTest.java
116
assertEquals(count, mockContentProvider.
bulkInsert
(uri, values));
121
assertEquals(count, mockContentProvider.
bulkInsert
(null, values));
ContentResolverWrapTest.java
110
doReturn(42).when(mProvider).
bulkInsert
(URI, VALUES_ARRAY);
111
assertEquals(42, mResolver.
bulkInsert
(URI, VALUES_ARRAY));
ContentResolverTest.java
[
all
...]
/development/samples/training/threadsample/src/com/example/android/threadsample/
DataProvider.java
345
* @see android.content.ContentProvider#
bulkInsert
(Uri, ContentValues[])
352
public int
bulkInsert
(Uri uri, ContentValues[] insertValuesArray) {
396
// The semantics of
bulkInsert
is to return the number of rows inserted.
403
return super.
bulkInsert
(uri, insertValuesArray);
RSSPullService.java
209
getContentResolver().
bulkInsert
(
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowContentProviderClientTest.java
121
client.
bulkInsert
(URI, values);
122
verify(provider).
bulkInsert
(URI, values);
/cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
MockTvInputSetupActivity.java
115
getContentResolver().
bulkInsert
(Programs.CONTENT_URI, list.toArray(
/cts/tests/tests/tv/src/android/media/tv/cts/
StubTunerTvInputService.java
67
resolver.
bulkInsert
(TvContract.Channels.CONTENT_URI,
/development/apps/Development/src/com/android/development/
MediaScannerActivity.java
192
mResolver.
bulkInsert
(mAudioUri, mValues);
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DatabaseContentProvider.java
378
public int
bulkInsert
(Uri uri, ContentValues[] values) {
/cts/tests/tests/provider/src/android/provider/cts/
SmsBackupRestoreTest.java
148
mContentResolver.
bulkInsert
(Telephony.Sms.CONTENT_URI, smsContentValues);
Completed in 118 milliseconds