Searched refs:fontPath (Results 1 - 5 of 5) sorted by relevance
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_Win32GraphicsEnv.cpp | 236 LPWSTR fontPath = fontPathBuf; local 268 (LPBYTE)fontPath, 274 fontPath[fontPathLen] = L'\0'; 275 if (wcsstr(fontPath, L"%SystemRoot%")) { 276 //if the fontPath includes %SystemRoot% 279 && swprintf(tmpPath, MAX_PATH, L"%s%s", systemRoot, fontPath + 12) != -1) { 280 fontPath = tmpPath; 285 } else if (wcscmp(fontPath, L"EUDC.TTE") == 0) { 290 fontPath = tmpPath; 296 return JNU_NewStringPlatform(env, fontPath); [all...] |
/openjdk7/jdk/src/windows/classes/sun/awt/ |
H A D | Win32FontManager.java | 139 if (fontPath == null) { 140 fontPath = getPlatformFontPath(noType1Font); 147 String tmpFontPath = jreFontDirName+File.pathSeparator+fontPath;
|
/openjdk7/jdk/src/share/classes/sun/font/ |
H A D | SunFontManager.java | 203 /* fontPath is the location of all fonts on the system, excluding the 207 * This call must be followed by a call to registerFontDirs(fontPath) 210 protected String fontPath; field in class:SunFontManager 493 fontPath = getPlatformFontPath(noType1Font); 496 fontPath = 497 extraFontPath + File.pathSeparator + fontPath; 500 fontPath = 501 fontPath + File.pathSeparator + dbgFontPath; 503 fontPath = 504 dbgFontPath + File.pathSeparator + fontPath; 902 FontRegistrationInfo(String fontPath, String[] names, int format, boolean useJavaRasterizer, int rank) argument [all...] |
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | fontpath.c | 419 char *fontPath = NULL; local 485 if (pathLen > 0 && (fontPath = malloc(pathLen))) { 486 *fontPath = '\0'; 489 strcat(fontPath, ":"); 491 strcat(fontPath, fontdirs[i]); 496 return fontPath; 756 char **fontPath; local
|
/openjdk7/jdk/src/solaris/classes/sun/awt/ |
H A D | X11FontManager.java | 225 if (fontPath == null && 232 fontPath = getPlatformFontPath(noType1Font); 233 registerFontDirs(fontPath); 596 * fontPath is just those directories, unless on usage we 599 * the fontPath we have here is the complete one from 610 * So something to revisit is that probably fontPath
|
Completed in 63 milliseconds