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

  /packages/apps/Camera2/src/com/android/camera/crop/
BoundedRect.java 272 float widthSoFar = newInner.width();
304 if (newWidth < widthSoFar)
305 widthSoFar = newWidth;
309 float heightSoFar = widthSoFar / aspRatio;
312 ret.right = ret.left + widthSoFar;
315 ret.left = ret.right - widthSoFar;
318 ret.left = ret.right - widthSoFar;
321 ret.right = ret.left + widthSoFar;
  /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/icu4c/layoutex/
ParagraphLayout.cpp 672 float widthSoFar = 0;
674 while (glyph < fGlyphCount && widthSoFar + fGlyphWidths[glyph] <= width) {
675 widthSoFar += fGlyphWidths[glyph++];
685 if (widthSoFar == 0 && glyph < fGlyphCount) {
    [all...]

Completed in 64 milliseconds