Searched refs:chs (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/test/java/awt/font/TextLayout/
H A DStyledFontLayoutTest.java83 char[] chs = "Sample Text.".toCharArray();
84 int len = chs.length;
90 GlyphVector pgv = plain.layoutGlyphVector(frc, chs, 0, len, 0);
92 g2d.drawChars(chs, 0, len, x, y); y +=50;
95 Rectangle2D plainStrBounds = plain.getStringBounds(chs, 0, len, frc);
98 GlyphVector bgv = bold.layoutGlyphVector(frc, chs, 0, len, 0);
99 Rectangle2D boldStrBounds = bold.getStringBounds(chs, 0, len, frc);
102 g2d.drawChars(chs, 0, len, x, y); y +=50;
/openjdk9/jdk/test/java/awt/Graphics2D/DrawString/
H A DEmptyAttrString.java49 char[] chs = { } ;
50 g.drawChars(chs, 0, 0, 50, 50);
/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DFontUtilities.java154 public static boolean isComplexScript(char [] chs, int start, int limit) { argument
157 if (chs[i] < MIN_LAYOUT_CHARCODE) {
160 else if (isComplexCharCode(chs[i])) {
184 public static boolean isComplexText(char [] chs, int start, int limit) { argument
187 if (chs[i] < MIN_LAYOUT_CHARCODE) {
190 else if (isNonSimpleChar(chs[i])) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java46 char[] chs = new char[2];
48 chs[0] = (char)((ch>>10)+0xd800);
49 chs[1] = (char)((ch&0x3ff)+0xdc00);
50 return new String(chs);
/openjdk9/jdk/src/java.desktop/share/classes/javax/imageio/metadata/
H A DIIOMetadataNode.java763 char[] chs = name.toCharArray();
764 for (int i=0;i<chs.length;i++) {
765 if (chs[i] >= 0xfffe) {
/openjdk9/jdk/src/java.desktop/share/classes/sun/print/
H A DPSPrinterJob.java1688 private String makeCharsetName(String name, char[] chs) { argument
1693 for (int i=0; i < chs.length; i++) {
1694 if (chs[i] > 255) {
1701 for (int i=0; i < chs.length; i++) {
1702 if (chs[i] > 127) {
/openjdk9/nashorn/test/script/basic/
H A DJDK-8017084.js2286 chs: 2255,

Completed in 125 milliseconds