OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:anniversary
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/util/
DateUtils.java
223
*
anniversary
of the date that is equal to or after the current point in time if the date
228
* @return If date does not contain a year (year < 1900), returns the next earliest
anniversary
248
final GregorianCalendar
anniversary
= new GregorianCalendar();
local
251
anniversary
.set(!isYearSet ? today.get(Calendar.YEAR) : targetYear,
253
// If the
anniversary
's date is before the start of today and there is no year set,
255
// today. If the day is a leap year, keep going until we get the next leap year
anniversary
259
if (
anniversary
.before(today) ||
260
(isFeb29 && !
anniversary
.isLeapYear(anniversaryYear))) {
261
// If the target date is not Feb 29, then set the
anniversary
to the next year.
266
} while (isFeb29 && !
anniversary
.isLeapYear(anniversaryYear))
[
all
...]
/packages/apps/Exchange/src/com/android/exchange/adapter/
ContactsSyncParser.java
280
personal.
anniversary
= getValue();
648
String
anniversary
;
field in class:ContactsSyncParser.EasPersonal
653
public static final String
ANNIVERSARY
= "data2";
657
return
anniversary
!= null || fileAs != null;
[
all
...]
Completed in 367 milliseconds