Home | History | Annotate | Download | only in calendar

Lines Matching defs:diff

1159             Log.d(TAG, "Diff  " + time.toString());
1163 int diff = Time.compare(time, mBaseDate);
1164 if (diff > 0) {
1168 diff = Time.compare(time, mBaseDate);
1174 if (diff < 0) {
1176 diff = 0;
1177 } else if (diff == 0) {
1179 diff = 1;
1183 if (DEBUG) Log.d(TAG, "Diff: " + diff);
1188 return diff;
1209 int diff = dayOfWeek - mFirstDayOfWeek;
1210 if (diff != 0) {
1211 if (diff < 0) {
1212 diff += 7;
1214 time.monthDay -= diff;