OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:firstDate
(Results
1 - 6
of
6
) sorted by null
/libcore/luni/src/test/java/tests/security/cert/
CertificateRevocationExceptionTest.java
116
Date
firstDate
= exception.getRevocationDate();
117
assertNotSame(
firstDate
, exception.getRevocationDate());
119
firstDate
.setYear(
firstDate
.getYear() + 1);
120
assertTrue(
firstDate
.compareTo(exception.getRevocationDate()) > 0);
126
Date
firstDate
= exception.getInvalidityDate();
127
assertNotSame(
firstDate
, exception.getInvalidityDate());
129
firstDate
.setYear(
firstDate
.getYear() + 1);
130
assertTrue(
firstDate
.compareTo(exception.getInvalidityDate()) > 0)
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogGroupBuilder.java
119
final long
firstDate
= cursor.getLong(CallLogQuery.DATE);
121
int groupDayGroup = getDayGroup(
firstDate
, currentTime);
/frameworks/base/core/java/android/widget/
CalendarViewLegacyDelegate.java
660
* @return True if the <code>
firstDate
</code> is the same as the <code>
663
private static boolean isSameDate(Calendar
firstDate
, Calendar secondDate) {
664
return (
firstDate
.get(Calendar.DAY_OF_YEAR) == secondDate.get(Calendar.DAY_OF_YEAR)
665
&&
firstDate
.get(Calendar.YEAR) == secondDate.get(Calendar.YEAR));
[
all
...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CalendarRegression.java
400
Date
firstDate
= new Date();
402
cal.setTime(
firstDate
);
408
logln("Current time: " +
firstDate
.toString());
411
Date lastDate = new Date(
firstDate
.getTime() +
[
all
...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CalendarRegression.java
396
Date
firstDate
= new Date();
398
cal.setTime(
firstDate
);
404
logln("Current time: " +
firstDate
.toString());
407
Date lastDate = new Date(
firstDate
.getTime() +
[
all
...]
/external/icu/icu4c/source/test/intltest/
calregts.cpp
708
UDate
firstDate
= Calendar::getNow();
715
cal->setTime(
firstDate
,status);
722
//logln("Current time: " +
firstDate
.toString());
725
UDate lastDate =
firstDate
+ validity*1000*24*60*60.0;
[
all
...]
Completed in 556 milliseconds