HomeSort by relevance Sort by last modified time
    Searched defs:glyphIndex (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontLinux.cpp 259 for (int glyphIndex = 0; static_cast<unsigned>(glyphIndex) < controller.length(); ++glyphIndex) {
260 int advance = truncateFixedPointToInteger(controller.advances()[glyphIndex]);
261 int nextX = static_cast<int>(controller.xPositions()[glyphIndex]) + advance / 2;
263 return glyphIndex;
298 const int glyphIndex = glyphIndexForXPositionInScriptRun(controller, targetX);
312 if (log[j] >= glyphIndex)
FontChromiumWin.cpp 395 int glyphIndex = 0; // The starting glyph of the current chunk.
402 while (glyphIndex < numGlyphs) {
404 int curLen = std::min(kMaxBufferLength, numGlyphs - glyphIndex);
409 for (int i = 0; i < curLen; ++i, ++glyphIndex) {
410 glyphs[i] = glyphBuffer.glyphAt(from + glyphIndex);
411 horizontalOffset += glyphBuffer.advanceAt(from + glyphIndex);
414 currentWidth += glyphBuffer.advanceAt(from + glyphIndex);
UniscribeHelper.cpp 420 size_t glyphIndex = shaping.m_logs[localOffset];
421 if (glyphIndex >= shaping.m_glyphs.size()) {
429 return shaping.m_glyphs[glyphIndex];
    [all...]
  /external/skia/src/sfnt/
SkOTTable_glyf.h 155 SK_OT_USHORT glyphIndex;
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 438 FT_UInt glyphIndex;
439 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
440 glyphIndex != 0;
441 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
443 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
444 (*glyphToUnicode)[glyphIndex] = charCode;
940 FT_UInt glyphIndex;
941 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex );
943 while (glyphIndex != 0) {
944 if (glyphIndex == glyph)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontAndroid.cpp     [all...]
  /external/skia/legacy/src/ports/
SkFontHost_FreeType.cpp 424 FT_UInt glyphIndex;
425 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
426 glyphIndex != 0;
427 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
429 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
430 (*glyphToUnicode)[glyphIndex] = charCode;
934 FT_UInt glyphIndex;
935 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex );
937 while (glyphIndex != 0) {
938 if (glyphIndex == glyph)
    [all...]

Completed in 105 milliseconds