Searched refs:glyphID (Results 1 - 23 of 23) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLookups.h61 inline le_int32 getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, LEGlyphID glyphID, LEErrorCode &success) const;
63 le_int32 getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const;
66 inline le_int32 getGlyphCoverage(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
68 inline le_int32 getGlyphCoverage(const LETableReference &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const;
91 inline le_int32 LookupSubtable::getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, LEGlyphID glyphID, LEErrorCode &success) const argument
93 return getGlyphCoverage(base, coverageTableOffset, glyphID, success);
96 inline le_int32 LookupSubtable::getGlyphCoverage(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const { argument
98 return getGlyphCoverage(thisRef, glyphID, success);
101 inline le_int32 LookupSubtable::getGlyphCoverage(const LETableReference &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const { argument
103 return getGlyphCoverage(thisRef, tableOffset, glyphID, succes
[all...]
H A DCoverageTables.h49 le_int32 getGlyphCoverage(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
57 le_int32 getGlyphCoverage(LEReferenceTo<CoverageFormat1Table> &base, LEGlyphID glyphID, LEErrorCode &success) const;
67 le_int32 getGlyphCoverage(LEReferenceTo<CoverageFormat2Table> &base, LEGlyphID glyphID, LEErrorCode &success) const;
H A DCoverageTables.cpp40 le_int32 CoverageTable::getGlyphCoverage(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const argument
53 return f1Table->getGlyphCoverage(f1Table, glyphID, success);
60 return f2Table->getGlyphCoverage(f2Table, glyphID, success);
68 le_int32 CoverageFormat1Table::getGlyphCoverage(LEReferenceTo<CoverageFormat1Table> &base, LEGlyphID glyphID, LEErrorCode &success) const argument
72 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
107 le_int32 CoverageFormat2Table::getGlyphCoverage(LEReferenceTo<CoverageFormat2Table> &base, LEGlyphID glyphID, LEErrorCode &success) const argument
111 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
H A DClassDefinitionTables.h49 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
53 le_int32 getGlyphClass(LEGlyphID glyphID) const {
56 return getGlyphClass(base,glyphID,ignored);
73 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
91 le_int32 getGlyphClass(const LETableReference &base, LEGlyphID glyphID, LEErrorCode &success) const;
H A DOpenTypeUtilities.h50 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const GlyphRangeRecord *records, le_int32 recordCount) { argument
54 return getGlyphRangeIndex(glyphID, recordRef, success);
57 static le_int32 getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success);
H A DCursiveAttachmentSubtables.cpp44 LEGlyphID glyphID = glyphIterator->getCurrGlyphID(); local
45 le_int32 coverageIndex = getGlyphCoverage(base, glyphID, success);
64 entryAnchorTable->getAnchor(entryAnchorTable, glyphID, fontInstance, entryAnchor, success);
75 exitAnchorTable->getAnchor(exitAnchorTable, glyphID, fontInstance, exitAnchor, success);
H A DMarkArrays.h57 le_int32 getMarkClass(const LETableReference &base, LEGlyphID glyphID,
H A DMarkArrays.cpp41 le_int32 MarkArray::getMarkClass(const LETableReference &base, LEGlyphID glyphID, argument
62 anchorTable->getAnchor(anchorTable, glyphID, fontInstance, anchor, success);
H A DAnchorTables.h52 void getAnchor(const LETableReference &base, LEGlyphID glyphID, const LEFontInstance *fontInstance,
67 LEGlyphID glyphID, const LEFontInstance *fontInstance,
H A DClassDefinitionTables.cpp40 le_int32 ClassDefinitionTable::getGlyphClass(const LETableReference& base, LEGlyphID glyphID, LEErrorCode &success) const argument
52 return f1Table->getGlyphClass(f1Table, glyphID, success);
58 return f2Table->getGlyphClass(f2Table, glyphID, success);
92 le_int32 ClassDefFormat1Table::getGlyphClass(const LETableReference& base, LEGlyphID glyphID, LEErrorCode &success) const argument
98 TTGlyphID ttGlyphID = (TTGlyphID) LE_GET_GLYPH(glyphID);
125 le_int32 ClassDefFormat2Table::getGlyphClass(const LETableReference& base, LEGlyphID glyphID, LEErrorCode &success) const argument
128 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyphID);
H A DAnchorTables.cpp40 void AnchorTable::getAnchor(const LETableReference &base, LEGlyphID glyphID, const LEFontInstance *fontInstance, argument
57 f2->getAnchor(f2, glyphID, fontInstance, anchor, success);
94 LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor
99 if (! fontInstance->getGlyphPoint(glyphID, SWAPW(anchorPoint), point)) {
93 getAnchor(const LEReferenceTo<Format2AnchorTable>& base, LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor , LEErrorCode &success) const argument
H A DLookups.cpp64 le_int32 LookupSubtable::getGlyphCoverage(const LEReferenceTo<LookupSubtable> &base, Offset tableOffset, LEGlyphID glyphID, LEErrorCode &success) const argument
70 return coverageTable->getGlyphCoverage(coverageTable, glyphID, success);
H A DPairPositioningSubtables.cpp171 PairPositioningFormat1Subtable::findPairValueRecord(TTGlyphID glyphID, LEReferenceTo<PairValueRecord>& records, argument
186 if (SWAPW(record->secondGlyph) == glyphID) {
199 if (SWAPW(trial->secondGlyph) <= glyphID) {
207 if (SWAPW(trial->secondGlyph) <= glyphID) {
212 if (SWAPW(record->secondGlyph) == glyphID) {
H A DOpenTypeUtilities.cpp120 le_int32 OpenTypeUtilities::getGlyphRangeIndex(TTGlyphID glyphID, const LEReferenceToArrayOf<GlyphRangeRecord> &records, LEErrorCode &success) argument
135 if (SWAPW(records(extra,success).firstGlyph) <= glyphID) {
142 if (SWAPW(records(range + probe,success).firstGlyph) <= glyphID) {
147 if (SWAPW(records(range,success).firstGlyph) <= glyphID && SWAPW(records(range,success).lastGlyph) >= glyphID) {
H A DGlyphPositionAdjustments.cpp132 LEGlyphID glyphID = glyphStorage[i]; local
145 fontInstance->getGlyphAdvance(glyphID, pixels);
166 lastExitGlyphID = glyphID;
H A DGlyphIterator.cpp225 void GlyphIterator::setCurrGlyphID(TTGlyphID glyphID) argument
229 glyphStorage[position] = LE_SET_GLYPH(glyph, glyphID);
394 LEGlyphID glyphID = glyphStorage[index]; local
396 if (!filterCacheValid || filterCache.id != glyphID) {
397 filterCache.id = glyphID;
401 if (LE_GET_GLYPH(glyphID) >= 0xFFFE) {
407 glyphClass = glyphClassDefinitionTable->getGlyphClass(glyphClassDefinitionTable, glyphID, success);
430 -> getGlyphClass(markAttachClassDefinitionTable, glyphID, success) != markAttachType);
H A DPairPositioningSubtables.h80 LEReferenceTo<PairValueRecord> findPairValueRecord(TTGlyphID glyphID, LEReferenceTo<PairValueRecord> &records,
H A DGlyphIterator.h82 void setCurrGlyphID(TTGlyphID glyphID);
H A DLEGlyphStorage.h412 * @param glyphID the new glyph ID
417 void setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success);
H A DLEGlyphStorage.cpp298 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success) argument
314 fGlyphs[glyphIndex] = glyphID;
/openjdk9/jdk/src/java.desktop/unix/classes/sun/font/
H A DXRGlyphCache.java75 int glyphID = XRGlyphCacheEntry.getGlyphID(glyphPtr);
78 if (glyphID != 0) {
79 glyphIDList.addInt(glyphID);
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-cmap-table.hh213 ULONG glyphID; /* Glyph index; interpretation depends on member in struct:OT::CmapSubtableLongGroup
286 { return group.glyphID + (u - group.startCharCode); }
293 { return group.glyphID; }
341 GlyphID glyphID; /* Glyph ID of the UVS */ member in struct:OT::UVSMapping
363 *glyph = nonDefaults[i].glyphID;
/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DStandardGlyphVector.java864 int glyphID = glyphs[i];
866 Point2D.Float adv = s.strike.getGlyphMetrics(glyphID);
1606 int glyphID = sgv.glyphs[i];
1607 images[i] = gs.strike.getGlyphImagePtr(glyphID);
1609 gs.getGlyphPosition(glyphID, i*2, sgv.positions, positions);
1788 void getGlyphPosition(int glyphID, int ix, float[] positions, float[] result) { argument
1794 void addDefaultGlyphAdvance(int glyphID, Point2D.Float result) { argument
1797 Point2D.Float adv = strike.getGlyphMetrics(glyphID);
1802 Rectangle2D getGlyphOutlineBounds(int glyphID, float x, float y) { argument
1806 result.setRect(strike.getGlyphOutlineBounds(glyphID)); // do
1828 appendGlyphOutline(int glyphID, GeneralPath result, float x, float y) argument
[all...]

Completed in 96 milliseconds