Searched refs:afterWidth (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFontWx.cpp90 float afterWidth = it.runWidthSoFar(); local
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(); local
140 startX += controller.runWidthSoFar() - afterWidth;
142 startX += controller.totalWidth() - afterWidth;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontComplexTextMac.cpp48 float afterWidth = controller.runWidthSoFar(); local
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(); local
74 initialAdvance = controller.totalWidth() - afterWidth;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontWin.cpp60 float afterWidth = it.runWidthSoFar(); local
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(); local
92 return controller.runWidthSoFar() - afterWidth;
/external/webkit/Source/WebCore/platform/graphics/
H A DFontFastPath.cpp337 float afterWidth = it.m_runWidthSoFar; local
341 initialAdvance = it.m_runWidthSoFar - afterWidth;
470 float afterWidth = it.m_runWidthSoFar; local
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/
H A DFontGtk.cpp437 float afterWidth = PANGO_PIXELS(x_pos); local
442 return FloatRect(point.x() + beforeWidth, point.y(), afterWidth - beforeWidth, h);

Completed in 76 milliseconds