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

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLookupTables.cpp52 const LookupSegment *BinarySearchLookupTable::lookupSegment(const LETableReference &base, const LookupSegment *segments, LEGlyphID glyph, LEErrorCode &success) const function in class:BinarySearchLookupTable
H A DSegmentArrayProcessor.cpp68 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segmentArrayLookupTable, segments, thisGlyph, success); local
70 if (lookupSegment != NULL) {
71 TTGlyphID firstGlyph = SWAPW(lookupSegment->firstGlyph);
72 le_int16 offset = SWAPW(lookupSegment->value);
H A DSegmentArrayProcessor2.cpp68 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segmentArrayLookupTable, segments, thisGlyph, success); local
70 if (lookupSegment != NULL) {
71 TTGlyphID firstGlyph = SWAPW(lookupSegment->firstGlyph);
72 le_int16 offset = SWAPW(lookupSegment->value);
H A DSegmentSingleProcessor.cpp68 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segmentSingleLookupTable, segments, thisGlyph, success); local
70 if (lookupSegment != NULL && LE_SUCCESS(success)) {
71 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);
H A DSegmentSingleProcessor2.cpp69 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segmentSingleLookupTable, segments, thisGlyph, success); local
71 if (lookupSegment != NULL && LE_SUCCESS(success)) {
72 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);

Completed in 1364 milliseconds