Home
last modified time | relevance | path

Searched refs:dateFormat (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/text/src/android/text/format/cts/
DDateFormatTest.java178 java.text.DateFormat dateFormat = DateFormat.getDateFormat(mContext); in testFormatMethods() local
179 assertNotNull(dateFormat); in testFormatMethods()
181 String source = dateFormat.format(date); in testFormatMethods()
182 Date parseDate = dateFormat.parse(source); in testFormatMethods()
187 dateFormat = DateFormat.getLongDateFormat(mContext); in testFormatMethods()
188 assertNotNull(dateFormat); in testFormatMethods()
189 source = dateFormat.format(date); in testFormatMethods()
191 dateFormat = DateFormat.getMediumDateFormat(mContext); in testFormatMethods()
192 assertNotNull(dateFormat); in testFormatMethods()
193 source = dateFormat.format(date); in testFormatMethods()
[all …]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/
DReportExporter.java92 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd-HH.mm.ss", Locale.ENGLISH); in getReportBaseName() local
93 String date = dateFormat.format(new Date()); in getReportBaseName()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DReportExporter.java154 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy.MM.dd_HH.mm.ss", Locale.ENGLISH); in getReportName() local
155 String date = dateFormat.format(new Date()); in getReportName()
/cts/common/util/src/com/android/compatibility/common/util/
DResultHandler.java566 SimpleDateFormat dateFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy"); in toReadableDateString() local
567 return dateFormat.format(new Date(time)); in toReadableDateString()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/
DCameraTestUtils.java2331 SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy:MM:dd hh:mm:ss z"); in verifyJpegExifExtraTags() local
2333 Date gpsDateTime = dateFormat.parse(gpsExifTimeString); in verifyJpegExifExtraTags()