Searched refs:compFont (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeStrike.java46 private CompositeFont compFont; field in class:CompositeStrike
51 this.compFont = font2D;
53 this.disposer = new FontStrikeDisposer(compFont, desc);
54 if (desc.style != compFont.style) {
57 ((compFont.style & Font.BOLD) == 0)) {
61 (compFont.style & Font.ITALIC) == 0) {
65 strikes = new PhysicalStrike[compFont.numSlots];
78 (PhysicalStrike)(compFont.getSlotFont(slot).getStrike(desc));
86 return compFont.getNumGlyphs();
92 for (int s=0; s<compFont
[all...]
H A DCompositeFont.java150 CompositeFont(PhysicalFont physFont, CompositeFont compFont) { argument
159 numSlots = compFont.numSlots+1;
171 System.arraycopy(compFont.components, 0,
172 components, 1, compFont.numSlots);
174 if (compFont.componentNames != null) {
177 System.arraycopy(compFont.componentNames, 0,
178 componentNames, 1, compFont.numSlots);
180 if (compFont.componentFileNames != null) {
183 System.arraycopy(compFont.componentFileNames, 0,
184 componentFileNames, 1, compFont
[all...]
H A DFontUtilities.java426 CompositeFont compFont = compMap.get(physicalFont);
427 if (compFont == null) {
428 compFont = new CompositeFont(physicalFont, dialog2D);
429 compMap.put(physicalFont, compFont);
431 FontAccess.getFontAccess().setFont2D(fuir, compFont.handle);
H A DCompositeGlyphMapper.java60 public CompositeGlyphMapper(CompositeFont compFont) { argument
61 font = compFont;
66 hasExcludes = compFont.exclusionRanges != null &&
67 compFont.maxIndices != null;
H A DSunFontManager.java626 CompositeFont compFont = new CompositeFont(physicalFont, dialog2D);
627 Font2DHandle newHandle = new Font2DHandle(compFont);
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DFontConfigManager.java65 public CompositeFont compFont; // null if not yet created/known. field in class:FontConfigManager.FcCompFont
375 if (fcInfo.compFont != null) {
376 return fcInfo.compFont;
388 return (fcInfo.compFont = jdkFont);
412 return (fcInfo.compFont = jdkFont);
441 return (fcInfo.compFont = new CompositeFont(physFont, jdkFont));
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Font.cpp250 jobjectArray compFont = NULL; local
258 compFont = GetComponentFonts(env, font);
259 cfnum = env->GetArrayLength(compFont);
261 compFont = NULL;
281 jobject fontDescriptor = env->GetObjectArrayElement(compFont,
361 env->DeleteLocalRef(compFont);
365 env->DeleteLocalRef(compFont);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java524 CompositeFont compFont = (CompositeFont)font2D;
530 compFont.getMapper().charsToGlyphs(len, chars, glyphs);
542 PhysicalFont slotFont = compFont.getSlotFont(slot);
726 CompositeFont compFont = (CompositeFont)font2D;
745 PhysicalFont slotFont = compFont.getSlotFont(slot);

Completed in 65 milliseconds