Home
last modified time | relevance | path

Searched refs:makeDate (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/avrcpcontroller/bip/
DBipDatetimeTest.java36 private Date makeDate(int month, int day, int year, int hours, int min, int sec, TimeZone tz) { in makeDate() method in BipDatetimeTest
46 private Date makeDate(int month, int day, int year, int hours, int min, int sec) { in makeDate() method in BipDatetimeTest
47 return makeDate(month, day, year, hours, min, sec, null); in makeDate()
53 cal.setTime(makeDate(month, day, year, hours, min, sec)); in makeTzAdjustedString()
77 testParse("20000101T000000", makeDate(1, 1, 2000, 0, 0, 0), false, in testCreateFromValidString()
79 testParse("20000101T060115", makeDate(1, 1, 2000, 6, 1, 15), false, in testCreateFromValidString()
81 testParse("20000101T060000", makeDate(1, 1, 2000, 6, 0, 0), false, in testCreateFromValidString()
83 testParse("20000101T071500", makeDate(1, 1, 2000, 7, 15, 0), false, in testCreateFromValidString()
85 testParse("20000101T151700", makeDate(1, 1, 2000, 15, 17, 0), false, in testCreateFromValidString()
87 testParse("20000101T235959", makeDate(1, 1, 2000, 23, 59, 59), false, in testCreateFromValidString()
[all …]
DBipAttachmentFormatTest.java35 private Date makeDate(int month, int day, int year, int hours, int min, int sec, TimeZone tz) { in makeDate() method in BipAttachmentFormatTest
45 private Date makeDate(int month, int day, int year, int hours, int min, int sec) { in makeDate() method in BipAttachmentFormatTest
46 return makeDate(month, day, year, hours, min, sec, null); in makeDate()
103 Date date = makeDate(1, 1, 1990, 12, 34, 56); in testParseAttachment()
104 Date dateUtc = makeDate(1, 1, 1990, 12, 34, 56, utc); in testParseAttachment()
159 Date date = makeDate(1, 1, 1990, 12, 34, 56); in testCreateAttachment()
188 Date date = makeDate(1, 1, 1990, 12, 34, 56); in testParsedAttachmentToString()
189 Date dateUtc = makeDate(1, 1, 1990, 12, 34, 56, utc); in testParsedAttachmentToString()
247 Date date = makeDate(1, 1, 1990, 12, 34, 56, utc); in testCreatedAttachmentToString()
/packages/providers/CalendarProvider/
Dmaketests.py22 def makeDate(d): function
29 + PRIVATE_COOKIE + "/composite?start-min=" + makeDate(START_DATE) \
30 + "&start-max=" + makeDate(END_DATE)