Home | History | Annotate | Download | only in launcher3

Lines Matching defs:args

107     public void dump(FileDescriptor fd, PrintWriter writer, String[] args) {
112 appState.getModel().dumpState("", fd, writer, args);
141 SqlArguments args = new SqlArguments(uri, null, null);
142 if (TextUtils.isEmpty(args.where)) {
143 return "vnd.android.cursor.dir/" + args.table;
145 return "vnd.android.cursor.item/" + args.table;
179 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
181 qb.setTables(args.table);
184 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
214 SqlArguments args = new SqlArguments(uri);
225 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
305 SqlArguments args = new SqlArguments(uri);
313 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
346 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
351 && Favorites.TABLE_NAME.equalsIgnoreCase(args.table)) {
354 int count = db.delete(args.table, args.where, args.args);
365 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
369 int count = db.update(args.table, values, args.where, args.args);
1200 public final String[] args;
1202 SqlArguments(Uri url, String where, String[] args) {
1206 this.args = args;
1214 this.args = null;
1222 args = null;