Searched refs:styleIndex (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMFontConfiguration.java269 int styleIndex = getStyleIndex(style);
270 return getMotifFontSet(fontIndex, styleIndex);
273 private String getMotifFontSet(int fontIndex, int styleIndex) { argument
274 String fontSet = motifFontSets[fontIndex][styleIndex];
276 fontSet = buildMotifFontSet(fontIndex, styleIndex);
277 motifFontSets[fontIndex][styleIndex] = fontSet;
282 private String buildMotifFontSet(int fontIndex, int styleIndex) { argument
286 short nameID = getComponentFontIDMotif(scripts[i], fontIndex, styleIndex);
288 nameID = getComponentFontID(scripts[i], fontIndex, styleIndex);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DFcFontConfiguration.java239 for (int styleIndex = 0; styleIndex < NUM_STYLES; styleIndex++) {
241 String faceName = fontName + "." + styleNames[styleIndex];
244 fontNames[fontIndex], styleIndex);
265 result[fontIndex * NUM_STYLES + styleIndex]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java485 for (int styleIndex = 0; styleIndex < NUM_STYLES; styleIndex++) {
491 fontIndex, styleIndex);
494 nameIDs[index] = remapLocaleMap(fontIndex, styleIndex,
506 fontIndex, styleIndex);
509 id = remapLocaleMap(fontIndex, styleIndex, fallbackScripts[i], id);
518 System.out.println("fontIndex=" + fontIndex + ", styleIndex=" + styleIndex
529 compFontNameIDs[fontIndex][styleIndex]
534 remapLocaleMap(int fontIndex, int styleIndex, short scriptID, short fontID) argument
684 getStyleName(int styleIndex) argument
861 getFontDescriptors(int fontIndex, int styleIndex) argument
870 buildFontDescriptors(int fontIndex, int styleIndex) argument
1570 getComponentFontID(short scriptID, int fontIndex, int styleIndex) argument
1584 getComponentFontIDMotif(short scriptID, int fontIndex, int styleIndex) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java1502 int styleIndex = str.lastIndexOf(sepChar, sizeIndex-1);
1515 styleIndex = sizeIndex;
1523 if (styleIndex >= 0 && styleIndex+1 < strlen) {
1524 styleName = str.substring(styleIndex+1, sizeIndex);
1538 styleIndex = sizeIndex;
1539 if (str.charAt(styleIndex-1) == sepChar) {
1540 styleIndex--;
1543 fontName = str.substring(0, styleIndex);
1547 if (styleIndex >
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DSunFontManager.java1663 int styleIndex = -1;
1665 styleIndex = 0;
1667 styleIndex = 1;
1669 styleIndex = 2;
1671 styleIndex = 3;
1673 if (styleIndex == -1 && !lcName.equalsIgnoreCase(fd.familyName)) {
1769 if (f == styleIndex) {

Completed in 41 milliseconds