Lines Matching defs:fcInfo

42     private static final FontConfigInfo fcInfo = new FontConfigInfo();
196 getFontConfig(getFCLocaleStr(), fcInfo, fontArr, includeFallbacks);
256 public PhysicalFont registerFromFcInfo(FcCompFont fcInfo) {
262 String fontFile = fcInfo.firstFont.fontFile;
278 Font2D f2d = fm.findFont2D(fcInfo.firstFont.familyName,
279 fcInfo.style,
295 physFont = fm.findJREDeferredFont(fcInfo.firstFont.familyName,
296 fcInfo.style);
303 physFont = fm.initialiseDeferredFont(fcInfo.firstFont.fontFile);
307 Font2D f2d = fm.findFont2D(fcInfo.firstFont.familyName,
308 fcInfo.style,
335 physFont = fm.registerFontFile(fcInfo.firstFont.fontFile, null,
356 FcCompFont fcInfo = null;
360 fcInfo = fontConfigFonts[i];
364 if (fcInfo == null) {
365 fcInfo = fontConfigFonts[0];
371 " uses " + fcInfo.firstFont.familyName +
372 " in file: " + fcInfo.firstFont.fontFile);
375 if (fcInfo.compFont != null) {
376 return fcInfo.compFont;
384 fm.findFont2D(fcInfo.jdkName, style, FontManager.LOGICAL_FALLBACK);
386 if (fcInfo.firstFont.familyName == null ||
387 fcInfo.firstFont.fontFile == null) {
388 return (fcInfo.compFont = jdkFont);
399 FontFamily family = FontFamily.getFamily(fcInfo.firstFont.familyName);
402 Font2D f2D = family.getFontWithExactStyleMatch(fcInfo.style);
409 !fcInfo.firstFont.fontFile.equals(physFont.platName)) {
410 physFont = registerFromFcInfo(fcInfo);
412 return (fcInfo.compFont = jdkFont);
428 if (fc != fcInfo &&
441 return (fcInfo.compFont = new CompositeFont(physFont, jdkFont));
458 FontConfigInfo fcInfo,
462 void populateFontConfig(FcCompFont[] fcInfo) {
463 fontConfigFonts = fcInfo;
473 return fcInfo;