Searched defs:glyph (Results 1 - 25 of 219) sorted by relevance

123456789

/external/chromium_org/third_party/skia/src/core/
H A DSkAutoKern.h27 SkFixed adjust(const SkGlyph& glyph) argument
29 // if (SkAbs32(glyph.fLsbDelta) > 47 || SkAbs32(glyph.fRsbDelta) > 47)
30 // printf("------- %d> L %d R %d\n", glyph.f_GlyphID, glyph.fLsbDelta, glyph.fRsbDelta);
33 int distort = fPrevRsbDelta - glyph.fLsbDelta;
35 fPrevRsbDelta = glyph.fRsbDelta;
44 SkFixed adjust = SkAutoKern_AdjustF(fPrevRsbDelta, glyph.fLsbDelta);
45 fPrevRsbDelta = glyph
[all...]
/external/icu/icu4c/source/layout/
H A DSinglePositioningSubtables.cpp46 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
47 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
60 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
61 le_int16 coverageIndex = (le_int16) getGlyphCoverage(base, glyph, success);
H A DAlternateSubstSubtables.cpp21 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
22 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
33 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, alternate))) {
H A DSimpleArrayProcessor2.cpp41 le_int32 glyph; local
43 for (glyph = 0; glyph < glyphCount; glyph += 1) {
44 LEGlyphID thisGlyph = glyphStorage[glyph];
48 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSingleSubstitutionSubtables.cpp45 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
46 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
49 TTGlyphID substitute = ((TTGlyphID) LE_GET_GLYPH(glyph)) + SWAPW(deltaGlyphID);
51 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute))) {
63 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
64 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
69 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute))) {
H A DLookupTables.cpp27 const LookupSegment *BinarySearchLookupTable::lookupSegment(const LETableReference &base, const LookupSegment *segments, LEGlyphID glyph, LEErrorCode &success) const argument
33 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyph);
60 const LookupSingle *BinarySearchLookupTable::lookupSingle(const LETableReference &base, const LookupSingle *entries, LEGlyphID glyph, LEErrorCode &success) const argument
65 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(glyph);
69 if (SWAPW(trial->glyph) <= ttGlyph) {
78 if (SWAPW(trial->glyph) <= ttGlyph) {
83 if (SWAPW(entry->glyph) == ttGlyph) {
H A DMultipleSubstSubtables.cpp23 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
32 if (filter != NULL && filter->accept(glyph)) {
36 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
50 if (filter != NULL && ! filter->accept(LE_SET_GLYPH(glyph, substitute))) {
84 newGlyphs[insert] = LE_SET_GLYPH(glyph, substitute);
H A DSegmentArrayProcessor.cpp39 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
42 LEGlyphID thisGlyph = glyphStorage[glyph];
52 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentArrayProcessor2.cpp39 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
42 LEGlyphID thisGlyph = glyphStorage[glyph];
53 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentSingleProcessor.cpp39 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount && LE_SUCCESS(success); glyph += 1) {
42 LEGlyphID thisGlyph = glyphStorage[glyph];
48 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentSingleProcessor2.cpp40 le_int32 glyph; local
42 for (glyph = 0; glyph < glyphCount; glyph += 1) {
43 LEGlyphID thisGlyph = glyphStorage[glyph];
49 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSimpleArrayProcessor.cpp38 le_int32 glyph; local
42 for (glyph = 0; LE_SUCCESS(success) && (glyph < glyphCount); glyph += 1) {
43 LEGlyphID thisGlyph = glyphStorage[glyph];
46 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSingleTableProcessor.cpp38 le_int32 glyph; local
41 for (glyph = 0; glyph < glyphCount; glyph += 1) {
42 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(singleTableLookupTable, entries, glyphStorage[glyph], success);
45 glyphStorage[glyph] = SWAPW(lookupSingle->value);
H A DSingleTableProcessor2.cpp40 le_int32 glyph; local
43 for (glyph = 0; glyph < glyphCount; glyph += 1) {
44 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(singleTableLookupTable, entries, glyphStorage[glyph], success);
47 glyphStorage[glyph] = SWAPW(lookupSingle->value);
H A DTrimmedArrayProcessor.cpp47 le_int32 glyph; local
49 for (glyph = 0; glyph < glyphCount; glyph += 1) {
50 LEGlyphID thisGlyph = glyphStorage[glyph];
56 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DTrimmedArrayProcessor2.cpp43 le_int32 glyph; local
45 for (glyph = 0; glyph < glyphCount; glyph += 1) {
46 LEGlyphID thisGlyph = glyphStorage[glyph];
52 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DLigatureSubstSubtables.cpp18 LEGlyphID glyph = glyphIterator->getCurrGlyphID(); local
19 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success);
44 if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph)))) {
/external/skia/src/core/
H A DSkAutoKern.h27 SkFixed adjust(const SkGlyph& glyph) argument
29 // if (SkAbs32(glyph.fLsbDelta) > 47 || SkAbs32(glyph.fRsbDelta) > 47)
30 // printf("------- %d> L %d R %d\n", glyph.f_GlyphID, glyph.fLsbDelta, glyph.fRsbDelta);
33 int distort = fPrevRsbDelta - glyph.fLsbDelta;
35 fPrevRsbDelta = glyph.fRsbDelta;
44 SkFixed adjust = SkAutoKern_AdjustF(fPrevRsbDelta, glyph.fLsbDelta);
45 fPrevRsbDelta = glyph
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrTextStrike_impl.h57 GrGlyph* glyph = fCache.find(packed); local
58 if (NULL == glyph) {
59 glyph = this->generateGlyph(packed, scaler);
61 return glyph;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.h58 Glyph glyph() const { return m_glyph; } function in class:blink::SVGTextMetrics
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGlyphMetricsMap.h48 T metricsForGlyph(Glyph glyph) argument
50 return locatePage(glyph / GlyphMetricsPage::size)->metricsForGlyph(glyph);
53 void setMetricsForGlyph(Glyph glyph, const T& metrics) argument
55 locatePage(glyph / GlyphMetricsPage::size)->setMetricsForGlyph(glyph, metrics);
63 T metricsForGlyph(Glyph glyph) const { return m_metrics[glyph % size]; }
64 void setMetricsForGlyph(Glyph glyph, const T& metrics) argument
66 setMetricsForIndex(glyph
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
H A DFontPlatformDataSkia.cpp62 uint16_t glyph; local
63 paint.textToGlyphs(&character, sizeof(character), &glyph);
64 return glyph;
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsimple_bitmap_glyph.cc41 Ptr<SimpleBitmapGlyph> glyph = new SimpleBitmapGlyph(data, format()); local
42 return glyph.Detach();
H A Dbitmap_glyph.cc30 BitmapGlyphPtr glyph; local
34 glyph.Attach(down_cast<BitmapGlyph*>(builder->Build()));
36 return glyph;
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsimple_bitmap_glyph.cc41 Ptr<SimpleBitmapGlyph> glyph = new SimpleBitmapGlyph(data, format()); local
42 return glyph.Detach();

Completed in 1531 milliseconds

123456789