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

/openjdk7/jdk/src/solaris/classes/sun/font/
H A DNativeFont.java69 public NativeFont(String platName, boolean bitmapDelegate) argument
71 super(platName, null);
91 throw new FontFormatException("Couldn't locate font" + platName);
105 String xlfd = platName.toLowerCase(Locale.ENGLISH);
182 throw new FontFormatException("Bad native name " + platName);
204 static boolean hasExternalBitmaps(String platName) { argument
209 StringBuilder sb = new StringBuilder(platName);
340 pos = platName.indexOf('-', pos);
347 StringBuilder sb = new StringBuilder(platName);
393 " style="+style+" nativeName="+platName;
[all...]
H A DFontConfigManager.java409 !fcInfo.firstFont.fontFile.equals(physFont.platName)) {
430 !fc.firstFont.fontFile.equals(physFont.platName) &&
/openjdk7/jdk/src/share/classes/sun/font/
H A DPhysicalFont.java39 protected String platName; field in class:PhysicalFont
62 this.platName = platname;
H A DFileFont.java291 return platName;
302 return platName;
305 final File f = new File(platName);
330 return isTmpFile ? "temp file" : platName;
H A DCMap.java208 // String name = font.platName.toLowerCase(Locale.ENGLISH);
235 if (FontUtilities.isSolaris && font.platName != null &&
236 (font.platName.startsWith(
238 font.platName.startsWith(
240 font.platName.startsWith(
H A DTrueTypeFont.java288 FontUtilities.getLogger().info("open TTF: " + platName);
296 return new RandomAccessFile(platName, "r");
354 " file is " + platName;
408 "While reading " + platName, e);
429 "While reading " + platName, e);
975 // System.out.println("platname="+platName+" font="+fullName+
992 if (FontUtilities.isSolaris && platName.endsWith("HG-GothicB.ttf")) {
H A DType1Font.java191 //System.out.println("open T1 " + platName);
198 return new RandomAccessFile(platName, "r");
238 return new RandomAccessFile(platName, "r");
H A DSunFontManager.java830 if (oldFont.platName.startsWith(jreFontDirName)) {
835 oldFont.platName +
836 " with " + newFont.platName);
845 " from " + oldFont.platName +
846 " with " + newFont.platName);
2554 if (physFonts[i].platName.equals(fileName)) {
3520 //String platName = platformFontName.replaceAll(" ", "_");
3521 //System.out.println("filename."+platName+"="+fontFileName);
/openjdk7/jdk/src/windows/classes/sun/font/
H A DNativeFont.java46 public NativeFont(String platName, boolean isBitmapDelegate) argument
52 static boolean hasExternalBitmaps(String platName) { argument
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11FontManager.java148 public String getFileNameFromPlatformName(String platName) { argument
153 if (platName.startsWith("/")) {
154 return platName;
158 String fontID = specificFontIDForName(platName);
166 fileName = super.getFileNameFromPlatformName(platName);
198 xVal.add(platName);
202 if (!xVal.contains(platName)) {
203 xVal.add(platName);
230 "can't find file for " + platName);
244 fileName = getX11FontName(platName);
465 getX11FontName(String platName) argument
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c156 (*env)->GetFieldID(env, tmpClass, "platName", "Ljava/lang/String;");
157 jstring platName = (*env)->GetObjectField(env, local
160 const char *name = JNU_GetStringPlatformChars(env, platName, NULL);
161 JNU_ReleaseStringPlatformChars(env, platName, name);

Completed in 67 milliseconds