Lines Matching defs:args
110 SqlArguments args = new SqlArguments(uri, null, null);
111 if (TextUtils.isEmpty(args.where)) {
112 return "vnd.android.cursor.dir/" + args.table;
114 return "vnd.android.cursor.item/" + args.table;
122 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
124 qb.setTables(args.table);
127 Cursor result = qb.query(db, projection, args.where, args.args, null, null, sortOrder);
143 SqlArguments args = new SqlArguments(uri, null, null);
144 db.delete(args.table, args.where, args.args);
149 SqlArguments args = new SqlArguments(uri);
152 final long rowId = dbInsertAndCheck(mOpenHelper, db, args.table, null, initialValues);
163 SqlArguments args = new SqlArguments(uri);
170 if (dbInsertAndCheck(mOpenHelper, db, args.table, null, values[i]) < 0) {
185 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
188 int count = db.delete(args.table, args.where, args.args);
196 SqlArguments args = new SqlArguments(uri, selection, selectionArgs);
199 int count = db.update(args.table, values, args.where, args.args);
1282 public final String[] args;
1284 SqlArguments(Uri url, String where, String[] args) {
1288 this.args = args;
1296 this.args = null;
1304 args = null;