Searched defs:insert (Results 1 - 17 of 17) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/os/
H A DMmsFileProvider.java51 public Uri insert(Uri uri, ContentValues values) { method in class:MmsFileProvider
/development/samples/ApiDemos/src/com/example/android/apis/content/
H A DFileProvider.java90 public Uri insert(Uri uri, ContentValues values) { method in class:FileProvider
/development/samples/Support4Demos/src/com/example/android/supportv4/content/
H A DSharingSupportProvider.java60 public Uri insert(Uri uri, ContentValues values) { method in class:SharingSupportProvider
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
H A DWeatherDataProvider.java109 public Uri insert(Uri uri, ContentValues values) { method in class:WeatherDataProvider
/development/samples/browseable/ActionBarCompat-ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/content/
H A DAssetProvider.java56 public Uri insert(Uri uri, ContentValues values) { method in class:AssetProvider
57 // Do not support insert requests.
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/
H A DDictionaryProvider.java189 public Uri insert(Uri uri, ContentValues values) { method in class:DictionaryProvider
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
H A DVoicemailProviderHelper.java69 public Uri insert(Voicemail voicemail); method in interface:VoicemailProviderHelper
H A DVoicemailProviderHelpers.java95 public Uri insert(Voicemail voicemail) { method in class:VoicemailProviderHelpers
106 return mContentResolver.insert(mBaseUri, contentValues);
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
H A DXmlDocumentProvider.java312 public Uri insert(Uri uri, ContentValues values) { method in class:XmlDocumentProvider
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
H A DFeedProvider.java122 public Uri insert(Uri uri, ContentValues values) { method in class:FeedProvider
/development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/db/
H A DLocationDbHelper.java83 public final long insert(LocationEntry entry) { method in class:LocationDbHelper
98 return db.insert(TABLE_NAME, "null", values);
/development/samples/training/threadsample/src/com/example/android/threadsample/
H A DDataProvider.java300 * @see android.content.ContentProvider#insert(Uri, ContentValues)
302 * @param values a {@link android.content.ContentValues} object containing the row to insert
306 public Uri insert(Uri uri, ContentValues values) { method in class:DataProvider
318 long id = localSQLiteDatabase.insert(
324 // If the insert succeeded, notify a change and return the new row's content URI.
341 * {@link SQLiteDatabase#insert(String, String, ContentValues) SQLiteDatabase.insert()}
348 * insert
354 // Decodes the content URI and choose which insert to use
372 // Gets the size of the bulk insert
[all...]
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
H A DRssContentProvider.java180 public Uri insert(Uri requestUri, ContentValues initialValues) { method in class:RssContentProvider
185 rowId = mDb.insert(DATABASE_TABLE_NAME, "rawcontent", initialValues);
/development/samples/NotePad/src/com/example/android/notepad/
H A DNotePadProvider.java491 * {@link android.content.ContentResolver#insert(Uri, ContentValues)}.
499 public Uri insert(Uri uri, ContentValues initialValues) { method in class:NotePadProvider
546 // Performs the insert and returns the ID of the new note.
547 long rowId = db.insert(
548 NotePad.Notes.TABLE_NAME, // The table to insert into.
551 values // A map of column names, and the values to insert
555 // If the insert succeeded, the row ID exists.
565 // If the insert didn't succeed, then the rowID is <= 0. Throws an exception.
566 throw new SQLException("Failed to insert row into " + uri);
743 * so it can insert tes
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DLoaderThrottle.java269 public Uri insert(Uri uri, ContentValues initialValues) { method in class:LoaderThrottle.SimpleProvider
271 // Can only insert into to main URI.
289 long rowId = db.insert(MainTable.TABLE_NAME, null, values);
291 // If the insert succeeded, the row ID exists.
298 throw new SQLException("Failed to insert row into " + uri);
445 cr.insert(MainTable.CONTENT_URI, values);
446 // Wait a bit between each insert.
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderThrottleSupport.java270 public Uri insert(Uri uri, ContentValues initialValues) { method in class:LoaderThrottleSupport.SimpleProvider
272 // Can only insert into to main URI.
290 long rowId = db.insert(MainTable.TABLE_NAME, null, values);
292 // If the insert succeeded, the row ID exists.
299 throw new SQLException("Failed to insert row into " + uri);
446 cr.insert(MainTable.CONTENT_URI, values);
447 // Wait a bit between each insert.
/development/samples/training/NavigationDrawer/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/util/ ...

Completed in 644 milliseconds