HomeSort by relevance Sort by last modified time
    Searched defs:glyphs (Results 26 - 42 of 42) sorted by null

12

  /external/webkit/Source/WebCore/platform/graphics/mac/
ComplexTextController.cpp 389 // When there are multiple glyphs per character we need to advance by the full width of the glyph.
424 const CGGlyph* glyphs = complexTextRun.glyphs(); local
454 CGGlyph glyph = treatAsSpace ? fontData->spaceGlyph() : glyphs[i];
  /external/icu4c/samples/layout/
sfnt.h 129 le_uint16 glyphs[ANY_NUMBER]; member in struct:CMAPFormat10Encoding
  /external/icu4c/test/letest/
letest.cpp 59 LEGlyphID *glyphs = NULL; local
69 glyphs = NEW_ARRAY(LEGlyphID, glyphCount + 10);
80 engine->getGlyphs(glyphs, status);
83 log_err("Calling getGlyphs(glyphs, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
94 engine->getGlyphs(glyphs, 0xFF000000L, status);
97 log_err("Calling getGlyphs(glyphs, 0xFF000000L, status) on an empty layout did not return LE_NO_LAYOUT_ERROR.\n");
144 DELETE_ARRAY(glyphs);
245 LEGlyphID glyphs[6], extraBitGlyphs[6];; local
266 engine->getGlyphs(glyphs, status);
281 if (extraBitGlyphs[glyph] != (glyphs[glyph] | 0xFF000000L))
611 UnicodeString text, glyphs, indices, positions; local
    [all...]
sfnt.h 230 le_uint16 glyphs[ANY_NUMBER]; member in struct:CMAPFormat10Encoding
239 le_uint16 glyphs[ANY_NUMBER]; member in struct:CMAPFormat10Encoding
  /external/webkit/Source/WebCore/svg/
SVGFont.cpp 279 Vector<SVGGlyphIdentifier> glyphs; local
281 glyphs.append(altGlyphIdentifier);
283 m_fontElement->getGlyphIdentifiersForString(lookupString, glyphs);
285 Vector<SVGGlyphIdentifier>::iterator it = glyphs.begin();
286 Vector<SVGGlyphIdentifier>::iterator end = glyphs.end();
411 // TODO: language matching & svg glyphs should be possible for HTML text, too.
502 // TODO: language matching & svg glyphs should be possible for HTML text, too.
  /external/webkit/Source/WebKit/android/nav/
FindCanvas.cpp 170 const SkPaint& paint, int count, const uint16_t* glyphs,
172 const uint16_t* lineStart = glyphs - index;
173 /* Use the original paint, since "text" is in glyphs */
178 rect.fRight = paint.measureText(glyphs, countInBytes, 0) + rect.fLeft;
190 canvas->drawText(glyphs, countInBytes, pos[0] + before, y, paint);
196 const SkPaint& paint, int count, const uint16_t* glyphs,
211 paint.measureText(&glyphs[j], sizeof(uint16_t), 0);
223 canvas->drawPosText(glyphs, countInBytes, points, paint);
229 const SkPaint& paint, int count, const uint16_t* glyphs,
240 r.fRight = paint.measureText(&glyphs[lastIndex], sizeof(uint16_t), 0
381 const uint16_t* glyphs = chars + matchIndex; local
    [all...]
  /external/harfbuzz/src/
harfbuzz-shaper.cpp 245 HB_Glyph *glyphs = item->glyphs; local
249 item->font->klass->getGlyphMetrics(item->font, glyphs[gfrom], &baseMetrics);
276 HB_Glyph mark = glyphs[gfrom+i];
423 // set the glyph attributes heuristically. Assumes a 1 to 1 relationship between chars and glyphs
568 shaper_item->glyphs, &shaper_item->num_glyphs,
1227 HB_Glyph *glyphs = item->glyphs; local
    [all...]
harfbuzz-shaper.h 242 HB_Bool (*convertStringToGlyphIndices)(HB_Font font, const HB_UChar16 *string, hb_uint32 length, HB_Glyph *glyphs, hb_uint32 *numGlyphs, HB_Bool rightToLeft);
243 void (*getGlyphAdvances)(HB_Font font, const HB_Glyph *glyphs, hb_uint32 numGlyphs, HB_Fixed *advances, int flags /*HB_ShaperFlag*/);
274 HB_Bool glyphIndicesPresent; /* input: true if the <glyphs> array contains glyph indices ready to be shaped */
275 hb_uint32 initialGlyphCount; /* input: if glyphIndicesPresent is true, the number of glyph indices in the <glyphs> array */
277 hb_uint32 num_glyphs; /* input: capacity of output arrays <glyphs>, <attributes>, <advances>, <offsets>, and <log_clusters>; */
280 HB_Glyph *glyphs; /* output: <num_glyphs> indices of shaped glyphs */ member in struct:HB_ShaperItem_
  /external/icu4c/layoutex/
ParagraphLayout.cpp 393 fStyleRunInfo[run].glyphs = NULL;
451 fStyleRunInfo[run].glyphs = LE_NEW_ARRAY(LEGlyphID, glyphCount);
453 if ((fStyleRunInfo[run].glyphs == NULL) ||
459 engine->getGlyphs(fStyleRunInfo[run].glyphs, layoutStatus);
590 LE_DELETE_ARRAY(fStyleRunInfo[run].glyphs);
593 fStyleRunInfo[run].glyphs = NULL;
678 // If no glyphs fit on the line, force one to fit.
680 // (There shouldn't be any zero width glyphs at the
682 // only zero width glyphs, because otherwise the zero
683 // width glyphs will have been included on the end o
1098 LEGlyphID *glyphs = LE_NEW_ARRAY(LEGlyphID, glyphCount); local
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 85 // The 'maxp' table stores the number of glyphs at offset 4, in 2 bytes.
88 uint16_t glyphs; local
89 if (GetFontData(hdc, maxpTag, 4, &glyphs, sizeof(glyphs)) != GDI_ERROR) {
90 return SkEndian_SwapBE16(glyphs);
389 int glyphs; local
391 fDDC, &fSC, c, 2, 1, &si[0].a, &index, log, &vsa, &glyphs)));
    [all...]
SkFontHost_mac_coretext.cpp 744 CGGlyph glyphs[count]; local
746 if (CTFontGetGlyphsForCharacters(ctFont, stem_chars, glyphs, count)) {
748 glyphs, boundingRects, count);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
FontAndroid.cpp 191 const GlyphBufferGlyph* glyphs = glyphBuffer.glyphs(from); local
211 if (EmojiFont::IsEmojiGlyph(glyphs[i])) {
213 canvas->drawPosText(&glyphs[localIndex],
216 EmojiFont::Draw(canvas, glyphs[i], x, y, paint);
217 // reset local index/count track for "real" glyphs
227 // draw the last run of glyphs (if any)
229 canvas->drawPosText(&glyphs[localIndex],
247 canvas->drawTextOnPath(glyphs + i, 2, path, 0, paint);
253 canvas->drawPosText(glyphs, numGlyphs * sizeof(uint16_t), pos, paint)
423 const uint16_t* glyphs() const { return m_glyphs16; } function in class:WebCore::TextRunWalker
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 502 const jchar* glyphs = value->getGlyphs(); local
505 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y, paint);
532 const jchar* glyphs = value->getGlyphs(); local
535 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y, paint);
    [all...]
  /prebuilt/linux-x86/swt/
swt.jar 
  /prebuilt/linux-x86_64/swt/
swt.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 2589 milliseconds

12