Searched refs:dateFormat (Results 1 – 4 of 4) sorted by relevance
184 java.text.DateFormat dateFormat = DateFormat.getDateFormat(mContext); in testFormatMethods() local185 assertNotNull(dateFormat); in testFormatMethods()187 String source = dateFormat.format(date); in testFormatMethods()188 Date parseDate = dateFormat.parse(source); in testFormatMethods()193 dateFormat = DateFormat.getLongDateFormat(mContext); in testFormatMethods()194 assertNotNull(dateFormat); in testFormatMethods()195 source = dateFormat.format(date); in testFormatMethods()197 dateFormat = DateFormat.getMediumDateFormat(mContext); in testFormatMethods()198 assertNotNull(dateFormat); in testFormatMethods()199 source = dateFormat.format(date); in testFormatMethods()[all …]
92 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd-HH.mm.ss", Locale.ENGLISH); in getReportBaseName() local93 String date = dateFormat.format(new Date()); in getReportBaseName()
250 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd_HH.mm.ss", Locale.ENGLISH); in getReportName() local251 String date = dateFormat.format(new Date()); in getReportName()
3915 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy:MM:dd hh:mm:ss z"); in verifyJpegExifExtraTags() local3917 Date gpsDateTime = dateFormat.parse(gpsExifTimeString); in verifyJpegExifExtraTags()