HomeSort by relevance Sort by last modified time
    Searched refs:totalWidth (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 49 float totalWidth = controller.totalWidth();
50 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
75 startX += controller.totalWidth() + controller.finalRoundingWidth() - afterWidth;
89 return controller.totalWidth();
ComplexTextController.h 60 float totalWidth() const { return m_totalWidth; }
ComplexTextController.cpp 521 CGFloat totalWidth = m_totalWidth + advance.width;
522 CGFloat extraWidth = ceilCGFloat(totalWidth) - totalWidth;
  /external/webkit/WebCore/platform/graphics/win/
FontWin.cpp 56 float totalWidth = it.runWidthSoFar();
57 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
UniscribeController.cpp 363 float totalWidth = m_runWidthSoFar + advance;
364 advance += ceilf(totalWidth) - totalWidth;
FontCGWin.cpp 153 int totalWidth = 0;
156 totalWidth += gdiAdvances[i];
169 textRect = IntRect(point.x() - (font->ascent() + font->descent()) / 2, point.y() - font->ascent() - lineGap, totalWidth + font->ascent() + font->descent(), font->lineSpacing());
  /external/webkit/WebCore/platform/graphics/wx/
FontWx.cpp 80 float totalWidth = it.runWidthSoFar();
81 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
  /external/webkit/WebCore/rendering/
FixedTableLayout.cpp 263 int totalWidth = totalFixedWidth + totalPercentWidth;
264 if (!numAuto || totalWidth > tableWidth) {
267 if (totalWidth != tableWidth) {
269 if (totalFixedWidth && totalWidth < tableWidth) {
273 calcWidth[i] = calcWidth[i] * tableWidth / totalWidth;
287 totalWidth = totalFixedWidth + totalPercentWidth;
309 totalWidth = tableWidth;
312 if (totalWidth < tableWidth) {
314 int remainingWidth = tableWidth - totalWidth;
InlineFlowBox.cpp 720 int totalWidth = xOffsetOnLine;
722 totalWidth += curr->width();
725 boxModelObject()->paintFillLayerExtended(paintInfo, c, fillLayer, startX, ty, totalWidth, h, this, op);
    [all...]
AutoTableLayout.cpp 387 float totalWidth = 0;
390 totalWidth += m_layoutStruct[pos].effMaxWidth;
393 for (unsigned int pos = col; pos < lastCol && totalWidth > 0; pos++) {
395 int percent = static_cast<int>(percentMissing * static_cast<float>(m_layoutStruct[pos].effMaxWidth) / totalWidth);
396 totalWidth -= m_layoutStruct[pos].effMaxWidth;
RenderFlexibleBox.cpp 731 int totalWidth;
734 totalWidth = anchorBox->width() + font.width(TextRun(ellipsisAndSpace, 2));
737 totalWidth = font.width(TextRun(&horizontalEllipsis, 1));
757 totalWidth))
761 lastVisibleLine->placeEllipsis(anchorBox ? ellipsisAndSpaceStr : ellipsisStr, ltr, blockLeftEdge, blockRightEdge, totalWidth, anchorBox);
    [all...]
RenderBox.cpp     [all...]
  /frameworks/base/core/java/android/widget/
TableLayout.java 448 int widthMeasureSpec, int totalWidth,
457 widthMeasureSpec, totalWidth, heightMeasureSpec, totalHeight);
554 int totalWidth = 0;
556 totalWidth += width;
561 if ((totalWidth > size) && (mShrinkAllColumns || mShrinkableColumns.size() > 0)) {
564 mutateColumnsWidth(mShrinkableColumns, mShrinkAllColumns, size, totalWidth);
565 } else if ((totalWidth < size) && (mStretchAllColumns || mStretchableColumns.size() > 0)) {
568 mutateColumnsWidth(mStretchableColumns, mStretchAllColumns, size, totalWidth);
573 boolean allColumns, int size, int totalWidth) {
578 final int totalExtraSpace = size - totalWidth;
    [all...]
TableRow.java 190 int widthMeasureSpec, int totalWidth,
244 totalWidth, heightMeasureSpec, totalHeight);
LinearLayout.java     [all...]
  /external/webkit/WebCore/platform/graphics/
FontFastPath.cpp 335 float totalWidth = it.m_runWidthSoFar;
336 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
WidthIterator.cpp 198 float totalWidth = runWidthSoFar + width;
199 width += ceilf(totalWidth) - totalWidth;
  /cts/tests/tests/text/src/android/text/method/cts/
TouchTest.java 215 float totalWidth = 0f;
219 totalWidth += f;
221 return (int) totalWidth;
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java 78 float totalWidth = 0.0f;
80 totalWidth += widths[i];
85 assertBreakText(text, textChars, textSpan, i, i + 1, true, totalWidth, 1, widths[i]);
89 assertBreakText(text, textChars, textSpan, 0, 0, true, totalWidth, 0, 0);
92 assertBreakText(text, textChars, textSpan, 0, 3, true, totalWidth,
96 assertBreakText(text, textChars, textSpan, 0, 3, false, totalWidth,
100 assertBreakText(text, textChars, textSpan, 5, 7, false, totalWidth,
104 assertBreakText(text, textChars, textSpan, 5, 7, false, totalWidth,
108 assertBreakText(text, textChars, textSpan, 2, 5, true, totalWidth,
112 assertBreakText(text, textChars, textSpan, 2, 5, false, totalWidth,
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
FontChromiumWin.cpp 244 int totalWidth = 0;
246 totalWidth += lroundf(m_glyphBuffer.advanceAt(m_from + i));
250 totalWidth + m_font->ascent() + m_font->descent(),
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
shmstr.h 128 CARD16 totalWidth B16;
  /external/webkit/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 331 int totalWidth = startWidth + endWidth;
333 return IntRect(scrollbar->x() + startWidth, scrollbar->y(), scrollbar->width() - totalWidth, thickness);
334 return IntRect(scrollbar->x(), scrollbar->y() + startWidth, thickness, scrollbar->height() - totalWidth);
  /external/webkit/WebCore/platform/mac/
ScrollbarThemeMac.mm 318 int totalWidth = startWidth + endWidth;
320 return IntRect(scrollbar->x() + startWidth, scrollbar->y(), scrollbar->width() - totalWidth, thickness);
321 return IntRect(scrollbar->x(), scrollbar->y() + startWidth, thickness, scrollbar->height() - totalWidth);
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java     [all...]

Completed in 617 milliseconds

1 2