Searched defs:insert (Results 76 - 79 of 79) sorted by relevance

1234

/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java606 // This could happen if we unplug the sd card during insert/update/delete
2640 * @param initialValues the values passed to insert by the caller
2733 public Uri insert(Uri uri, ContentValues initialValues) { method in class:MediaProvider
2804 long rowId = db.insert("files", FileColumns.DATE_MODIFIED, values);
2886 // insert and do inserts into the underlying tables.
3080 rowId = db.insert("files", FileColumns.DATE_MODIFIED, values);
3217 uri = insert(genresUri, values);
3237 insert(uri, values);
3294 rowId = db.insert("thumbnails", "name", values);
3307 rowId = db.insert("videothumbnail
[all...]
/packages/apps/Launcher2/src/com/android/launcher2/
H A DWorkspace.java507 * @param insert When true, the child is inserted at the beginning of the children list.
510 boolean insert) {
566 if (!layout.addViewToCellLayout(child, insert ? 0 : -1, childId, lp, markCellsAsOccupied)) {
509 addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY, boolean insert) argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java2942 db.insert(Tables.NAME_LOOKUP, null, values);
2976 db.insert(Tables.NAME_LOOKUP, null, values);
3467 db.insert(Tables.PHONE_LOOKUP, null, phoneValues);
3915 // Mimic how DataRowHandlerForPhoneNumber.insert() works when it can't normalize
4269 * @param insert Compiled statement used to insert a new mapping when no
4275 private long lookupAndCacheId(SQLiteStatement query, SQLiteStatement insert, argument
4284 DatabaseUtils.bindObjectToProgram(insert, 1, value);
4285 id = insert.executeInsert();
4489 final SQLiteStatement insert
[all...]
H A DContactsProvider2.java1990 * @return Whether to direct the DB insert to the profile database.
2040 public Uri insert(Uri uri, ContentValues values) { method in class:ContactsProvider2
2048 return mProfileProvider.insert(uri, values);
2051 return super.insert(uri, values);
2395 id = mDbHelper.get().getSyncState().insert(db, values);
2481 return mLegacyApiSupport.insert(uri, values);
2579 * {@link AccountWithDataSet}. Used for insert.
2624 long rawContactId = db.insert(Tables.RAW_CONTACTS,
2690 db.insert(Tables.DATA, null, groupMembershipValues);
2733 id = rowHandler.insert(d
[all...]

Completed in 430 milliseconds

1234