Home
last modified time | relevance | path

Searched refs:testformat (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_format.py13 def testformat(formatstr, args, output=None, limit=None, overflowok=False): function
50 testformat(formatstr, *args, **kwargs)
52 testformat(unicode(formatstr), *args, **kwargs)
234 testformat('%g', 1.1, '1.1')
235 testformat('%#g', 1.1, '1.10000')
245 testformat("%x", fst, '0')
246 testformat(u"%x", fst, '0')
254 testformat(formatstr, args)
/external/icu/icu4c/source/test/intltest/
Dtmsgfmt.cpp1728 …UnicodeString testformat("{argument, plural, one{C''est # fichier} other {Ce sont # fichiers}} dan… in testCoverage() local
1729 MessageFormat *msgfmt = new MessageFormat(testformat, Locale("fr"), status); in testCoverage()