Lines Matching refs:c2
337 public static boolean compareCursors(Cursor c1, Cursor c2) {
338 if (c1 == null || c2 == null) {
343 if (numColumns != c2.getColumnCount()) {
347 if (c1.getCount() != c2.getCount()) {
352 c2.moveToPosition(-1);
353 while (c1.moveToNext() && c2.moveToNext()) {
355 if (!TextUtils.equals(c1.getString(i), c2.getString(i))) {