Home
last modified time | relevance | path

Searched refs:widthSoFar (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/layoutlib/bridge/src/android/graphics/text/
H A DTabStops.java33 public float width(float widthSoFar) { in width() argument
36 if (f > widthSoFar) { in width()
42 return ((widthSoFar + mTabWidth) / mTabWidth) * mTabWidth; in width()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
H A DBoundedRect.java274 float widthSoFar = newInner.width(); in fixedAspectResizeInner() local
306 if (newWidth < widthSoFar) in fixedAspectResizeInner()
307 widthSoFar = newWidth; in fixedAspectResizeInner()
311 float heightSoFar = widthSoFar / aspRatio; in fixedAspectResizeInner()
314 ret.right = ret.left + widthSoFar; in fixedAspectResizeInner()
317 ret.left = ret.right - widthSoFar; in fixedAspectResizeInner()
320 ret.left = ret.right - widthSoFar; in fixedAspectResizeInner()
323 ret.right = ret.left + widthSoFar; in fixedAspectResizeInner()
/aosp12/frameworks/minikin/include/minikin/
H A DLineBreaker.h59 float nextTab(float widthSoFar) const { in nextTab() argument
61 if (mStops[i] > widthSoFar) { in nextTab()
68 return floor(widthSoFar / mTabWidth + 1) * mTabWidth; in nextTab()