Home | History | Annotate | Download | only in launcher2

Lines Matching defs:table

96             return "vnd.android.cursor.dir/" + args.table;
98 return "vnd.android.cursor.item/" + args.table;
108 qb.setTables(args.table);
118 SQLiteDatabase db, String table, String nullColumnHack, ContentValues values) {
122 return db.insert(table, nullColumnHack, values);
128 db.delete(args.table, args.where, args.args);
136 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
154 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
172 int count = db.delete(args.table, args.where, args.args);
183 int count = db.update(args.table, values, args.where, args.args);
242 db.execSQL("CREATE TABLE favorites (" +
270 // Populate favorites table with initial favorites
379 db.execSQL("ALTER TABLE favorites " +
390 // Convert existing widgets only if table upgrade was successful
455 db.execSQL("DROP TABLE IF EXISTS " + TABLE_FAVORITES);
1039 public final String table;
1045 this.table = url.getPathSegments().get(0);
1053 this.table = url.getPathSegments().get(0);
1061 table = url.getPathSegments().get(0);