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

1 2

  /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);
TBSCertificateStructure.java 44 Time startDate, endDate;
103 startDate = Time.getInstance(dates.getObjectAt(0));
158 return startDate;
TBSCertificate.java 42 Time startDate, endDate;
117 startDate = Time.getInstance(dates.getObjectAt(0));
186 return startDate;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
V1TBSCertificateGenerator.java 34 Time startDate, endDate;
70 Time startDate)
72 this.startDate = startDate;
76 ASN1UTCTime startDate)
78 this.startDate = new Time(startDate);
117 || (issuer == null) || (startDate == null) || (endDate == null)
135 validity.add(startDate);
V3TBSCertificateGenerator.java 39 Time startDate, endDate;
88 ASN1UTCTime startDate)
90 this.startDate = new Time(startDate);
96 Time startDate)
98 this.startDate = startDate;
182 || (issuer == null) || (startDate == null) || (endDate == null)
200 validity.add(startDate);
TBSCertificate.java 45 Time startDate, endDate;
120 startDate = Time.getInstance(dates.getObjectAt(0));
189 return startDate;
TBSCertificateStructure.java 46 Time startDate, endDate;
105 startDate = Time.getInstance(dates.getObjectAt(0));
160 return startDate;
  /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);
callimts.cpp 302 CalendarLimitTest::doLimitsTest(Calendar& cal, UDate startDate, int32_t endTime) {
304 doLimitsTest(cal, NULL /*default fields*/, startDate, testTime);
310 UDate startDate,
344 greg.setTime(startDate, status);
348 logln((UnicodeString)"Start: " + startDate);
  /external/cldr/tools/java/org/unicode/cldr/test/
TestMetazones.java 347 long startTime = overlap.startDate;
378 checkGapOrOverlap(last, value.range.startDate);
539 public DateRangeAndZone(String zone, String startDate, String endDate) {
540 this(zone, new DateRange(startDate, endDate));
616 long startDate;
620 public DateRange(String startDate, String endDate) {
621 this(parse(startDate, false), parse(endDate, true));
625 return startDate <= otherRange.startDate && otherRange.endDate <= endDate;
635 return startDate > otherRange.endDate || otherRange.startDate > endDate
    [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);
  /external/cldr/tools/java/org/unicode/cldr/util/
ZoneInflections.java 49 static private final long startDate = getDateLong(1970, 1, 1);
109 for (long currentDate = endDate; currentDate >= startDate; currentDate -= GROSS_PERIOD) {
139 // System.out.println("\tAdding: " + dtf.format(new Date(startDate)));
140 inflectionPoints.add(new InflectionPoint(startDate, zone
141 .getOffset(startDate)));
  /external/python/google-api-python-client/samples/adexchangeseller/
generate_report.py 60 startDate='2011-01-01', endDate='2011-08-31',
generate_report_with_paging.py 61 startDate='2011-01-01', endDate='2011-08-31',
  /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())
  /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...]
erarules.cpp 34 static UBool isSet(int startDate) {
35 return startDate != 0;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
EraRules.java 233 private static boolean isSet(int startDate) {
234 return startDate != 0;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
EraRules.java 231 private static boolean isSet(int startDate) {
232 return startDate != 0;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 173 static private final long startDate = getDate(1905,0,1).getTime();
277 for (long currentDate = endDate; currentDate >= startDate; currentDate -= GROSS_PERIOD) {
302 inflectionPoints.add(new Long(startDate)); // just to cap it off for comparisons.

Completed in 1325 milliseconds

1 2