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

  /external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp 90 float afterWidth = it.runWidthSoFar();
97 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
100 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
104 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
135 float afterWidth = controller.runWidthSoFar();
140 startX += controller.runWidthSoFar() - afterWidth;
142 startX += controller.totalWidth() - afterWidth;
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 48 float afterWidth = controller.runWidthSoFar();
53 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
56 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
71 float afterWidth = controller.runWidthSoFar();
74 initialAdvance = controller.totalWidth() - afterWidth;
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 60 float afterWidth = it.runWidthSoFar();
66 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
69 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
88 float afterWidth = controller.runWidthSoFar();
92 return controller.runWidthSoFar() - afterWidth;
  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 337 float afterWidth = it.m_runWidthSoFar;
341 initialAdvance = it.m_runWidthSoFar - afterWidth;
470 float afterWidth = it.m_runWidthSoFar;
476 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
479 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /external/webkit/Source/WebCore/platform/graphics/gtk/
FontGtk.cpp 437 float afterWidth = PANGO_PIXELS(x_pos);
442 return FloatRect(point.x() + beforeWidth, point.y(), afterWidth - beforeWidth, h);

Completed in 63 milliseconds