HomeSort by relevance Sort by last modified time
    Searched refs:widthSoFar (Results 1 - 4 of 4) sorted by null

  /frameworks/base/tools/layoutlib/bridge/src/android/text/
TabStops.java 33 public float width(float widthSoFar) {
36 if (i > widthSoFar) {
41 // find the next tabStop after widthSoFar.
42 return (int) ((widthSoFar + mTabWidth) / mTabWidth) * mTabWidth;
  /frameworks/minikin/include/minikin/
LineBreaker.h 88 float nextTab(float widthSoFar) const {
90 if (mStops[i] > widthSoFar) {
94 return floor(widthSoFar / mTabWidth + 1) * mTabWidth;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
BoundedRect.java 274 float widthSoFar = newInner.width();
306 if (newWidth < widthSoFar)
307 widthSoFar = newWidth;
311 float heightSoFar = widthSoFar / aspRatio;
314 ret.right = ret.left + widthSoFar;
317 ret.left = ret.right - widthSoFar;
320 ret.left = ret.right - widthSoFar;
323 ret.right = ret.left + widthSoFar;
  /external/icu/icu4c/source/layoutex/
ParagraphLayout.cpp 675 float widthSoFar = 0;
677 while (glyph < fGlyphCount && widthSoFar + fGlyphWidths[glyph] <= width) {
678 widthSoFar += fGlyphWidths[glyph++];
688 if (widthSoFar == 0 && glyph < fGlyphCount) {
    [all...]

Completed in 394 milliseconds