Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/lang/
DOldThrowableTest.java56 TestThrowable tt = new TestThrowable(testMessage); in test_getLocalizedMessage() local
57 assertEquals("localized message", tt.getLocalizedMessage()); in test_getLocalizedMessage()
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DTimestampTest.java97 String tt = new Timestamp(now, cpath).toString(); in testToString() local
/libcore/jsr166-tests/src/test/java/jsr166/
DDelayQueueTest.java704 long tt = e.getTriggerTime(); in testDelay() local
705 assertTrue(System.nanoTime() - tt >= 0); in testDelay()
707 assertTrue(tt >= last); in testDelay()
708 last = tt; in testDelay()
/libcore/ojluni/src/test/java/util/concurrent/tck/
DDelayQueueTest.java765 long tt = e.getTriggerTime(); in testDelay() local
766 assertTrue(System.nanoTime() - tt >= 0); in testDelay()
768 assertTrue(tt >= last); in testDelay()
769 last = tt; in testDelay()
/libcore/ojluni/src/test/java/util/regex/
DRegExTest.java2429 String tt = (String)d[1]; in ceTest() local
2432 boolean ret = isFind ? Pattern.compile(pn, Pattern.CANON_EQ).matcher(tt).find() in ceTest()
2433 : Pattern.compile(pn, Pattern.CANON_EQ).matcher(tt).matches(); in ceTest()
2435 fail("pn: " + pn + "\ntt: " + tt + "\nexpected: " + expected + "\nret: " + ret); in ceTest()