OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:afterWidth
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontComplexTextMac.cpp
60
float
afterWidth
= controller.runWidthSoFar();
65
return FloatRect(floorf(point.x() + totalWidth -
afterWidth
), point.y(), roundf(point.x() + totalWidth - beforeWidth) - floorf(point.x() + totalWidth -
afterWidth
), h);
68
return FloatRect(floorf(point.x() + beforeWidth), point.y(), roundf(point.x() +
afterWidth
) - floorf(point.x() + beforeWidth), h);
83
float
afterWidth
= controller.runWidthSoFar();
86
initialAdvance = controller.totalWidth() + controller.finalRoundingWidth() -
afterWidth
;
ComplexTextController.cpp
61
float
afterWidth
= m_controller->runWidthSoFar();
62
return
afterWidth
- beforeWidth;
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontFastPath.cpp
412
float
afterWidth
= it.m_runWidthSoFar;
417
initialAdvance = finalRoundingWidth + it.m_runWidthSoFar -
afterWidth
;
559
float
afterWidth
= it.m_runWidthSoFar;
568
float pixelAlignedX = floorf(point.x() + totalWidth -
afterWidth
+ LayoutUnit::epsilon());
575
roundf(point.x() +
afterWidth
) - pixelAlignedX, h);
Completed in 24 milliseconds