HomeSort by relevance Sort by last modified time
    Searched full:glyphs16 (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/jni/android/graphics/
HarfbuzzSkia.cpp 87 uint16_t* glyphs16 = new uint16_t[numGlyphs]; local
88 if (!glyphs16)
91 glyphs16[i] = glyphs[i];
93 paint.getTextWidths(glyphs16, numGlyphs * sizeof(uint16_t), scalarAdvances);
104 delete glyphs16;
115 uint16_t* glyphs16 = new uint16_t[length]; local
116 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), glyphs16);
120 if (!glyphs16[i]) {
125 delete glyphs16;
  /external/webkit/Source/WebCore/platform/graphics/android/
HarfbuzzSkia.cpp 84 OwnArrayPtr<uint16_t> glyphs16 = adoptArrayPtr(new uint16_t[numGlyphs]); local
85 if (!glyphs16.get())
88 glyphs16[i] = glyphs[i];
89 paint.getTextWidths(glyphs16.get(), numGlyphs * sizeof(uint16_t), reinterpret_cast<SkScalar*>(advances));
110 OwnArrayPtr<uint16_t> glyphs16 = adoptArrayPtr(new uint16_t[length]); local
111 glyphs16.get();
112 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), glyphs16.get());
115 if (!glyphs16[i])
  /external/webkit/Source/WebCore/platform/graphics/chromium/
HarfbuzzSkia.cpp 97 OwnArrayPtr<uint16_t> glyphs16 = adoptArrayPtr(new uint16_t[numGlyphs]); local
98 if (!glyphs16.get())
101 glyphs16[i] = glyphs[i];
102 paint.getTextWidths(glyphs16.get(), numGlyphs * sizeof(uint16_t), reinterpret_cast<SkScalar*>(advances));
123 OwnArrayPtr<uint16_t> glyphs16 = adoptArrayPtr(new uint16_t[length]); local
124 if (!glyphs16.get())
126 int numGlyphs = paint.textToGlyphs(characters, length * sizeof(uint16_t), glyphs16.get());
130 if (!glyphs16[i]) {
  /external/skia/src/ports/
SkHarfBuzzFont.cpp 66 uint16_t* glyphs16 = reinterpret_cast<uint16_t*>(scalarWidths + numGlyphs); local
70 glyphs16[i] = SkToU16(glyphs[i]);
72 paint.getTextWidths(glyphs16, numGlyphs * sizeof(uint16_t), scalarWidths);

Completed in 222 milliseconds