Searched refs:newChar (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11FontScaler_md.c234 XCharStruct* newChar = (XCharStruct*)malloc(sizeof(XCharStruct)); local
235 *overall = (AWTChar)newChar;
249 &direction, &ascent, &descent, newChar);
250 /* XTextExtents16(xFont, xChar, 1, &direction, &ascent, &descent, newChar); */
/openjdk7/jdk/src/solaris/classes/sun/nio/cs/ext/
H A DCOMPOUND_TEXT_Decoder.java193 char newChar;
207 newChar = '\t';
211 newChar = '\n';
220 cb.put(newChar);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextMeasurer.java675 char newChar = newParagraph.setIndex(insertPos);
676 newChars[newCharIndex] = newChar;
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1982 * <code>oldChar</code> in this string with <code>newChar</code>.
1991 * of <code>newChar</code>.
2005 * @param newChar the new character.
2007 * occurrence of <code>oldChar</code> with <code>newChar</code>.
2009 public String replace(char oldChar, char newChar) { argument
2010 if (oldChar != newChar) {
2027 buf[i] = (c == oldChar) ? newChar : c;

Completed in 56 milliseconds