Searched refs:nchars (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/io/Reader/
H A DSkip.java39 long nchars = 8200;
40 long actual = fr.skip(nchars);
42 if (actual > nchars) {
44 ("Should skip " + nchars + ", but skipped " +actual+" chars");
H A DSkipNegative.java38 long nchars = -1L;
40 long actual = fr.skip(nchars);
/openjdk7/jdk/test/java/io/BufferedReader/
H A DSkipNegative.java38 long nchars = -1L;
40 long actual = BR.skip(nchars);
/openjdk7/jdk/test/java/io/LineNumberReader/
H A DSkip.java37 long nchars = 164 * 50;
55 long realnum = reader.skip(nchars);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DChunkedInputStream.java51 private int numeric (char[] arr, int nchars) throws IOException { argument
52 assert arr.length >= nchars;
54 for (int i=0; i<nchars; i++) {
/openjdk7/jdk/test/tools/launcher/
H A DZipMeUp.java42 static byte[] getManifestAsBytes(int nchars) throws IOException { argument
49 for (int i = 0 ; i < nchars - SOME_KLASS.length() ; i++) {
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c892 xelts[i].nchars = elts[i*4 + 0];
898 charCnt += xelts[i].nchars;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Component.cpp3000 int nchars = ::ToAsciiEx(dynamic->windowsKey, scancode, kbdState, local
3007 if (nchars < 0) { // Dead key
3024 if (nchars == 0) {
3029 else if (nchars > 1) { // can't happen, see reset code below

Completed in 55 milliseconds