/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | ArraysTest.java | 419 Arrays.fill(d, Byte.MAX_VALUE); in test_fill$BB() 432 Arrays.fill(d, 400, d.length, val); in test_fill$BIIB() 440 Arrays.fill(new byte[2], 2, 1, (byte) 27); in test_fill$BIIB() 449 Arrays.fill(new byte[2], -1, 1, (byte) 27); in test_fill$BIIB() 458 Arrays.fill(new byte[2], 1, 4, (byte) 27); in test_fill$BIIB() 475 Arrays.fill(d, Short.MAX_VALUE); in test_fill$SS() 488 Arrays.fill(d, 400, d.length, val); in test_fill$SIIS() 495 Arrays.fill(d, 10, 0, val); in test_fill$SIIS() 502 Arrays.fill(d, -10, 0, val); in test_fill$SIIS() 509 Arrays.fill(d, 10, d.length+1, val); in test_fill$SIIS() [all …]
|
D | Arrays2Test.java | 78 Arrays.fill(d, Double.MAX_VALUE); in test_equals$D$D() 79 Arrays.fill(x, Double.MIN_VALUE); in test_equals$D$D() 83 Arrays.fill(x, Double.MAX_VALUE); in test_equals$D$D() 101 Arrays.fill(d, Float.MAX_VALUE); in test_equals$F$F() 102 Arrays.fill(x, Float.MIN_VALUE); in test_equals$F$F() 106 Arrays.fill(x, Float.MAX_VALUE); in test_equals$F$F()
|
/libcore/luni/src/main/java/java/util/zip/ |
D | InflaterInputStream.java | 153 fill(); in read() 188 protected void fill() throws IOException { in fill() method in InflaterInputStream 192 len = is.fill(inf, nativeEndBufSize); in fill()
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | OutputStreamWriterTest.java | 37 Arrays.fill(chars, 'x'); in testFlushCount() 56 Arrays.fill(cs, 'x'); in testFlush()
|
D | DataOutputStreamTest.java | 93 Arrays.fill(chars, 0, chars.length, 'a'); in test_writeUTF() 108 Arrays.fill(expected, 7, expected.length, (byte) 'a'); in test_writeUTF()
|
D | OldInputStreamReaderTest.java | 145 Arrays.fill(data, (byte) 116); // 116 = ISO-8859-1 value for 't' in testInputStreamReaderSuccessiveReads() 259 Arrays.fill(bytes, (byte) ' '); in test_readWhenCharacterSpansBuffer()
|
/libcore/luni/src/test/java/libcore/io/ |
D | MemoryTest.java | 39 Arrays.fill(array, (byte) 0); in testSetIntArray() 80 Arrays.fill(array, (byte) 0); in testSetLongArray() 118 Arrays.fill(array, (byte) 0); in testSetShortArray()
|
D | Base64Test.java | 41 Arrays.fill(data, 0xff); in testEncodeDoesNotWrap()
|
/libcore/luni/src/main/java/java/util/ |
D | Arrays.java | 669 public static void fill(byte[] array, byte value) { in fill() method in Arrays 691 public static void fill(byte[] array, int start, int end, byte value) { in fill() method in Arrays 706 public static void fill(short[] array, short value) { in fill() method in Arrays 728 public static void fill(short[] array, int start, int end, short value) { in fill() method in Arrays 743 public static void fill(char[] array, char value) { in fill() method in Arrays 765 public static void fill(char[] array, int start, int end, char value) { in fill() method in Arrays 780 public static void fill(int[] array, int value) { in fill() method in Arrays 802 public static void fill(int[] array, int start, int end, int value) { in fill() method in Arrays 817 public static void fill(long[] array, long value) { in fill() method in Arrays 839 public static void fill(long[] array, int start, int end, long value) { in fill() method in Arrays [all …]
|
D | Vector.java | 832 Arrays.fill(elementData, newCount, elementCount, null); in removeRange() 835 Arrays.fill(elementData, start, elementCount, null); in removeRange() 926 Arrays.fill(elementData, length, elementCount, null); in setSize()
|
D | PriorityQueue.java | 171 Arrays.fill(elements, null); in clear()
|
D | BitSet.java | 338 Arrays.fill(bits, 0, longCount, 0L); in clear() 468 Arrays.fill(bits, minSize, longCount, 0L); in and()
|
D | ArrayList.java | 266 Arrays.fill(array, 0, size, null); in clear() 461 Arrays.fill(a, s - rangeSize, s, null); in removeRange()
|
/libcore/luni/src/main/java/javax/security/auth/callback/ |
D | PasswordCallback.java | 118 Arrays.fill(inputPassword, '\u0000'); in clearPassword()
|
/libcore/luni/src/main/java/java/util/regex/ |
D | PatternSyntaxException.java | 111 Arrays.fill(spaces, ' '); in getMessage()
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
D | CopyOnWriteArraySetTest.java | 287 Arrays.fill(a, 42); in testToArray2() 299 Arrays.fill(a, 42); in testToArray2() 306 Arrays.fill(a, 42); in testToArray2() 311 Arrays.fill(a, 42); in testToArray2()
|
D | CopyOnWriteArrayListTest.java | 435 Arrays.fill(a, 42); in testToArray2() 447 Arrays.fill(a, 42); in testToArray2() 454 Arrays.fill(a, 42); in testToArray2() 459 Arrays.fill(a, 42); in testToArray2()
|
D | ArrayDequeTest.java | 661 if (size > 0) Arrays.fill(a1, 42); in checkToArray2() 662 Arrays.fill(a2, 42); in checkToArray2() 663 Arrays.fill(a3, 42); in checkToArray2()
|
D | ArrayBlockingQueueTest.java | 613 if (size > 0) Arrays.fill(a1, 42); in checkToArray2() 614 Arrays.fill(a2, 42); in checkToArray2() 615 Arrays.fill(a3, 42); in checkToArray2()
|
/libcore/luni/src/test/java/tests/security/interfaces/ |
D | Util.java | 100 java.util.Arrays.fill(bytes, (byte) 0); in engineNextBytes()
|
/libcore/luni/src/main/java/java/math/ |
D | Primality.java | 121 Arrays.fill(isDivisible, false); in nextProbablePrime()
|
/libcore/luni/src/main/java/javax/crypto/spec/ |
D | PBEKeySpec.java | 142 Arrays.fill(password, '?'); in clearPassword()
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | OldAndroidZipStressTest.java | 146 Arrays.fill(input, pos, pos + howMany, what); in testZipDeflateInflateStress()
|
/libcore/json/src/main/java/org/json/ |
D | JSONStringer.java | 128 Arrays.fill(indentChars, ' '); in JSONStringer()
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
D | SamplingProfiler.java | 264 Arrays.fill(threads, threadCount, lastThread, null); in threads()
|