Searched defs:startDate (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/java/android/drm/mobile1/
H A DDrmConstraintInfo.java33 private long startDate; field in class:DrmConstraintInfo
50 startDate = -1;
70 if (startDate == -1)
73 return new Date(startDate);
/frameworks/base/keystore/java/android/security/
H A DAndroidKeyPairGeneratorSpec.java64 * {@code serialNumber}, and the validity date starting at {@code startDate}
72 * @param startDate the start of the self-signed certificate validity period
76 * {@code endDate} is before {@code startDate}.
79 X500Principal subjectDN, BigInteger serialNumber, Date startDate, Date endDate) {
88 } else if (startDate == null) {
89 throw new IllegalArgumentException("startDate == null");
92 } else if (endDate.before(startDate)) {
93 throw new IllegalArgumentException("endDate < startDate");
100 mStartDate = startDate;
78 AndroidKeyPairGeneratorSpec(Context context, String keyStoreAlias, X500Principal subjectDN, BigInteger serialNumber, Date startDate, Date endDate) argument
/frameworks/base/media/libdrm/mobile1/include/objmng/
H A Dsvc_drm.h141 int32_t startDate; /**< The constraint of start date */ member in struct:_T_DRM_Constraint_Info
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java49 public Time startDate; // set by setStartDate(), not parse() field in class:EventRecurrence
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.

Completed in 73 milliseconds