OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:beforeWidth
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp
46
float
beforeWidth
= 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);
65
float
beforeWidth
= controller.runWidthSoFar();
78
initialAdvance =
beforeWidth
;
/external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp
58
float
beforeWidth
= 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);
82
float
beforeWidth
= controller.runWidthSoFar();
94
return
beforeWidth
;
/external/webkit/Source/WebCore/platform/graphics/wx/
FontWx.cpp
88
float
beforeWidth
= 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);
128
float
beforeWidth
= controller.runWidthSoFar();
147
startX +=
beforeWidth
;
/external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp
331
float
beforeWidth
= it.m_runWidthSoFar;
343
initialAdvance =
beforeWidth
;
468
float
beforeWidth
= 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
432
float
beforeWidth
= PANGO_PIXELS_FLOOR(x_pos);
442
return FloatRect(point.x() +
beforeWidth
, point.y(), afterWidth -
beforeWidth
, h);
Completed in 1626 milliseconds