Home | History | Annotate | Download | only in src

Lines Matching defs:System

20  * System.arraycopy cases
35 System.out.println("string -> object");
36 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length);
37 System.out.println("object -> string");
38 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length);
39 System.out.println("object -> string (modified)");
42 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
45 System.out.println("caught ArrayStoreException (expected)");
87 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length);
88 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length);
89 System.arraycopy(intArray, srcPos, intArray, dstPos, length);
90 System.arraycopy(longArray, srcPos, longArray, dstPos, length);
94 System.out.println("mismatch int vs byte at " + i + " : " +
98 System.out.println("mismatch int vs short at " + i + " : " +
102 System.out.println("mismatch int vs long at " + i + " : " +
108 System.out.println("copy: " + srcPos + "," + dstPos + "," + length +