Searched refs:newChars (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DPatternEntry.java210 newChars.setLength(0);
222 if (newChars.length() == 0) newChars.append(ch);
223 else if (inChars) newChars.append(ch);
246 if (newChars.length() == 0) newChars.append(ch);
247 else if (inChars) newChars.append(ch);
263 newChars.append(ch);
273 if (newChars.length() == 0) {
282 return new PatternEntry(newStrength, newChars, newExtensio
286 private StringBuffer newChars = new StringBuffer(); field in class:PatternEntry.Parser
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextMeasurer.java671 char[] newChars = new char[end-fStart];
673 System.arraycopy(fChars, 0, newChars, 0, newCharIndex);
676 newChars[newCharIndex] = newChar;
679 newChars,
682 fChars = newChars;
684 if (fBidi != null || Bidi.requiresBidi(newChars, newCharIndex, newCharIndex + 1) ||
730 char[] newChars = new char[end-fStart];
733 System.arraycopy(fChars, 0, newChars, 0, deletePos-fStart);
734 System.arraycopy(fChars, changedIndex+1, newChars, changedIndex, end-deletePos);
735 fChars = newChars;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/
H A DPolicyParser.java902 char[] newChars = new char[chars.length + numQuotes];
905 newChars[j++] = chars[i];
907 newChars[j++] = '\\';
908 newChars[j++] = chars[i];
911 name = new String(newChars);

Completed in 64 milliseconds