HomeSort by relevance Sort by last modified time
    Searched refs:glyphset (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/win/
FontCacheWin.cpp 164 GLYPHSET* glyphset = reinterpret_cast<GLYPHSET*>(glyphsetBuffer.data()); local
165 GetFontUnicodeRanges(hdc, glyphset);
169 while (i < glyphset->cRanges && glyphset->ranges[i].wcLow <= character)
172 return i && glyphset->ranges[i - 1].wcLow + glyphset->ranges[i - 1].cGlyphs > character;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 302 GLYPHSET* glyphset = reinterpret_cast<GLYPHSET*>(glyphsetBuffer.data()); local
305 count = GetFontUnicodeRanges(hdc, glyphset);
315 while (i < glyphset->cRanges) {
316 WCHAR start = glyphset->ranges[i].wcLow;
317 cmap->add(start, start + glyphset->ranges[i].cGlyphs - 1);

Completed in 416 milliseconds