OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstDate
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/widget/
CalendarView.java
686
* @return True if the <code>
firstDate
</code> is the same as the <code>
689
private boolean isSameDate(Calendar
firstDate
, Calendar secondDate) {
690
return (
firstDate
.get(Calendar.DAY_OF_YEAR) == secondDate.get(Calendar.DAY_OF_YEAR)
691
&&
firstDate
.get(Calendar.YEAR) == secondDate.get(Calendar.YEAR));
[
all
...]
/cts/tests/tests/provider/src/android/provider/cts/
BrowserTest.java
521
long
firstDate
= end;
531
assertEquals(historyCountBeforeDelete - (end -
firstDate
), historyCountAfterDelete);
[
all
...]
/external/icu4c/test/intltest/
calregts.cpp
663
UDate
firstDate
= Calendar::getNow();
670
cal->setTime(
firstDate
,status);
677
//logln("Current time: " +
firstDate
.toString());
680
UDate lastDate =
firstDate
+ validity*1000*24*60*60.0;
[
all
...]
Completed in 41 milliseconds