HomeSort by relevance Sort by last modified time
    Searched refs:glyphID (Results 51 - 75 of 77) sorted by null

1 23 4

  /external/skia/src/ports/
SkFontConfigInterface_android.cpp 107 SkTypeface* getTypefaceForGlyphID(uint16_t glyphID, const SkTypeface* origTypeface,
541 uint16_t glyphID;
542 paint.textToGlyphs(&uni, sizeof(uni), &glyphID);
543 if (glyphID != 0) {
685 SkTypeface* SkFontConfigInterfaceAndroid::getTypefaceForGlyphID(uint16_t glyphID,
698 if (glyphID < upperBounds) {
722 if (glyphID < upperBounds) {
771 SkTypeface* SkGetTypefaceForGlyphID(uint16_t glyphID, const SkTypeface* origTypeface,
775 return fontConfig->getTypefaceForGlyphID(glyphID, origTypeface, options,
    [all...]
SkFontHost_mac.cpp 331 CGGlyph glyphID, size_t* rowBytesPtr,
662 void getVerticalOffset(CGGlyph glyphID, SkPoint* offset) const;
766 CGGlyph glyphID, size_t* rowBytesPtr,
855 context.getVerticalOffset(glyphID, &offset);
862 &glyphID, 1);
869 void SkScalerContext_Mac::getVerticalOffset(CGGlyph glyphID, SkPoint* offset) const {
873 CTFontGetVerticalTranslationsForGlyphs(fCTFont, &glyphID, &cgVertOffset, 1);
    [all...]
SkFontHost_win.cpp 527 uint16_t glyphID = glyph.getGlyphID();
528 BOOL ret = ExtTextOutW(fDC, 0, 0, ETO_GLYPH_INDEX, NULL, reinterpret_cast<LPCWSTR>(&glyphID), 1, NULL);
910 UINT glyphId = glyph->getGlyphID(0);
915 DWORD status = GetGlyphOutlineW(fDDC, glyphId, GGO_METRICS | GGO_GLYPH_INDEX, &gm, 0, NULL, &fMat22);
918 status = GetGlyphOutlineW(fDDC, glyphId, GGO_METRICS | GGO_GLYPH_INDEX, &gm, 0, NULL, &fMat22);
    [all...]
  /external/chromium_org/third_party/skia/include/pdf/
SkPDFDevice.h 300 void updateFont(const SkPaint& paint, uint16_t glyphID,
302 int getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID);
  /external/chromium_org/third_party/skia/src/core/
SkScalerContext.h 169 may be chained (under the hood), the glyphID that is returned may in
175 /** Map the glyphID to its glyph index, and then to its char code. Unmapped
178 SkUnichar glyphIDToChar(uint16_t glyphID);
255 virtual SkUnichar generateGlyphToChar(uint16_t glyphId);
291 // is found it returns NULL. If a match is found then the glyphID param is
292 // set to the glyphID that maps to the provided char.
293 SkScalerContext* getContextFromChar(SkUnichar uni, uint16_t* glyphID);
SkPaint.cpp 485 const SkGlyph& SkPaint::getGlyphMetrics(uint16_t glyphId,
490 const SkGlyph& glyph = cache->getGlyphIDMetrics(glyphId);
587 const uint16_t* glyphID = static_cast<const uint16_t*>(textData);
590 if (0 == glyphID[i]) {
717 unsigned glyphID = *ptr;
720 return cache->getGlyphIDMetrics(glyphID);
730 unsigned glyphID = *ptr;
732 return cache->getGlyphIDMetrics(glyphID);
795 unsigned glyphID = *ptr;
798 return cache->getGlyphIDAdvance(glyphID);
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
SkGrFontScaler.cpp 194 bool SkGrFontScaler::getGlyphPath(uint16_t glyphID, SkPath* path) {
196 const SkGlyph& glyph = fStrike->getGlyphIDMetrics(glyphID);
GrBitmapTextContext.cpp 188 if (!scaler->getGlyphPath(glyph->glyphID(), path)) {
GrDistanceFieldTextContext.cpp 185 if (!scaler->getGlyphPath(glyph->glyphID(), path)) {
  /external/skia/include/pdf/
SkPDFDevice.h 300 void updateFont(const SkPaint& paint, uint16_t glyphID,
302 int getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID);
  /external/skia/src/core/
SkScalerContext.h 169 may be chained (under the hood), the glyphID that is returned may in
175 /** Map the glyphID to its glyph index, and then to its char code. Unmapped
178 SkUnichar glyphIDToChar(uint16_t glyphID);
255 virtual SkUnichar generateGlyphToChar(uint16_t glyphId);
291 // is found it returns NULL. If a match is found then the glyphID param is
292 // set to the glyphID that maps to the provided char.
293 SkScalerContext* getContextFromChar(SkUnichar uni, uint16_t* glyphID);
SkPaint.cpp 485 const SkGlyph& SkPaint::getGlyphMetrics(uint16_t glyphId,
490 const SkGlyph& glyph = cache->getGlyphIDMetrics(glyphId);
587 const uint16_t* glyphID = static_cast<const uint16_t*>(textData);
590 if (0 == glyphID[i]) {
717 unsigned glyphID = *ptr;
720 return cache->getGlyphIDMetrics(glyphID);
730 unsigned glyphID = *ptr;
732 return cache->getGlyphIDMetrics(glyphID);
795 unsigned glyphID = *ptr;
798 return cache->getGlyphIDAdvance(glyphID);
    [all...]
  /external/skia/src/gpu/
SkGrFontScaler.cpp 194 bool SkGrFontScaler::getGlyphPath(uint16_t glyphID, SkPath* path) {
196 const SkGlyph& glyph = fStrike->getGlyphIDMetrics(glyphID);
GrBitmapTextContext.cpp 188 if (!scaler->getGlyphPath(glyph->glyphID(), path)) {
GrDistanceFieldTextContext.cpp 185 if (!scaler->getGlyphPath(glyph->glyphID(), path)) {
  /external/icu4c/layout/
LEGlyphStorage.cpp 273 void LEGlyphStorage::setGlyphID(le_int32 glyphIndex, LEGlyphID glyphID, LEErrorCode &success)
289 fGlyphs[glyphIndex] = glyphID;
  /external/skia/tests/
PDFPrimitivesTest.cpp 339 uint16_t glyphID = 65000;
340 c.drawText(&glyphID, 2, 0, 0, paint);
  /external/skia/tools/lua/
glyph-usage.lua 70 -- array is an array of bools (true), using glyphID as the index
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_mac.cpp 331 CGGlyph glyphID, size_t* rowBytesPtr,
662 void getVerticalOffset(CGGlyph glyphID, SkPoint* offset) const;
766 CGGlyph glyphID, size_t* rowBytesPtr,
855 context.getVerticalOffset(glyphID, &offset);
862 &glyphID, 1);
869 void SkScalerContext_Mac::getVerticalOffset(CGGlyph glyphID, SkPoint* offset) const {
873 CTFontGetVerticalTranslationsForGlyphs(fCTFont, &glyphID, &cgVertOffset, 1);
    [all...]
SkFontHost_win.cpp 527 uint16_t glyphID = glyph.getGlyphID();
528 BOOL ret = ExtTextOutW(fDC, 0, 0, ETO_GLYPH_INDEX, NULL, reinterpret_cast<LPCWSTR>(&glyphID), 1, NULL);
910 UINT glyphId = glyph->getGlyphID(0);
915 DWORD status = GetGlyphOutlineW(fDDC, glyphId, GGO_METRICS | GGO_GLYPH_INDEX, &gm, 0, NULL, &fMat22);
918 status = GetGlyphOutlineW(fDDC, glyphId, GGO_METRICS | GGO_GLYPH_INDEX, &gm, 0, NULL, &fMat22);
    [all...]
  /external/chromium_org/third_party/skia/src/pdf/
SkPDFDevice.cpp     [all...]
  /external/skia/src/pdf/
SkPDFDevice.cpp     [all...]
  /external/chromium_org/third_party/skia/src/device/xps/
SkXPSDevice.cpp     [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp     [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
pdfjs.js     [all...]

Completed in 1012 milliseconds

1 23 4