Lines Matching defs:fill

493      *            the {@code byte} array to fill.
497 public static void fill(byte[] array, byte value) {
507 * the {@code byte} array to fill.
509 * the first index to fill.
511 * the last + 1 index to fill.
519 public static void fill(byte[] array, int start, int end, byte value) {
530 * the {@code short} array to fill.
534 public static void fill(short[] array, short value) {
544 * the {@code short} array to fill.
546 * the first index to fill.
548 * the last + 1 index to fill.
556 public static void fill(short[] array, int start, int end, short value) {
567 * the {@code char} array to fill.
571 public static void fill(char[] array, char value) {
581 * the {@code char} array to fill.
583 * the first index to fill.
585 * the last + 1 index to fill.
593 public static void fill(char[] array, int start, int end, char value) {
604 * the {@code int} array to fill.
608 public static void fill(int[] array, int value) {
618 * the {@code int} array to fill.
620 * the first index to fill.
622 * the last + 1 index to fill.
630 public static void fill(int[] array, int start, int end, int value) {
641 * the {@code long} array to fill.
645 public static void fill(long[] array, long value) {
655 * the {@code long} array to fill.
657 * the first index to fill.
659 * the last + 1 index to fill.
667 public static void fill(long[] array, int start, int end, long value) {
678 * the {@code float} array to fill.
682 public static void fill(float[] array, float value) {
692 * the {@code float} array to fill.
694 * the first index to fill.
696 * the last + 1 index to fill.
704 public static void fill(float[] array, int start, int end, float value) {
715 * the {@code double} array to fill.
719 public static void fill(double[] array, double value) {
729 * the {@code double} array to fill.
731 * the first index to fill.
733 * the last + 1 index to fill.
741 public static void fill(double[] array, int start, int end, double value) {
752 * the {@code boolean} array to fill.
756 public static void fill(boolean[] array, boolean value) {
766 * the {@code boolean} array to fill.
768 * the first index to fill.
770 * the last + 1 index to fill.
778 public static void fill(boolean[] array, int start, int end, boolean value) {
789 * the {@code Object} array to fill.
793 public static void fill(Object[] array, Object value) {
803 * the {@code Object} array to fill.
805 * the first index to fill.
807 * the last + 1 index to fill.
815 public static void fill(Object[] array, int start, int end, Object value) {