Searched defs:mapper (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DFontRunIterator.java42 CompositeGlyphMapper mapper; // handy cache field in class:FontRunIterator
57 this.mapper = (CompositeGlyphMapper)font.getMapper();
121 int sl = mapper.charToGlyph(ch) & CompositeGlyphMapper.SLOTMASK;
123 while ((ch = nextCodePoint(lim)) != DONE && (mapper.charToGlyph(ch) & CompositeGlyphMapper.SLOTMASK) == sl);
H A DPhysicalStrike.java49 protected CharToGlyphMapper mapper; field in class:PhysicalStrike
H A DFont2D.java79 * A mapper can be independent of the strike.
80 * Perhaps the reference to the mapper ought to be held on the
82 * and so the mapper would be useless if its native portion was
85 protected CharToGlyphMapper mapper; field in class:Font2D
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DPackageUseWriter.java54 ClassUseMapper mapper, String filename,
67 Set<ClassDoc> usingClasses = mapper.classToClass.get(usedClass.qualifiedName());
89 * @param mapper the mapping of the class usage.
93 ClassUseMapper mapper, PackageDoc pkgdoc) {
98 mapper, filename, pkgdoc);
53 PackageUseWriter(ConfigurationImpl configuration, ClassUseMapper mapper, String filename, PackageDoc pkgdoc) argument
92 generate(ConfigurationImpl configuration, ClassUseMapper mapper, PackageDoc pkgdoc) argument
H A DClassUseWriter.java88 ClassUseMapper mapper, String path,
93 if (mapper.classToPackageAnnotations.containsKey(classdoc.qualifiedName()))
94 pkgToPackageAnnotations = new HashSet<PackageDoc>(mapper.classToPackageAnnotations.get(classdoc.qualifiedName()));
97 this.pkgToClassTypeParameter = pkgDivide(mapper.classToClassTypeParam);
98 this.pkgToClassAnnotations = pkgDivide(mapper.classToClassAnnotations);
99 this.pkgToMethodTypeParameter = pkgDivide(mapper.classToExecMemberDocTypeParam);
100 this.pkgToMethodArgTypeParameter = pkgDivide(mapper.classToExecMemberDocArgTypeParam);
101 this.pkgToFieldTypeParameter = pkgDivide(mapper.classToFieldDocTypeParam);
102 this.pkgToFieldAnnotations = pkgDivide(mapper.annotationToFieldDoc);
103 this.pkgToMethodReturnTypeParameter = pkgDivide(mapper
87 ClassUseWriter(ConfigurationImpl configuration, ClassUseMapper mapper, String path, String filename, String relpath, ClassDoc classdoc) argument
193 generate(ConfigurationImpl configuration, ClassUseMapper mapper, ClassDoc classdoc) argument
[all...]
/openjdk7/jdk/src/share/instrument/
H A DJavaExceptions.c390 CheckedExceptionMapper mapper) {
399 * we need to map it (mapper is conditional, will vary by usage, hence the callback)
405 resultThrowable = (*mapper) (jnienv, originalThrowable);
389 mapThrownThrowableIfNecessary( JNIEnv * jnienv, CheckedExceptionMapper mapper) argument
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEFontInstance.cpp75 le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const
96 glyphStorage[out] = mapCharToGlyph(code, mapper, filterZeroWidth);
105 LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
107 return mapCharToGlyph(ch, mapper, TRUE);
110 LEGlyphID LEFontInstance::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper, le_bool filterZeroWidth) const argument
112 LEUnicode32 mappedChar = mapper->mapChar(ch);
74 mapCharsToGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, const LECharMapper *mapper, le_bool filterZeroWidth, LEGlyphStorage &glyphStorage) const argument
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp126 LEGlyphID FontInstanceAdapter::mapCharToGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
128 LEUnicode32 mappedChar = mapper->mapChar(ch);
150 const LECharMapper *mapper, le_uint32 glyphs[]) const
171 glyphs[out] = mapCharToWideGlyph(code, mapper);
180 le_uint32 FontInstanceAdapter::mapCharToWideGlyph(LEUnicode32 ch, const LECharMapper *mapper) const
182 LEUnicode32 mappedChar = mapper->mapChar(ch);
148 mapCharsToWideGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, const LECharMapper *mapper, le_uint32 glyphs[]) const argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java3299 * @param mapper the {@code RowMapper} instance; this is ignored
3302 public void setRowMapper(RowMapper mapper) { argument

Completed in 352 milliseconds