Searched refs:maxLength (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/src/test/java/time/tck/java/time/ |
D | TCKMonth.java | 421 assertEquals(Month.JANUARY.maxLength(), 31); in test_maxLength() 422 assertEquals(Month.FEBRUARY.maxLength(), 29); in test_maxLength() 423 assertEquals(Month.MARCH.maxLength(), 31); in test_maxLength() 424 assertEquals(Month.APRIL.maxLength(), 30); in test_maxLength() 425 assertEquals(Month.MAY.maxLength(), 31); in test_maxLength() 426 assertEquals(Month.JUNE.maxLength(), 30); in test_maxLength() 427 assertEquals(Month.JULY.maxLength(), 31); in test_maxLength() 428 assertEquals(Month.AUGUST.maxLength(), 31); in test_maxLength() 429 assertEquals(Month.SEPTEMBER.maxLength(), 30); in test_maxLength() 430 assertEquals(Month.OCTOBER.maxLength(), 31); in test_maxLength() [all …]
|
/libcore/luni/src/test/java/libcore/dalvik/system/ |
D | VMRuntimeTest.java | 29 private void doTestNewNonMovableArray(Class<?> componentType, int step, int maxLength) { in doTestNewNonMovableArray() argument 44 for (int i = 0; i <= maxLength; i += step) { in doTestNewNonMovableArray() 83 private void doTestNewUnpaddedArray(Class<?> componentType, int step, int maxLength) { in doTestNewUnpaddedArray() argument 98 for (int i = 0; i <= maxLength; i += step) { in doTestNewUnpaddedArray()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | DataOutputStreamTest.java | 98 String maxLength = new String(chars); in test_writeUTF() local 99 os.writeUTF(maxLength); in test_writeUTF()
|
/libcore/ojluni/src/main/java/java/time/ |
D | MonthDay.java | 214 if (dayOfMonth > month.maxLength()) { in of() 378 return ValueRange.of(1, getMonth().minLength(), getMonth().maxLength()); in range() 541 int day = Math.min(this.day, month.maxLength()); in with()
|
D | Month.java | 471 public int maxLength() { in maxLength() method in Month
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | R.java | 1883 public static final int maxLength = 0; field in R
|
/libcore/api/ |
D | current.txt | 10897 method public int maxLength();
|