HomeSort by relevance Sort by last modified time
    Searched refs:startDate (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadIdAndStartDate.java 25 public DownloadIdAndStartDate(final long id, final long startDate) {
27 mStartDate = startDate;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
V1TBSCertificateGenerator.java 32 Time startDate, endDate;
68 Time startDate)
70 this.startDate = startDate;
74 ASN1UTCTime startDate)
76 this.startDate = new Time(startDate);
115 || (issuer == null) || (startDate == null) || (endDate == null)
133 validity.add(startDate);
V3TBSCertificateGenerator.java 36 Time startDate, endDate;
77 ASN1UTCTime startDate)
79 this.startDate = new Time(startDate);
83 Time startDate)
85 this.startDate = startDate;
161 || (issuer == null) || (startDate == null) || (endDate == null)
179 validity.add(startDate);
TBSCertificate.java 41 Time startDate, endDate;
100 startDate = Time.getInstance(dates.getObjectAt(0));
155 return startDate;
TBSCertificateStructure.java 43 Time startDate, endDate;
102 startDate = Time.getInstance(dates.getObjectAt(0));
157 return startDate;
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
AdaptableX509CertSelector.java 55 private Date startDate;
80 * @param startDate the start date of a validity period that must fall
85 void setValidityPeriod(Date startDate, Date endDate) {
86 this.startDate = startDate;
181 if (startDate != null) {
183 xcert.checkValidity(startDate);
250 if (startDate != null) {
251 copy.startDate = (Date)startDate.clone()
    [all...]
  /external/icu/icu4c/source/test/intltest/
callimts.h 55 * with 'startDate'. For each date, read a field value along with its
75 * @param startDate the first date to test
79 void doLimitsTest(Calendar& cal, const int32_t* fieldsToTest, UDate startDate, int32_t testDuration);
84 void doLimitsTest(Calendar& cal, UDate startDate, int32_t endTime);
sdtfmtts.cpp 196 UDate startDate = pat.get2DigitYearStart(status);
202 pat_fr.set2DigitYearStart(startDate, status);
  /frameworks/base/keystore/java/android/security/
KeyPairGeneratorSpec.java 97 * {@code serialNumber}, and the validity date starting at {@code startDate}
108 * @param startDate the start of the self-signed certificate validity period
112 * {@code endDate} is before {@code startDate}.
117 Date startDate, Date endDate, int flags) {
126 } else if (startDate == null) {
127 throw new IllegalArgumentException("startDate == null");
130 } else if (endDate.before(startDate)) {
131 throw new IllegalArgumentException("endDate < startDate");
134 if (endDate.before(startDate)) {
135 throw new IllegalArgumentException("endDate < startDate");
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
DateUtils.java 128 * @param startDate During parsing, two digit years will be placed in the range
129 * <code>startDate</code> to <code>startDate + 100 years</code>. This value may
140 Date startDate
149 if (startDate == null) {
150 startDate = DEFAULT_TWO_DIGIT_YEAR_START;
163 dateParser.set2DigitYearStart(startDate);
  /packages/apps/Calendar/src/com/android/calendar/
EventRecurrenceFormatter.java 93 if (recurrence.startDate == null) {
97 int day = EventRecurrence.timeDay2Day(recurrence.startDate.weekDay);
106 int weekday = recurrence.startDate.weekDay;
109 int dayNumber = (recurrence.startDate.monthDay - 1) / 7;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/service/
SearchParams.java 74 public SearchParams(long mailboxId, String filter, long searchMailboxId, Date startDate,
79 mStartDate = startDate;
  /external/testng/src/main/java/org/testng/reporters/
XMLReporter.java 157 Date startDate = testContext.getStartDate();
159 if (minStartDate.after(startDate)) {
160 minStartDate = startDate;
163 maxEndDate = endDate != null ? endDate : startDate;
TestHTMLReporter.java 265 Date startDate = testContext.getStartDate();
267 long duration = (endDate.getTime() - startDate.getTime()) / 1000;
287 .append("<tr><td>Total time:</td><td>").append(duration).append(" seconds (").append(endDate.getTime() - startDate.getTime())
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MockFolder.java 136 public Message[] getMessages(long startDate, long endDate, MessageRetrievalListener listener)
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 201 Time startDate = new Time();
202 startDate.set(millSecs);
203 return startDate.format2445();
  /test/vts/harnesses/tradefed/tests/src/com/android/tradefed/testtype/
VtsMultiDeviceTestResultParserTest.java 135 Date startDate = getDate(contents, true);
138 if (startDate == null || endDate == null) {
141 return endDate.getTime() - startDate.getTime();
  /tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
TestFailureListenerTest.java 65 final long startDate = 1479917040l; // Wed Nov 23 16:04:00 GMT 2016
68 EasyMock.expect(mMockDevice.getDeviceDate()).andReturn(startDate);
79 EasyMock.expect(mMockDevice.getLogcatSince(EasyMock.eq(startDate))).andReturn(fakeSource);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CalendarTestFmwk.java 204 * with 'startDate'. For each date, read a field value along with its
224 * @param startDate the first date to test
229 Date startDate, int testDuration) {
231 greg.setTime(startDate);
232 logln("Start: " + startDate);
348 protected void doLimitsTest(Calendar cal, int[] fieldsToTest, Date startDate) {
350 doLimitsTest(cal, fieldsToTest, startDate, testTime);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CalendarTestFmwk.java 201 * with 'startDate'. For each date, read a field value along with its
221 * @param startDate the first date to test
226 Date startDate, int testDuration) {
228 greg.setTime(startDate);
229 logln("Start: " + startDate);
345 protected void doLimitsTest(Calendar cal, int[] fieldsToTest, Date startDate) {
347 doLimitsTest(cal, fieldsToTest, startDate, testTime);
  /external/icu/icu4c/source/i18n/
islamcal.cpp 609 int32_t startDate;
620 startDate = monthStart(year, month);
625 startDate = (int32_t)uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH);
632 if ( days - startDate >= 25 && age > 0) {
639 while ((startDate = trueMonthStart(months)) > days) {
653 startDate = monthStart(year, month);
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
EventRecurrence.java 49 public Time startDate; // set by setStartDate(), not parse()
160 startDate = date;
478 return (startDate == null ?
479 er.startDate == null : Time.compare(startDate, er.startDate) == 0) &&
503 * Resets parser-modified fields to their initial state. Does not alter startDate.
511 * overwritten. The "startDate" field is not set by the parser, so we ignore it here.
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Folder.java 125 public abstract Message[] getMessages(long startDate, long endDate, MessageRetrievalListener listener)
  /frameworks/base/core/java/android/app/admin/
FreezePeriod.java 169 final LocalDate startDate = LocalDate.ofYearDay(DUMMY_YEAR, mStartDay).withYear(
173 return new Pair<>(startDate, endDate);
  /frameworks/base/keystore/java/android/security/keystore/
KeyProtection.java 588 public Builder setKeyValidityStart(Date startDate) {
589 mKeyValidityStart = Utils.cloneIfNotNull(startDate);
    [all...]

Completed in 1162 milliseconds

1 2 3 4 5 6