Lines Matching +defs:val +defs:buf

1286                 low = mid + 1;  // Neither val is NaN, thisVal is smaller
1288 high = mid - 1; // Neither val is NaN, thisVal is larger
1377 low = mid + 1; // Neither val is NaN, thisVal is smaller
1379 high = mid - 1; // Neither val is NaN, thisVal is larger
1883 * @param val the value to be stored in all elements of the array
1885 public static void fill(long[] a, long val) {
1887 a[i] = val;
1902 * @param val the value to be stored in all elements of the array
1907 public static void fill(long[] a, int fromIndex, int toIndex, long val) {
1910 a[i] = val;
1918 * @param val the value to be stored in all elements of the array
1920 public static void fill(int[] a, int val) {
1922 a[i] = val;
1937 * @param val the value to be stored in all elements of the array
1942 public static void fill(int[] a, int fromIndex, int toIndex, int val) {
1945 a[i] = val;
1953 * @param val the value to be stored in all elements of the array
1955 public static void fill(short[] a, short val) {
1957 a[i] = val;
1972 * @param val the value to be stored in all elements of the array
1977 public static void fill(short[] a, int fromIndex, int toIndex, short val) {
1980 a[i] = val;
1988 * @param val the value to be stored in all elements of the array
1990 public static void fill(char[] a, char val) {
1992 a[i] = val;
2007 * @param val the value to be stored in all elements of the array
2012 public static void fill(char[] a, int fromIndex, int toIndex, char val) {
2015 a[i] = val;
2023 * @param val the value to be stored in all elements of the array
2025 public static void fill(byte[] a, byte val) {
2027 a[i] = val;
2042 * @param val the value to be stored in all elements of the array
2047 public static void fill(byte[] a, int fromIndex, int toIndex, byte val) {
2050 a[i] = val;
2058 * @param val the value to be stored in all elements of the array
2060 public static void fill(boolean[] a, boolean val) {
2062 a[i] = val;
2077 * @param val the value to be stored in all elements of the array
2083 boolean val) {
2086 a[i] = val;
2094 * @param val the value to be stored in all elements of the array
2096 public static void fill(double[] a, double val) {
2098 a[i] = val;
2113 * @param val the value to be stored in all elements of the array
2118 public static void fill(double[] a, int fromIndex, int toIndex,double val){
2121 a[i] = val;
2129 * @param val the value to be stored in all elements of the array
2131 public static void fill(float[] a, float val) {
2133 a[i] = val;
2148 * @param val the value to be stored in all elements of the array
2153 public static void fill(float[] a, int fromIndex, int toIndex, float val) {
2156 a[i] = val;
2164 * @param val the value to be stored in all elements of the array
2168 public static void fill(Object[] a, Object val) {
2170 a[i] = val;
2185 * @param val the value to be stored in all elements of the array
2192 public static void fill(Object[] a, int fromIndex, int toIndex, Object val) {
2195 a[i] = val;
3612 StringBuilder buf = new StringBuilder(bufLen);
3613 deepToString(a, buf, new HashSet<Object[]>());
3614 return buf.toString();
3617 private static void deepToString(Object[] a, StringBuilder buf,
3620 buf.append("null");
3625 buf.append("[]");
3630 buf.append('[');
3635 buf.append("null");
3641 buf.append(toString((byte[]) element));
3643 buf.append(toString((short[]) element));
3645 buf.append(toString((int[]) element));
3647 buf.append(toString((long[]) element));
3649 buf.append(toString((char[]) element));
3651 buf.append(toString((float[]) element));
3653 buf.append(toString((double[]) element));
3655 buf.append(toString((boolean[]) element));
3658 buf.append("[...]");
3660 deepToString((Object[])element, buf, dejaVu);
3663 buf.append(element.toString());
3668 buf.append(", ");
3670 buf.append(']');