Searched refs:theChars (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteEUC.java133 String theChars;
140 theChars = index2;
144 theChars = index2a;
149 theChars = index2b;
153 theChars = index2c;
156 aChar = theChars.charAt(2*index);
159 aChar = theChars.charAt(2*index + 1);
225 String theChars;
230 theChars = index2;
234 theChars
[all...]
/openjdk7/jdk/src/solaris/instrument/
H A DFileSystemSupport_md.c119 char* theChars; local
130 theChars = (char*)malloc(len+1);
132 memcpy(theChars, parent, parentEnd);
134 memcpy(theChars+parentEnd, child, cn);
135 theChars[len] = '\0';
137 theChars = (char*)malloc(len+2);
139 memcpy(theChars, parent, parentEnd);
140 theChars[parentEnd] = slash;
142 memcpy(theChars+parentEnd+1, child, cn);
143 theChars[le
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DSimpleEUCEncoder.java67 String theChars;
72 theChars = index2;
76 theChars = index2a;
81 theChars = index2b;
85 theChars = index2c;
88 if (theChars.charAt(2*index) != '\u0000' ||
89 theChars.charAt(2*index + 1) != '\u0000')
126 String theChars;
133 theChars = index2;
136 theChars
[all...]
/openjdk7/jdk/src/windows/instrument/
H A DFileSystemSupport_md.c225 char* theChars; local
263 theChars = (char*)malloc(len+1);
264 memcpy(theChars, parent, parentEnd);
265 memcpy(theChars+parentEnd, child+childStart, (cn-childStart));
266 theChars[len] = '\0';
268 theChars = (char*)malloc(len+2);
269 memcpy(theChars, parent, parentEnd);
270 theChars[parentEnd] = slash;
271 memcpy(theChars+parentEnd+1, child+childStart, (cn-childStart));
272 theChars[le
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DASCIIUtility.java117 char[] theChars = new char[size];
120 theChars[i++] = (char)(b[j++]&0xff);
122 return new String(theChars);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DASCIIUtility.java116 char[] theChars = new char[size];
119 theChars[i++] = (char)(b[j++]&0xff);
121 return new String(theChars);
/openjdk7/jdk/src/windows/classes/java/io/
H A DWin32FileSystem.java248 char[] theChars = null;
250 theChars = new char[strlen];
251 parent.getChars(0, parentEnd, theChars, 0);
252 child.getChars(childStart, cn, theChars, parentEnd);
254 theChars = new char[strlen + 1];
255 parent.getChars(0, parentEnd, theChars, 0);
256 theChars[parentEnd] = slash;
257 child.getChars(childStart, cn, theChars, parentEnd + 1);
259 return new String(theChars);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKhmerReordering.h142 static le_int32 reorder(const LEUnicode *theChars, le_int32 charCount, le_int32 scriptCode,
H A DTibetanReordering.h161 static le_int32 reorder(const LEUnicode *theChars, le_int32 charCount, le_int32 scriptCode,
H A DIndicReordering.h177 static le_int32 reorder(const LEUnicode *theChars, le_int32 charCount, le_int32 scriptCode,
183 static le_int32 v2process(const LEUnicode *theChars, le_int32 charCount, le_int32 scriptCode,
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTEvent.m864 NSString *theChars = [nsEvent characters];
865 unsigned i, stringLength = [theChars length];
868 testChar = [theChars characterAtIndex:i];

Completed in 48 milliseconds