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

  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXInlineTextBox.cpp 98 float widthSoFar = 0;
100 widthSoFar += widths[i];
101 offsets[i] = lroundf(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/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 326 milliseconds