Searched refs:fromIndex (Results 1 - 25 of 81) sorted by relevance

1234

/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/event/
H A DTableColumnModelEvent.java56 protected int fromIndex; field in class:TableColumnModelEvent
78 fromIndex = from;
87 * Returns the fromIndex. Valid for removed or moved events
91 public int getFromIndex() { return fromIndex; };
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/
H A DAMD64StringSubstitutions.java46 int fromIndex = origFromIndex;
47 if (fromIndex >= sourceCount) {
50 if (fromIndex < 0) {
51 fromIndex = 0;
55 return fromIndex;
58 int totalOffset = sourceOffset + fromIndex;
59 if (sourceCount - fromIndex < targetCount) {
63 assert sourceCount - fromIndex > 0 && targetCount > 0;
67 int result = AMD64StringIndexOfNode.optimizedStringIndexPointer(sourcePointer, sourceCount - fromIndex, targetPointer, targetCount);
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputEdge.java66 private final char fromIndex; field in class:InputEdge
77 public InputEdge(char fromIndex, char toIndex, int from, int to) { argument
78 this(fromIndex, toIndex, from, to, null, null);
81 public InputEdge(char fromIndex, char toIndex, int from, int to, String label, String type) { argument
83 this.fromIndex = fromIndex;
93 public static synchronized InputEdge createImmutable(char fromIndex, char toIndex, int from, int to, String label, String type) { argument
94 InputEdge edge = new InputEdge(fromIndex, toIndex, from, to, label, type, State.IMMUTABLE);
106 public InputEdge(char fromIndex, char toIndex, int from, int to, String label, String type, State state) { argument
108 this.fromIndex
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DBitSet.java359 * Checks that fromIndex ... toIndex is a valid range of bit indices.
361 private static void checkRange(int fromIndex, int toIndex) { argument
362 if (fromIndex < 0)
363 throw new IndexOutOfBoundsException("fromIndex < 0: " + fromIndex);
366 if (fromIndex > toIndex)
367 throw new IndexOutOfBoundsException("fromIndex: " + fromIndex +
393 * Sets each bit from the specified {@code fromIndex} (inclusive) to the
397 * @param fromIndex inde
404 flip(int fromIndex, int toIndex) argument
481 set(int fromIndex, int toIndex) argument
525 set(int fromIndex, int toIndex, boolean value) argument
564 clear(int fromIndex, int toIndex) argument
645 get(int fromIndex, int toIndex) argument
711 nextSetBit(int fromIndex) argument
741 nextClearBit(int fromIndex) argument
785 previousSetBit(int fromIndex) argument
823 previousClearBit(int fromIndex) argument
1356 nextSetBit(int fromIndex, int toWordIndex) argument
[all...]
H A DAbstractList.java236 * index)} or {@code removeRange(int fromIndex, int toIndex)} is
492 * {@code (fromIndex < 0 || toIndex > size)}
494 * {@code (fromIndex > toIndex)}
496 public List<E> subList(int fromIndex, int toIndex) { argument
497 subListRangeCheck(fromIndex, toIndex, size());
499 new RandomAccessSubList<>(this, fromIndex, toIndex) :
500 new SubList<>(this, fromIndex, toIndex));
503 static void subListRangeCheck(int fromIndex, int toIndex, int size) { argument
504 if (fromIndex < 0)
505 throw new IndexOutOfBoundsException("fromIndex
594 removeRange(int fromIndex, int toIndex) argument
758 SubList(AbstractList<E> root, int fromIndex, int toIndex) argument
769 SubList(SubList<E> parent, int fromIndex, int toIndex) argument
809 removeRange(int fromIndex, int toIndex) argument
888 subList(int fromIndex, int toIndex) argument
924 RandomAccessSubList(AbstractList<E> root, int fromIndex, int toIndex) argument
932 RandomAccessSubList(RandomAccessSubList<E> parent, int fromIndex, int toIndex) argument
937 subList(int fromIndex, int toIndex) argument
[all...]
H A DArrays.java110 * Checks that {@code fromIndex} and {@code toIndex} are in
113 static void rangeCheck(int arrayLength, int fromIndex, int toIndex) { argument
114 if (fromIndex > toIndex) {
116 "fromIndex(" + fromIndex + ") > toIndex(" + toIndex + ")");
118 if (fromIndex < 0) {
119 throw new ArrayIndexOutOfBoundsException(fromIndex);
151 * to be sorted extends from the index {@code fromIndex}, inclusive, to
152 * the index {@code toIndex}, exclusive. If {@code fromIndex == toIndex},
162 * @param fromIndex th
169 sort(int[] a, int fromIndex, int toIndex) argument
209 sort(long[] a, int fromIndex, int toIndex) argument
249 sort(short[] a, int fromIndex, int toIndex) argument
289 sort(char[] a, int fromIndex, int toIndex) argument
329 sort(byte[] a, int fromIndex, int toIndex) argument
385 sort(float[] a, int fromIndex, int toIndex) argument
441 sort(double[] a, int fromIndex, int toIndex) argument
503 parallelSort(byte[] a, int fromIndex, int toIndex) argument
573 parallelSort(char[] a, int fromIndex, int toIndex) argument
643 parallelSort(short[] a, int fromIndex, int toIndex) argument
713 parallelSort(int[] a, int fromIndex, int toIndex) argument
783 parallelSort(long[] a, int fromIndex, int toIndex) argument
869 parallelSort(float[] a, int fromIndex, int toIndex) argument
955 parallelSort(double[] a, int fromIndex, int toIndex) argument
1061 parallelSort(T[] a, int fromIndex, int toIndex) argument
1168 parallelSort(T[] a, int fromIndex, int toIndex, Comparator<? super T> cmp) argument
1309 sort(Object[] a, int fromIndex, int toIndex) argument
1318 legacyMergeSort(Object[] a, int fromIndex, int toIndex) argument
1505 sort(T[] a, int fromIndex, int toIndex, Comparator<? super T> c) argument
1519 legacyMergeSort(T[] a, int fromIndex, int toIndex, Comparator<? super T> c) argument
1616 parallelPrefix(T[] array, int fromIndex, int toIndex, BinaryOperator<T> op) argument
1661 parallelPrefix(long[] array, int fromIndex, int toIndex, LongBinaryOperator op) argument
1709 parallelPrefix(double[] array, int fromIndex, int toIndex, DoubleBinaryOperator op) argument
1754 parallelPrefix(int[] array, int fromIndex, int toIndex, IntBinaryOperator op) argument
1820 binarySearch(long[] a, int fromIndex, int toIndex, long key) argument
1827 binarySearch0(long[] a, int fromIndex, int toIndex, long key) argument
1901 binarySearch(int[] a, int fromIndex, int toIndex, int key) argument
1908 binarySearch0(int[] a, int fromIndex, int toIndex, int key) argument
1982 binarySearch(short[] a, int fromIndex, int toIndex, short key) argument
1989 binarySearch0(short[] a, int fromIndex, int toIndex, short key) argument
2063 binarySearch(char[] a, int fromIndex, int toIndex, char key) argument
2070 binarySearch0(char[] a, int fromIndex, int toIndex, char key) argument
2144 binarySearch(byte[] a, int fromIndex, int toIndex, byte key) argument
2151 binarySearch0(byte[] a, int fromIndex, int toIndex, byte key) argument
2227 binarySearch(double[] a, int fromIndex, int toIndex, double key) argument
2234 binarySearch0(double[] a, int fromIndex, int toIndex, double key) argument
2318 binarySearch(float[] a, int fromIndex, int toIndex, float key) argument
2325 binarySearch0(float[] a, int fromIndex, int toIndex, float key) argument
2424 binarySearch(Object[] a, int fromIndex, int toIndex, Object key) argument
2431 binarySearch0(Object[] a, int fromIndex, int toIndex, Object key) argument
2529 binarySearch(T[] a, int fromIndex, int toIndex, T key, Comparator<? super T> c) argument
2536 binarySearch0(T[] a, int fromIndex, int toIndex, T key, Comparator<? super T> c) argument
3374 fill(long[] a, int fromIndex, int toIndex, long val) argument
3409 fill(int[] a, int fromIndex, int toIndex, int val) argument
3444 fill(short[] a, int fromIndex, int toIndex, short val) argument
3479 fill(char[] a, int fromIndex, int toIndex, char val) argument
3514 fill(byte[] a, int fromIndex, int toIndex, byte val) argument
3549 fill(boolean[] a, int fromIndex, int toIndex, boolean val) argument
3585 fill(double[] a, int fromIndex, int toIndex,double val) argument
3620 fill(float[] a, int fromIndex, int toIndex, float val) argument
3659 fill(Object[] a, int fromIndex, int toIndex, Object val) argument
[all...]
H A DObjects.java376 * Checks if the sub-range from {@code fromIndex} (inclusive) to
383 * <li>{@code fromIndex < 0}</li>
384 * <li>{@code fromIndex > toIndex}</li>
389 * @param fromIndex the lower-bound (inclusive) of the sub-range
392 * @return {@code fromIndex} if the sub-range within bounds of the range
397 int checkFromToIndex(int fromIndex, int toIndex, int length) { argument
398 return Preconditions.checkFromToIndex(fromIndex, toIndex, length, null);
402 * Checks if the sub-range from {@code fromIndex} (inclusive) to
403 * {@code fromIndex + size} (exclusive) is within the bounds of range from
409 * <li>{@code fromIndex <
423 checkFromIndexSize(int fromIndex, int size, int length) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/loop/
H A DLoopLastIndexOf.java41 int fromIndex = fromIndexParam;
42 if (fromIndex < 0) {
45 if (fromIndex > rightIndex) {
46 fromIndex = rightIndex;
50 return fromIndex;
56 int i = min + fromIndex;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/util/
H A DPreconditions.java75 int fromIndex, int toIndex, int length) {
76 return outOfBounds(oobe, "checkFromToIndex", fromIndex, toIndex, length);
81 int fromIndex, int size, int length) {
82 return outOfBounds(oobe, "checkFromIndexSize", fromIndex, size, length);
253 * Checks if the sub-range from {@code fromIndex} (inclusive) to
260 * <li>{@code fromIndex < 0}</li>
261 * <li>{@code fromIndex > toIndex}</li>
270 * out-of-bounds arguments {@code fromIndex}, {@code toIndex}, and {@code length}.
274 * @param fromIndex the lower-bound (inclusive) of the sub-range
284 * @return {@code fromIndex} i
73 outOfBoundsCheckFromToIndex( BiFunction<String, List<Integer>, ? extends RuntimeException> oobe, int fromIndex, int toIndex, int length) argument
79 outOfBoundsCheckFromIndexSize( BiFunction<String, List<Integer>, ? extends RuntimeException> oobe, int fromIndex, int size, int length) argument
292 checkFromToIndex(int fromIndex, int toIndex, int length, BiFunction<String, List<Integer>, X> oobef) argument
340 checkFromIndexSize(int fromIndex, int size, int length, BiFunction<String, List<Integer>, X> oobef) argument
[all...]
/openjdk10/jdk/test/java/util/Objects/
H A DCheckIndex.java143 for (int fromIndex : VALUES) {
146 boolean withinBounds = fromIndex >= 0 &&
149 fromIndex <= toIndex &&
151 l.add(new Object[]{fromIndex, toIndex, length, withinBounds});
159 public void testCheckFromToIndex(int fromIndex, int toIndex, int length, boolean withinBounds) { argument
163 apply("checkFromToIndex", List.of(fromIndex, toIndex, length)).getMessage();
170 "Range [%d, %d) is out of bounds of [0, %d), but was reported to be withing bounds", fromIndex, toIndex, length));
171 assertEquals(rIndex, fromIndex);
177 "Range [%d, %d) is within bounds of [0, %d), but was reported to be out of bounds", fromIndex, toIndex, length));
184 () -> Preconditions.checkFromToIndex(fromIndex, toInde
228 testCheckFromIndexSize(int fromIndex, int size, int length, boolean withinBounds) argument
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeStateList.java46 public CellTypeStateList subList(int fromIndex, int toIndex) { argument
47 return new CellTypeStateList(list.subList(fromIndex, toIndex));
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/utils/
H A DXMLStringDefault.java419 * no smaller than <code>fromIndex</code>, then the index of the first
423 * (this.charAt(<i>k</i>) == ch) && (<i>k</i> >= fromIndex)
426 * position <code>fromIndex</code>, then <code>-1</code> is returned.
428 * There is no restriction on the value of <code>fromIndex</code>. If it
435 * @param fromIndex the index to start the search from.
438 * than or equal to <code>fromIndex</code>, or <code>-1</code>
441 public int indexOf(int ch, int fromIndex) argument
443 return m_str.indexOf(ch, fromIndex);
472 * this.charAt(k) == ch) && (k <= fromIndex)
477 * @param fromIndex th
489 lastIndexOf(int ch, int fromIndex) argument
564 indexOf(String str, int fromIndex) argument
612 lastIndexOf(String str, int fromIndex) argument
[all...]
H A DXMLString.java353 * no smaller than <code>fromIndex</code>, then the index of the first
357 * (this.charAt(<i>k</i>) == ch) && (<i>k</i> >= fromIndex)
360 * position <code>fromIndex</code>, then <code>-1</code> is returned.
362 * There is no restriction on the value of <code>fromIndex</code>. If it
369 * @param fromIndex the index to start the search from.
372 * than or equal to <code>fromIndex</code>, or <code>-1</code>
375 public abstract int indexOf(int ch, int fromIndex); argument
400 * this.charAt(k) == ch) && (k <= fromIndex)
405 * @param fromIndex the index to start the search from. There is no
406 * restriction on the value of <code>fromIndex</cod
417 lastIndexOf(int ch, int fromIndex) argument
483 indexOf(String str, int fromIndex) argument
525 lastIndexOf(String str, int fromIndex) argument
[all...]
/openjdk10/jdk/test/java/util/Arrays/largeMemory/
H A DParallelPrefix.java145 public void testParallelPrefixForInt(int[] data, int fromIndex, int toIndex, IntBinaryOperator op) { argument
147 for (int index = fromIndex + 1; index < toIndex; index++) {
152 Arrays.parallelPrefix(parallelResult, fromIndex, toIndex, op);
155 int[] parallelRangeResult = Arrays.copyOfRange(data, fromIndex, toIndex);
157 assertArraysEqual(parallelRangeResult, Arrays.copyOfRange(sequentialResult, fromIndex, toIndex));
161 public void testParallelPrefixForLong(long[] data, int fromIndex, int toIndex, LongBinaryOperator op) { argument
163 for (int index = fromIndex + 1; index < toIndex; index++) {
168 Arrays.parallelPrefix(parallelResult, fromIndex, toIndex, op);
171 long[] parallelRangeResult = Arrays.copyOfRange(data, fromIndex, toIndex);
173 assertArraysEqual(parallelRangeResult, Arrays.copyOfRange(sequentialResult, fromIndex, toInde
177 testParallelPrefixForDouble(double[] data, int fromIndex, int toIndex, DoubleBinaryOperator op) argument
193 testParallelPrefixForStringr(String[] data , int fromIndex, int toIndex, BinaryOperator<String> op) argument
[all...]
/openjdk10/jdk/test/java/util/Arrays/
H A DSorting.java111 failed("Arrays.sort(int[],fromIndex,toIndex) shouldn't " +
130 failed("Arrays.sort(long[],fromIndex,toIndex) shouldn't " +
149 failed("Arrays.sort(short[],fromIndex,toIndex) shouldn't " +
168 failed("Arrays.sort(char[],fromIndex,toIndex) shouldn't " +
187 failed("Arrays.sort(byte[],fromIndex,toIndex) shouldn't " +
206 failed("Arrays.sort(float[],fromIndex,toIndex) shouldn't " +
225 failed("Arrays.sort(double[],fromIndex,toIndex) shouldn't " +
238 int fromIndex = m;
241 prepareSubArray(golden, fromIndex, toIndex, m);
249 sortSubArray(convertedTest, fromIndex, toInde
545 prepareSubArray(int[] a, int fromIndex, int toIndex, int m) argument
740 writeValue(float[] a, float value, int fromIndex, int count) argument
766 writeValue(double[] a, double value, int fromIndex, int count) argument
1525 sortSubArray(Object object, int fromIndex, int toIndex) argument
1548 checkSubArray(Object object, int fromIndex, int toIndex, int m) argument
1571 checkSubArray(Integer[] a, int fromIndex, int toIndex, int m) argument
1593 checkSubArray(int[] a, int fromIndex, int toIndex, int m) argument
1615 checkSubArray(byte[] a, int fromIndex, int toIndex, int m) argument
1637 checkSubArray(long[] a, int fromIndex, int toIndex, int m) argument
1659 checkSubArray(char[] a, int fromIndex, int toIndex, int m) argument
1681 checkSubArray(short[] a, int fromIndex, int toIndex, int m) argument
1703 checkSubArray(float[] a, int fromIndex, int toIndex, int m) argument
1725 checkSubArray(double[] a, int fromIndex, int toIndex, int m) argument
[all...]
H A DParallelSorting.java118 failed("Arrays.parallelSort(int[],fromIndex,toIndex) shouldn't " +
137 failed("Arrays.parallelSort(long[],fromIndex,toIndex) shouldn't " +
156 failed("Arrays.parallelSort(short[],fromIndex,toIndex) shouldn't " +
175 failed("Arrays.parallelSort(char[],fromIndex,toIndex) shouldn't " +
194 failed("Arrays.parallelSort(byte[],fromIndex,toIndex) shouldn't " +
213 failed("Arrays.parallelSort(float[],fromIndex,toIndex) shouldn't " +
232 failed("Arrays.parallelSort(double[],fromIndex,toIndex) shouldn't " +
245 int fromIndex = m;
248 prepareSubArray(golden, fromIndex, toIndex, m);
256 sortSubArray(convertedTest, fromIndex, toInde
568 prepareSubArray(int[] a, int fromIndex, int toIndex, int m) argument
763 writeValue(float[] a, float value, int fromIndex, int count) argument
789 writeValue(double[] a, double value, int fromIndex, int count) argument
1548 sortSubArray(Object object, int fromIndex, int toIndex) argument
1571 checkSubArray(Object object, int fromIndex, int toIndex, int m) argument
1594 checkSubArray(Integer[] a, int fromIndex, int toIndex, int m) argument
1616 checkSubArray(int[] a, int fromIndex, int toIndex, int m) argument
1638 checkSubArray(byte[] a, int fromIndex, int toIndex, int m) argument
1660 checkSubArray(long[] a, int fromIndex, int toIndex, int m) argument
1682 checkSubArray(char[] a, int fromIndex, int toIndex, int m) argument
1704 checkSubArray(short[] a, int fromIndex, int toIndex, int m) argument
1726 checkSubArray(float[] a, int fromIndex, int toIndex, int m) argument
1748 checkSubArray(double[] a, int fromIndex, int toIndex, int m) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/
H A DConstantStringIndexOfSnippets.java98 int fromIndex = origFromIndex;
99 if (fromIndex >= sourceCount) {
102 if (fromIndex < 0) {
103 fromIndex = 0;
106 return fromIndex;
115 outer_loop: for (long i = sourceOffset + fromIndex; i < sourceEnd;) {
/openjdk10/jdk/test/java/lang/String/CompactString/
H A DLastIndexOf.java112 public void testLastIndexOf(String str, int ch, int fromIndex, int expected) { argument
117 data.lastIndexOf(ch, fromIndex),
122 fromIndex, source));
211 int fromIndex, int expected) {
216 data.lastIndexOf(anotherString, fromIndex),
222 fromIndex, source));
210 testLastIndexOf(String str, String anotherString, int fromIndex, int expected) argument
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/
H A DStringIndexOfTestBase.java68 public int testStringIndexOfOffset(String a, String b, int fromIndex) { argument
69 return a.indexOf(b, fromIndex);
76 public int testStringBuilderIndexOfOffset(StringBuilder a, String b, int fromIndex) { argument
77 return a.indexOf(b, fromIndex);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DBasicIdealGraphPrinter.java45 final int fromIndex; field in class:BasicIdealGraphPrinter.Edge
50 public Edge(String from, int fromIndex, String to, int toIndex, String label) { argument
53 this.fromIndex = fromIndex;
62 h = 3 * h + fromIndex;
77 return from.equals(other.from) && fromIndex == other.fromIndex && to.equals(other.to) && toIndex == other.toIndex &&
209 stream.printf(" <edge from='%s' fromIndex='%d' to='%s' toIndex='%d' label='%s' />%n", escape(edge.from), edge.fromIndex, escape(edge.to), edge.toIndex, escape(edge.label));
/openjdk10/hotspot/test/compiler/patches/java.base/java/lang/
H A DHelper.java138 byte[] tgt, int tgtCount, int fromIndex) {
139 return StringUTF16.indexOf(src, srcCount, tgt, tgtCount, fromIndex);
143 byte[] tgt, int tgtCount, int fromIndex) {
144 return StringUTF16.indexOfLatin1(src, srcCount, tgt, tgtCount, fromIndex);
146 public static int lastIndexOf(byte[] src, byte[] tgt, int tgtCount, int fromIndex) { argument
148 return StringUTF16.lastIndexOf(src, srcCount, tgt, tgtCount, fromIndex);
151 public static int lastIndexOfLatin1(byte[] src, byte[] tgt, int tgtCount, int fromIndex) { argument
153 return StringUTF16.lastIndexOfLatin1(src, srcCount, tgt, tgtCount, fromIndex);
137 indexOf(byte[] src, int srcCount, byte[] tgt, int tgtCount, int fromIndex) argument
142 indexOfLatin1(byte[] src, int srcCount, byte[] tgt, int tgtCount, int fromIndex) argument
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DDeletedArrayFilter.java144 public ArrayData delete(final long fromIndex, final long toIndex) { argument
145 assert fromIndex >= 0 && fromIndex <= toIndex && toIndex < length();
146 deleted.setRange(fromIndex, toIndex + 1);
147 underlying.setEmpty(fromIndex, toIndex);
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DStringUTF16.java327 public static int indexOf(byte[] value, int ch, int fromIndex) { argument
329 if (fromIndex < 0) {
330 fromIndex = 0;
331 } else if (fromIndex >= max) {
332 // Note: fromIndex might be near -1>>>1.
338 return indexOfChar(value, ch, fromIndex, max);
340 return indexOfSupplementary(value, ch, fromIndex, max);
356 public static int indexOf(byte[] value, int valueCount, byte[] str, int strCount, int fromIndex) { argument
357 checkBoundsBeginEnd(fromIndex, valueCount, value);
359 return indexOfUnsafe(value, valueCount, str, strCount, fromIndex);
363 indexOfUnsafe(byte[] value, int valueCount, byte[] str, int strCount, int fromIndex) argument
405 indexOfLatin1(byte[] src, int srcCount, byte[] tgt, int tgtCount, int fromIndex) argument
411 indexOfLatin1Unsafe(byte[] src, int srcCount, byte[] tgt, int tgtCount, int fromIndex) argument
440 indexOfChar(byte[] value, int ch, int fromIndex, int max) argument
445 indexOfCharUnsafe(byte[] value, int ch, int fromIndex, int max) argument
457 indexOfSupplementary(byte[] value, int ch, int fromIndex, int max) argument
472 lastIndexOf(byte[] src, int srcCount, byte[] tgt, int tgtCount, int fromIndex) argument
507 lastIndexOf(byte[] value, int ch, int fromIndex) argument
526 lastIndexOfSupplementary(final byte[] value, int ch, int fromIndex) argument
1138 lastIndexOfLatin1(byte[] src, int srcCount, byte[] tgt, int tgtCount, int fromIndex) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DByteArrayCache.java158 byte[] putArray(final byte[] array, final int fromIndex, argument
163 // clean-up array of dirty part[fromIndex; toIndex[
164 fill(array, fromIndex, toIndex, (byte)0);
240 static void fill(final byte[] array, final int fromIndex, argument
244 Arrays.fill(array, fromIndex, toIndex, value);
246 check(array, fromIndex, toIndex, value);
250 static void check(final byte[] array, final int fromIndex, argument
258 + " from: " + fromIndex + " to: " + toIndex + "\n"
H A DIntArrayCache.java158 int[] putArray(final int[] array, final int fromIndex, argument
163 // clean-up array of dirty part[fromIndex; toIndex[
164 fill(array, fromIndex, toIndex, 0);
240 static void fill(final int[] array, final int fromIndex, argument
244 Arrays.fill(array, fromIndex, toIndex, value);
246 check(array, fromIndex, toIndex, value);
250 static void check(final int[] array, final int fromIndex, argument
258 + " from: " + fromIndex + " to: " + toIndex + "\n"

Completed in 142 milliseconds

1234