Searched refs:checkFormatBytes (Results 1 – 1 of 1) sorted by relevance
/aosp14/frameworks/base/core/tests/coretests/src/android/text/format/ |
H A D | FormatterTest.java | 68 checkFormatBytes(0, true, "0", 0); in testFormatBytes() 69 checkFormatBytes(0, false, "0", 0); in testFormatBytes() 71 checkFormatBytes(1, true, "1", 1); in testFormatBytes() 72 checkFormatBytes(1, false, "1", 1); in testFormatBytes() 74 checkFormatBytes(12, true, "12", 12); in testFormatBytes() 75 checkFormatBytes(12, false, "12", 12); in testFormatBytes() 77 checkFormatBytes(123, true, "123", 123); in testFormatBytes() 78 checkFormatBytes(123, false, "123", 123); in testFormatBytes() 80 checkFormatBytes(900, true, "900", 900); in testFormatBytes() 95 checkFormatBytes(-1, true, "-1", -1); in testFormatBytes() [all …]
|