HomeSort by relevance Sort by last modified time
    Searched refs:myDate (Results 1 - 5 of 5) sorted by null

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
DerGeneralizedTimeEDTest.java 53 Date myDate = getGmtDate(1101980374187L);
55 new DerOutputStream(gTime, myDate).encoded;
60 myDate = getGmtDate(1101980374180L);
62 new DerOutputStream(gTime, myDate).encoded;
67 myDate = getGmtDate(1101980374100L);
69 new DerOutputStream(gTime, myDate).encoded;
74 myDate = getGmtDate(1101980374000L);
76 new DerOutputStream(gTime, myDate).encoded;
84 myDate = sdf.parse("06.06.2004 00:00");
86 new DerOutputStream(gTime, myDate).encoded
    [all...]
DerUTCTimeEDTest.java 55 Date myDate = getGmtDate(1101980374187L);
57 new DerOutputStream(uTime, myDate).encoded;
65 myDate = sdf.parse("06.06.2004 00:00");
67 new DerOutputStream(uTime, myDate).encoded;
98 Date myDate = new Date(1101980374187L);
100 new DerOutputStream(uTime, myDate).encoded;
105 assertEquals(187, (myDate.getTime()-((Date)uTime.decode(dis)).getTime()));
108 myDate = new SimpleDateFormat("MM.dd.yyyy HH:mm").
111 new DerOutputStream(uTime, myDate).encoded;
115 assertEquals(myDate, uTime.decode(dis))
    [all...]
  /external/icu4c/test/cintltst/
cdtrgtst.c 205 UChar *myDate;
220 myDate=(UChar*)malloc(sizeof(UChar) * 11);
221 u_uastrcpy(myDate, "1970/01/12");
223 aux917( def, myDate );
233 u_uastrcpy(myDate, "19700112");
234 aux917( def, myDate );
236 free(myDate);
278 UDate myDate;
290 myDate = udat_parse(formatter, dateString, u_strlen(dateString), &pos, &status);
300 myString = myFormatit(fmt, myDate);
    [all...]
  /external/icu4c/test/intltest/
dtfmrgts.cpp 283 UnicodeString myDate;
287 myDate = "1997/01/01";
288 aux917( fmt, myDate );
295 myDate = "19970101";
296 aux917( fmt, myDate );
344 UDate myDate = formatter->parse( dateString, pos );
354 myString = fmt->format( myDate, myString);
359 cal->setTime(myDate, status);
371 myDate = formatter->parse( dateString, pos );
372 myString = fmt->format( myDate, myString )
    [all...]
dtfmttst.cpp 582 UnicodeString myDate;
589 myDate = "1997/02/03";
590 testIt917(fmt, myDate, date(97, 2 - 1, 3));
593 myDate = "19970304";
594 testIt917(fmt, myDate, date(97, 3 - 1, 4));
690 UDate myDate = formatter->parse(dateString, pos);
691 logln((UnicodeString)"Using " + bigD + " -> " + myDate);
692 if (myDate != expBigD) errln((UnicodeString)"FAIL: Expected " + dateToString(expBigD));
697 myDate = formatter->parse(dateString, pos);
698 logln((UnicodeString)"Using " + littleD + " -> " + dateToString(myDate));
    [all...]

Completed in 2793 milliseconds