Home | History | Annotate | Download | only in calendar

Lines Matching refs:c2

495     public static boolean compareCursors(Cursor c1, Cursor c2) {
496 if (c1 == null || c2 == null) {
501 if (numColumns != c2.getColumnCount()) {
505 if (c1.getCount() != c2.getCount()) {
510 c2.moveToPosition(-1);
511 while (c1.moveToNext() && c2.moveToNext()) {
513 if (!TextUtils.equals(c1.getString(i), c2.getString(i))) {