Searched defs:compFont (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeGlyphMapper.java60 public CompositeGlyphMapper(CompositeFont compFont) { argument
61 font = compFont;
66 hasExcludes = compFont.exclusionRanges != null &&
67 compFont.maxIndices != null;
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...]
/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);

Completed in 748 milliseconds