Searched refs:fontPath (Results 1 - 6 of 6) sorted by relevance

/openjdk9/jdk/src/java.desktop/windows/native/libawt/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...]
/openjdk9/jdk/src/java.desktop/windows/classes/sun/awt/
H A DWin32FontManager.java134 if (fontPath == null) {
135 fontPath = getPlatformFontPath(noType1Font);
142 String tmpFontPath = jreFontDirName+File.pathSeparator+fontPath;
/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DSunFontManager.java205 /* fontPath is the location of all fonts on the system, excluding the
209 * This call must be followed by a call to registerFontDirs(fontPath)
212 protected String fontPath; field in class:SunFontManager
503 fontPath = getPlatformFontPath(noType1Font);
506 fontPath =
507 extraFontPath + File.pathSeparator + fontPath;
510 fontPath =
511 fontPath + File.pathSeparator + dbgFontPath;
513 fontPath =
514 dbgFontPath + File.pathSeparator + fontPath;
881 FontRegistrationInfo(String fontPath, String[] names, int format, boolean useJavaRasterizer, int rank) argument
[all...]
/openjdk9/jdk/src/java.desktop/unix/native/common/awt/
H A Dfontpath.c406 char *fontPath = NULL; local
472 if (pathLen > 0 && (fontPath = malloc(pathLen))) {
473 *fontPath = '\0';
476 strcat(fontPath, ":");
478 strcat(fontPath, fontdirs[i]);
483 return fontPath;
764 char **fontPath; local
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/
H A DX11FontManager.java245 if (fontPath == null &&
252 fontPath = getPlatformFontPath(noType1Font);
253 registerFontDirs(fontPath);
616 * fontPath is just those directories, unless on usage we
619 * the fontPath we have here is the complete one from
630 * So something to revisit is that probably fontPath
/openjdk9/jdk/src/java.desktop/macosx/classes/sun/font/
H A DCFontManager.java161 private native void loadNativeDirFonts(String fontPath); argument

Completed in 170 milliseconds