HomeSort by relevance Sort by last modified time
    Searched defs:glyphIndex (Results 1 - 5 of 5) 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/ports/
SkFontHost_FreeType.cpp 413 FT_UInt glyphIndex;
414 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
415 glyphIndex != 0;
416 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
418 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
419 (*glyphToUnicode)[glyphIndex] = charCode;
909 FT_UInt glyphIndex;
910 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex );
912 while (glyphIndex != 0) {
913 if (glyphIndex == glyph)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontAndroid.cpp     [all...]

Completed in 248 milliseconds