Searched defs:fontPath (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsEnv.cpp236 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/share/classes/sun/font/
H A DSunFontManager.java203 /* 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 Dfontpath.c419 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

Completed in 502 milliseconds