Home | History | Annotate | Download | only in src

Lines Matching full:system

20  * System.arraycopy cases
36 System.out.println("string -> object");
37 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length);
38 System.out.println("object -> string");
39 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length);
40 System.out.println("object -> string (modified)");
43 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
46 System.out.println("caught ArrayStoreException (expected)");
95 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length);
96 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length);
97 System.arraycopy(intArray, srcPos, intArray, dstPos, length);
98 System.arraycopy(longArray, srcPos, longArray, dstPos, length);
99 System.arraycopy(charArray, srcPos, charArray, dstPos, length);
103 System.out.println("mismatch int vs byte at " + i + " : " +
107 System.out.println("mismatch int vs short at " + i + " : " +
111 System.out.println("mismatch int vs long at " + i + " : " +
115 System.out.println("mismatch int vs char at " + i + " : " +
121 System.out.println("copy: " + srcPos + "," + dstPos + "," + length +
165 System.arraycopy(new float[len], 0, new float[len], 0, len);
166 System.arraycopy(new double[len], 0, new double[len], 0, len);