Searched refs:widthSoFar (Results 1 - 2 of 2) sorted by relevance

/frameworks/layoutlib/bridge/src/android/text/
H A DTabStops.java33 public float width(float widthSoFar) { argument
36 if (i > widthSoFar) {
41 // find the next tabStop after widthSoFar.
42 return (int) ((widthSoFar + mTabWidth) / mTabWidth) * mTabWidth;
/frameworks/minikin/include/minikin/
H A DLineBreaker.h95 float nextTab(float widthSoFar) const {
97 if (mStops[i] > widthSoFar) {
101 return floor(widthSoFar / mTabWidth + 1) * mTabWidth;

Completed in 125 milliseconds