Lines Matching refs:c2
494 public static boolean compareCursors(Cursor c1, Cursor c2) {
495 if (c1 == null || c2 == null) {
500 if (numColumns != c2.getColumnCount()) {
504 if (c1.getCount() != c2.getCount()) {
509 c2.moveToPosition(-1);
510 while (c1.moveToNext() && c2.moveToNext()) {
512 if (!TextUtils.equals(c1.getString(i), c2.getString(i))) {