OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:widthDifference
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthIterator.cpp
111
float
widthDifference
= 0;
113
widthDifference
-= advances[i].width();
133
widthDifference
+= advances[i].width();
136
return
widthDifference
;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
TextAutosizer.cpp
372
float
widthDifference
= clusterTextWidth - contentWidth;
374
if (
widthDifference
- parentClusterInfo.maxAllowedDifferenceFromTextWidth > differenceFromMaxWidthDifference)
377
parentClusterInfo.maxAllowedDifferenceFromTextWidth = std::max(
widthDifference
, parentClusterInfo.maxAllowedDifferenceFromTextWidth);
Completed in 246 milliseconds